/* =========================================================
   DRAGON LIST GLOBAL — Page sections and components
   ========================================================= */

/* ---------------------------------------------------------
   HOME HERO
   --------------------------------------------------------- */
.home-hero {
  position: relative;
  min-height: 92vh;
  display: flex; align-items: center;
  overflow: hidden;
  background: var(--navy-dark);
}
.home-hero__bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.35);
}
.home-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(11,22,40,0.88) 0%, rgba(11,22,40,0.55) 100%);
}
.home-hero__accent {
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, transparent 0%, var(--gold) 30%, var(--gold) 70%, transparent 100%);
}
.home-hero__content {
  position: relative; z-index: 2;
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
  padding: 100px 60px;
}
.home-hero__eyebrow {
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 32px;
  display: flex; align-items: center; gap: 16px;
}
.home-hero__eyebrow::before {
  content: ''; width: 40px; height: 1px; background: var(--gold);
}
.home-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(42px, 5.2vw, 76px);
  font-weight: 600;
  color: #fff;
  line-height: 1.1;
  max-width: 18ch;
  letter-spacing: 0.005em;
}
.home-hero__subtitle {
  font-size: 18px;
  color: rgba(255,255,255,0.72);
  max-width: 580px;
  line-height: 1.75;
  margin-top: 32px;
}
.home-hero__cta {
  display: flex; flex-wrap: wrap; gap: 16px;
  margin-top: 56px;
}
.home-hero__metrics {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 88px;
  padding-top: 36px;
  border-top: 1px solid rgba(201,168,76,0.25);
}
.home-hero__metric {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 28px 0 0;
}
.home-hero__metric:first-child { padding-left: 0; }
.home-hero__metric-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
  opacity: 0.85;
}
.home-hero__metric-text {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  white-space: nowrap;
  font-family: var(--font-sans);
}
.home-hero__metric-divider {
  width: 1px;
  height: 18px;
  background: rgba(201,168,76,0.3);
  margin: 0 28px 0 0;
  flex-shrink: 0;
}
@media (max-width: 900px) {
  .home-hero { min-height: auto; padding: 140px 0 80px; }
  .home-hero__content { padding: 0 24px; }
  .home-hero__metrics { flex-direction: column; align-items: flex-start; gap: 16px; padding-top: 28px; }
  .home-hero__metric { padding: 0; }
  .home-hero__metric-divider { display: none; }
  .home-hero__metric-text { white-space: normal; }
}

/* ---------------------------------------------------------
   PAGE HERO (inner pages)
   --------------------------------------------------------- */
.page-hero {
  position: relative;
  height: 480px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--navy-dark);
}
.page-hero--tall { height: 520px; }
.page-hero__bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.25);
}
.page-hero__gradient {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(11,22,40,0.95) 40%, transparent);
}
.page-hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
  padding: 0 60px 72px;
}
.page-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(40px, 5.5vw, 64px);
  font-weight: 600;
  color: #fff;
  line-height: 1.1;
  letter-spacing: 0.01em;
}
.page-hero__subtitle {
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  max-width: 520px;
  line-height: 1.75;
  margin-top: 24px;
}
@media (max-width: 900px) {
  .page-hero { height: auto; padding-top: 120px; }
  .page-hero__content { padding: 0 24px 56px; }
}

/* ---------------------------------------------------------
   SECTION HEAD
   --------------------------------------------------------- */
.section-head { max-width: 880px; margin-bottom: 64px; }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }

/* ---------------------------------------------------------
   TWO-COL SPLIT
   --------------------------------------------------------- */
.split-col { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
@media (max-width: 900px) { .split-col { grid-template-columns: 1fr; gap: 48px; } }

/* ---------------------------------------------------------
   NUMBERED LIST
   --------------------------------------------------------- */
.numbered-list { counter-reset: nl; display: grid; gap: 36px; }
.numbered-list > li {
  counter-increment: nl;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(201,168,76,0.25);
}
.numbered-list > li::before {
  content: counter(nl, decimal-leading-zero);
  font-family: var(--font-serif);
  font-size: 38px;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
}
.numbered-list h3 {
  font-family: var(--font-serif);
  font-size: 24px;
  color: var(--navy);
  margin-bottom: 12px;
}
.bg-navy .numbered-list h3 { color: #fff; }
.bg-navy .numbered-list > li { border-top-color: rgba(201,168,76,0.18); }
.numbered-list p { font-size: 15px; line-height: 1.75; color: var(--text-mid); max-width: 64ch; }
.bg-navy .numbered-list p { color: rgba(255,255,255,0.72); }
@media (max-width: 700px) {
  .numbered-list > li { grid-template-columns: 1fr; gap: 12px; }
}

/* ---------------------------------------------------------
   DIAMOND LIST
   --------------------------------------------------------- */
.diamond-list { display: grid; gap: 0; }
.diamond-list-item {
  display: flex; gap: 14px; align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid #ede9df;
  font-size: 14px; color: #333; line-height: 1.6;
}
.diamond-list-item:last-child { border-bottom: 0; }
.diamond-bullet {
  width: 6px; height: 6px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}
.diamond-bullet--navy { background: var(--navy); }
.diamond-list--light .diamond-list-item {
  border-bottom-color: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.78);
}

/* ---------------------------------------------------------
   CARDS
   --------------------------------------------------------- */
.pillar-card {
  padding: 28px 32px;
  background: #f8f6f0;
  border-left: 3px solid var(--gold);
}
.pillar-card__title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
}
.pillar-card__body { font-size: 14px; color: var(--text-mid); line-height: 1.7; }

.company-card {
  background: #fff;
  padding: 36px 40px;
  border-top: 3px solid var(--navy);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: border-top-color 0.3s, box-shadow 0.3s, transform 0.3s;
  text-decoration: none;
  color: inherit;
  display: block;
}
.company-card:hover {
  border-top-color: var(--gold);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  transform: translateY(-4px);
}
.company-card__name {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}
.company-card__role {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 20px;
}
.company-card__desc { font-size: 14px; color: var(--text-mid); line-height: 1.7; }

/* Capability card */
.capability-card {
  position: relative; height: 360px;
  overflow: hidden; display: block; color: #fff;
}
.capability-card__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  filter: brightness(0.18);
  transition: filter 0.4s, transform 0.5s ease;
}
.capability-card:hover .capability-card__img { filter: brightness(0.25); transform: scale(1.04); }
.capability-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,22,40,0.4) 0%, rgba(11,22,40,0.85) 100%);
}
.capability-card__num {
  position: absolute; top: 28px; left: 32px;
  font-family: var(--font-serif);
  font-size: 32px; color: var(--gold); font-weight: 500;
}
.capability-card__body { position: absolute; left: 32px; right: 32px; bottom: 32px; }
.cap-line {
  height: 1px; background: var(--gold); width: 40px;
  margin-bottom: 20px; transition: width 0.4s;
}
.capability-card:hover .cap-line { width: 100%; }
.capability-card__title {
  font-family: var(--font-serif);
  font-size: 26px; font-weight: 600; color: #fff;
  margin-bottom: 12px; line-height: 1.2;
}
.capability-card__desc { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,0.72); }

/* Outcome item */
.outcome-item {
  padding: 20px 24px;
  background: rgba(255,255,255,0.05);
  border-left: 2px solid var(--gold);
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
}

/* Sidebar note */
.sidebar-note {
  padding: 28px;
  background: #ede9df;
  border-left: 3px solid var(--gold);
  font-size: 13px; color: #555; line-height: 1.8;
}

/* ---------------------------------------------------------
   COMPARISON TABLE
   --------------------------------------------------------- */
.model-compare {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  border: 1px solid rgba(201,168,76,0.15);
}
.model-compare__col { padding: 40px; }
.model-compare__col--old { background: rgba(255,255,255,0.03); }
.model-compare__col--new { background: rgba(201,168,76,0.06); }
.model-compare__arrow {
  width: 44px; background: var(--navy-dark); color: var(--gold);
  font-size: 20px; display: grid; place-items: center;
}
.model-compare__label {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(201,168,76,0.7); margin-bottom: 24px;
}
.model-compare__col--old .model-compare__label { color: rgba(255,255,255,0.35); }
.model-compare__item {
  display: flex; gap: 14px; align-items: center;
  font-size: 15px; padding: 13px 0;
  color: rgba(255,255,255,0.55);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.model-compare__col--new .model-compare__item { color: rgba(255,255,255,0.9); }
.model-compare__dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.model-compare__dot--old { background: rgba(255,255,255,0.2); }
.model-compare__dot--new { background: var(--gold); }
@media (max-width: 640px) {
  .model-compare { grid-template-columns: 1fr; }
  .model-compare__arrow { width: 100%; padding: 16px; transform: rotate(90deg); }
}

/* ---------------------------------------------------------
   PULL QUOTE
   --------------------------------------------------------- */
.pull-quote {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.25;
  color: var(--navy);
  font-style: italic;
  max-width: 24ch;
}
.bg-navy .pull-quote    { color: #fff; }
.bg-navy-dark .pull-quote { color: rgba(255,255,255,0.85); }
.pull-quote em          { color: var(--gold); font-style: italic; }

/* ---------------------------------------------------------
   CTA STRIP
   --------------------------------------------------------- */
.cta-strip { background: var(--navy-dark); padding: 100px 60px; color: #fff; }
.cta-strip__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  align-items: end;
}
.cta-strip__title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 46px);
  color: #fff; max-width: 18ch; line-height: 1.15;
}
.cta-strip__actions { display: flex; gap: 16px; flex-wrap: wrap; justify-content: flex-end; }
@media (max-width: 900px) {
  .cta-strip { padding: 72px 24px; }
  .cta-strip__inner { grid-template-columns: 1fr; gap: 32px; }
  .cta-strip__actions { justify-content: flex-start; }
}

/* ---------------------------------------------------------
   IMAGE CARD
   --------------------------------------------------------- */
.img-card { position: relative; display: block; overflow: hidden; background: var(--navy); color: #fff; }
.img-card__fig { position: relative; aspect-ratio: 4 / 5; overflow: hidden; }
.img-card__fig svg, .img-card__fig img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.img-card:hover .img-card__fig svg,
.img-card:hover .img-card__fig img { transform: scale(1.04); }
.img-card__overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(11,22,40,0.2) 30%, rgba(11,22,40,0.9) 100%); }
.img-card__num { position: absolute; top: 24px; left: 28px; font-family: var(--font-serif); color: var(--gold); font-size: 24px; }
.img-card__body { position: absolute; left: 28px; right: 28px; bottom: 28px; }
.img-card__title { font-family: var(--font-serif); font-size: 28px; color: #fff; margin-bottom: 8px; line-height: 1.15; }
.img-card__desc { font-size: 13px; color: rgba(255,255,255,0.75); line-height: 1.6; max-width: 36ch; }
.img-card__line { width: 30px; height: 1px; background: var(--gold); margin-bottom: 16px; transition: width 0.4s; }
.img-card:hover .img-card__line { width: 80px; }

/* ---------------------------------------------------------
   FORM COMPONENTS
   --------------------------------------------------------- */
.form-label {
  font-size: 10px;
  color: #999;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 8px;
  font-weight: 600;
  display: block;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  font: inherit;
  font-family: var(--font-sans);
  padding: 14px 16px;
  background: #fff;
  border: 1px solid #e0dbd0;
  font-size: 14px;
  color: #333;
  transition: border-color var(--transition);
  outline: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus { border-color: var(--gold); }
.form-textarea { resize: vertical; min-height: 140px; line-height: 1.6; }
.form-input--error { border-color: #c0392b !important; }
.field-error {
  display: none;
  font-size: 11px;
  color: #c0392b;
  margin-top: 6px;
  letter-spacing: 0.04em;
}
.field-error--show { display: block; }
.form-required { color: var(--gold); }

.form-group { display: grid; gap: 8px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.form-grid .form-group--full { grid-column: 1 / -1; }
@media (max-width: 700px) { .form-grid { grid-template-columns: 1fr; } }

.consent-row {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 13px; color: #555; line-height: 1.6;
}
.consent-checkbox {
  accent-color: var(--gold);
  width: 16px; height: 16px; margin-top: 3px;
}

/* ---------------------------------------------------------
   TAGS & BADGES
   --------------------------------------------------------- */
.tag-pill {
  display: inline-flex; align-items: center;
  padding: 8px 16px; background: #f8f6f0;
  font-size: 11px; letter-spacing: 0.1em;
  color: var(--navy); font-weight: 500;
}
.company-tag {
  display: inline-flex; align-items: center;
  padding: 6px 14px; font-size: 10px;
  background: #f8f6f0; color: var(--navy);
  letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600;
}
.entity-badge {
  display: inline-flex; align-items: center;
  font-size: 9px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  padding: 4px 10px; color: #fff;
}
.entity-badge--infrastructure { background: var(--infrastructure); }
.entity-badge--policy         { background: var(--policy); }
.entity-badge--capital        { background: var(--capital); }
.entity-badge--federal        { background: var(--federal); }

/* ---------------------------------------------------------
   PHOTO LAYERS — hero & section imagery
   --------------------------------------------------------- */

/* Home hero real photo sits behind the SVG geometric overlay */
.home-hero__photo {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.22) saturate(0.75);
  z-index: 0;
}
/* Ensure the geometric SVG and overlays stack above the photo */
.home-hero__bg   { z-index: 1; }
.home-hero__overlay { z-index: 2; }
.home-hero__accent  { z-index: 3; }
.home-hero__content { z-index: 4; }

/* Page hero — use <img class="page-hero__bg"> to replace the SVG */
/* (existing .page-hero__bg styles already handle positioning) */

/* Full-bleed photo band with quote overlay */
.photo-band {
  position: relative;
  height: 420px;
  overflow: hidden;
}
.photo-band__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.38) saturate(0.75);
  transition: transform 0.6s ease;
}
.photo-band:hover .photo-band__img { transform: scale(1.03); }
.photo-band__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(11,22,40,0.82) 0%, rgba(11,22,40,0.42) 100%);
}
.photo-band__inner {
  position: relative; z-index: 2;
  height: 100%; display: flex; align-items: center;
  max-width: var(--max-w); margin: 0 auto;
  padding: 0 60px;
}
.photo-band__quote {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3.2vw, 48px);
  color: #fff;
  line-height: 1.25;
  font-weight: 600;
  max-width: 820px;
  border-left: 3px solid var(--gold);
  padding-left: 40px;
}
.photo-band__quote em {
  color: var(--gold);
  font-style: normal;
}
@media (max-width: 900px) {
  .photo-band { height: 320px; }
  .photo-band__inner { padding: 0 24px; }
  .photo-band__quote { font-size: 22px; padding-left: 24px; }
}

/* Split layout: photo left, content right */
.img-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
}
.img-split--reverse { direction: rtl; }
.img-split--reverse > * { direction: ltr; }
.img-split__photo {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.88) saturate(0.85);
}
.img-split__content {
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--cream);
}
.img-split__content--navy {
  background: var(--navy);
}
@media (max-width: 900px) {
  .img-split { grid-template-columns: 1fr; direction: ltr; }
  .img-split__photo { height: 280px; }
  .img-split__content { padding: 48px 24px; }
}

/* Sector thumbnail card (used in sector grids) */
.sector-card {
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  display: block;
  aspect-ratio: 4/3;
}
.sector-card__photo {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.45) saturate(0.7);
  transition: filter 0.4s, transform 0.5s ease;
}
.sector-card:hover .sector-card__photo {
  filter: brightness(0.35) saturate(0.6);
  transform: scale(1.06);
}
.sector-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(11,22,40,0.92) 100%);
}
.sector-card__body {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 28px 32px;
}
.sector-card__label {
  font-size: 10px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 8px; font-weight: 600;
}
.sector-card__name {
  font-family: var(--font-serif);
  font-size: 26px; font-weight: 600;
  line-height: 1.2;
  margin-bottom: 10px;
}
.sector-card__desc {
  font-size: 13px; color: rgba(255,255,255,0.72);
  line-height: 1.65;
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.4s;
  opacity: 0;
}
.sector-card:hover .sector-card__desc { max-height: 100px; opacity: 1; }
