/* Marketing-site UI kit styles. Builds on colors_and_type.css. */

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; }

/* Container */
.container { max-width: var(--container-max); margin: 0 auto; padding: 0 var(--gutter); }

/* Buttons (kit-scoped) */
.btn {
  font-family: var(--font-body); font-weight: 600; font-size: 14px;
  padding: 11px 18px; border-radius: var(--r-md); border: 1.5px solid transparent;
  cursor: pointer; display: inline-flex; align-items: center; gap: 8px;
  text-decoration: none; transition: background var(--dur-base) var(--ease-standard),
              color var(--dur-base) var(--ease-standard), transform var(--dur-fast),
              box-shadow var(--dur-base) var(--ease-standard);
}
.btn-lg { font-size: 15px; padding: 14px 22px; }
.btn-primary { background: var(--dep-blue); color: #fff; box-shadow: var(--shadow-brand); }
.btn-primary:hover { background: var(--dep-blue-deep); }
.btn-primary:active { transform: translateY(1px); }
.btn-secondary { background: var(--white); color: var(--dep-blue); border-color: var(--dep-blue); }
.btn-secondary:hover { background: var(--surface-tint); }
.btn-onbrand { background: rgba(255,255,255,0.08); color: #fff; border-color: rgba(255,255,255,0.55); backdrop-filter: blur(4px); }
.btn-onbrand:hover { background: rgba(255,255,255,0.18); }

/* Pills */
.pill { font-family: var(--font-display); font-weight: 700; font-size: 11.5px; letter-spacing: .06em; text-transform: uppercase; padding: 4px 11px; border-radius: 999px; display: inline-block; }
.pill--blue { background: var(--surface-tint); color: var(--dep-blue); }

/* Section heads */
.section-head { max-width: 720px; margin-bottom: 48px; }
.section-head h2 { margin-top: 8px; }
.section-head .lead { color: var(--fg-muted); font-size: 18px; margin-top: 12px; }

/* ============== HEADER ============== */
.dep-header {
  position: sticky; top: 0; z-index: 50;
  height: 72px; background: var(--white); border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 32px;
  padding: 0 var(--gutter);
}
.dep-header__logo img { height: 44px; display: block; }
.dep-header__nav { display: flex; gap: 28px; margin-left: 24px; }
.dep-header__link {
  font-weight: 500; font-size: 14px; color: var(--fg);
  text-decoration: none; padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: color var(--dur-base), border-color var(--dur-base);
}
.dep-header__link:hover { color: var(--dep-blue); }
.dep-header__link.is-active { color: var(--dep-blue); border-bottom-color: var(--dep-red); }
.dep-header__cta { margin-left: auto; }

/* ============== HERO ============== */
.dep-hero { position: relative; min-height: 620px; display: grid; align-items: center; overflow: hidden; }
.dep-hero__bg { position: absolute; inset: 0; }
.dep-hero__bg svg { width: 100%; height: 100%; display: block; }
.dep-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(2,30,69,0.55) 0%, rgba(2,30,69,0.85) 100%);
}
.dep-hero__inner { position: relative; max-width: var(--container-max); margin: 0 auto; padding: 96px var(--gutter); width: 100%; color: #fff; }
.dep-hero__title {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(40px, 5.6vw, 68px); line-height: 1.05;
  letter-spacing: -0.025em; color: #fff;
  max-width: 14ch; margin: 16px 0 20px;
  text-wrap: balance;
}
.dep-hero__title em { font-style: italic; color: #FF8285; font-weight: 800; }
.dep-hero__lead { font-size: 18px; line-height: 1.55; max-width: 56ch; color: rgba(255,255,255,0.85); margin: 0 0 32px; }
.dep-hero__ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.dep-hero__placeholder-flag {
  position: absolute; top: 16px; right: 16px;
  display: inline-flex; align-items: center; gap: 6px;
  font: 600 11px/1 var(--font-mono); color: rgba(255,255,255,0.65);
  padding: 6px 10px; border: 1px dashed rgba(255,255,255,0.35); border-radius: var(--r-sm);
}

/* ============== STATS ============== */
.dep-stats { padding: 96px var(--gutter); max-width: var(--container-max); margin: 0 auto; }
.dep-stats__head { max-width: 760px; margin-bottom: 48px; }
.dep-stats__head h2 { margin-top: 8px; }
.dep-stats__head .lead { color: var(--fg-muted); font-size: 18px; margin-top: 14px; max-width: 60ch; }
.dep-stats__row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; border-top: 1px solid var(--border); padding-top: 32px; }
.dep-stat { display: grid; gap: 8px; }
.dep-stat__num { font-family: var(--font-display); font-weight: 900; font-size: clamp(56px, 7vw, 88px); line-height: 0.95; color: var(--dep-blue); letter-spacing: -0.03em; font-variant-numeric: tabular-nums; }
.dep-stat__num span { color: var(--dep-red); }
.dep-stat__label { font-family: var(--font-display); font-weight: 700; font-size: 18px; color: var(--dep-blue-ink); }
.dep-stat__cap { font-size: 13px; color: var(--fg-muted); }

/* ============== SERVICES ============== */
.dep-services { background: var(--surface-tint); padding: 96px var(--gutter); }
.dep-services .section-head, .dep-services__grid { max-width: var(--container-max); margin-left: auto; margin-right: auto; }
.dep-services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.dep-service {
  background: var(--white); border-radius: var(--r-lg); padding: 28px;
  border: 1px solid var(--border); display: flex; flex-direction: column; gap: 14px;
  transition: transform var(--dur-base) var(--ease-standard), box-shadow var(--dur-base) var(--ease-standard);
}
.dep-service:hover { box-shadow: var(--shadow-2); transform: translateY(-2px); }
.dep-service.is-featured { border-top: 4px solid var(--dep-red); }
.dep-service__icon { width: 48px; height: 48px; display: grid; place-items: center; color: var(--dep-blue); background: var(--surface-tint); border-radius: var(--r-md); }
.dep-service__icon svg { width: 26px; height: 26px; }
.dep-service h3 { font-size: 22px; }
.dep-service__methods { display: flex; gap: 6px; flex-wrap: wrap; }
.dep-service p { color: var(--fg-muted); font-size: 14.5px; line-height: 1.55; margin: 0; flex: 1; }
.dep-service__more { font-weight: 600; font-size: 14px; color: var(--dep-blue); text-decoration: none; align-self: flex-start; }
.dep-service__more:hover { color: var(--dep-red); }

/* ============== CUSTOMERS ============== */
.dep-customers { padding: 96px var(--gutter); max-width: var(--container-max); margin: 0 auto; }
.dep-customers__grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 32px; border-top: 1px solid var(--border); padding-top: 40px; }
.dep-customers__col h4 { font-family: var(--font-display); font-weight: 700; font-size: 14px; letter-spacing: .04em; color: var(--dep-red); text-transform: uppercase; margin: 0 0 16px; }
.dep-customers__col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.dep-customers__col li { font-size: 16px; color: var(--dep-blue-ink); font-weight: 500; padding: 8px 0; border-bottom: 1px solid var(--border); }
.dep-customers__col li.etc { color: var(--fg-soft); font-style: italic; font-weight: 400; border-bottom: 0; }

/* ============== FACILITIES ============== */
.dep-facilities { background: var(--steel-50); padding: 96px var(--gutter); }
.dep-facilities__head { max-width: var(--container-max); margin: 0 auto 48px; }
.dep-facilities__grid { max-width: var(--container-max); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.dep-facilities__media { border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--border); aspect-ratio: 4/3; }
.dep-facilities__list { list-style: none; padding: 0; margin: 0; display: grid; gap: 16px; }
.dep-facilities__list li { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-md); padding: 18px 20px; display: grid; gap: 6px; }
.dep-facilities__list li .pill { justify-self: start; }
.dep-facilities__list h4 { margin: 4px 0 0; font-size: 18px; color: var(--dep-blue-ink); }
.dep-facilities__list p { color: var(--fg-muted); font-size: 14.5px; margin: 0; line-height: 1.55; }

/* ============== CONTACT ============== */
.dep-contact { background: var(--dep-blue-ink); color: #fff; padding: 96px var(--gutter); }
.dep-contact__inner { max-width: var(--container-max); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.dep-contact__copy h2 { color: #fff; margin-top: 8px; }
.dep-contact__copy .lead { color: rgba(255,255,255,0.78); font-size: 17px; line-height: 1.55; margin: 14px 0 32px; }
.dep-contact__copy .eyebrow { color: #FF8285; }
.dep-contact__channels { list-style: none; padding: 0; margin: 0; display: grid; gap: 18px; }
.dep-contact__channels li { display: grid; grid-template-columns: auto 1fr; gap: 14px; align-items: start; }
.dep-contact__channels svg { color: #FF8285; margin-top: 2px; }
.dep-contact__channels small { display: block; font: 700 10px/1 var(--font-display); letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,0.55); margin-bottom: 6px; }
.dep-contact__channels a { color: #fff; text-decoration: none; display: block; padding: 1px 0; }
.dep-contact__channels a:hover { color: #FF8285; }
.dep-contact__form { background: var(--white); color: var(--fg); border-radius: var(--r-lg); padding: 32px; display: grid; gap: 14px; }
.dep-contact__form h3 { color: var(--dep-blue-ink); margin: 0 0 6px; }
.dep-contact__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.dep-contact__form label { display: grid; gap: 6px; font: 600 11px/1 var(--font-display); color: var(--fg-muted); letter-spacing: .04em; text-transform: uppercase; }
.field { font: 400 14px/1.4 var(--font-body); color: var(--fg); border: 1px solid var(--border-strong); border-radius: var(--r-md); padding: 11px 13px; background: var(--white); width: 100%; font-family: var(--font-body); }
.field:focus { outline: 2px solid var(--dep-blue); outline-offset: 1px; border-color: var(--dep-blue); }
textarea.field { resize: vertical; min-height: 90px; }
select.field { appearance: none; background: var(--white) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' fill='none' stroke='%2345526A' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/></svg>") right 12px center/12px no-repeat; padding-right: 36px; }
.dep-contact__legal { color: var(--fg-soft); font-size: 12px; line-height: 1.4; }
.dep-contact__form.is-sent { text-align: center; padding: 48px 32px; align-items: center; justify-items: center; gap: 12px; }
.dep-contact__check { width: 64px; height: 64px; border-radius: 50%; background: #E3F1E4; color: #2E7D32; display: grid; place-items: center; }
.dep-contact__form.is-sent h3 { font-size: 22px; }
.dep-contact__form.is-sent p { color: var(--fg-muted); margin: 0 0 12px; max-width: 36ch; }

/* ============== FOOTER ============== */
.dep-footer { background: var(--dep-blue-ink); color: rgba(255,255,255,0.78); padding-top: 64px; border-top: 1px solid rgba(255,255,255,0.08); }
.dep-footer__inner { max-width: var(--container-max); margin: 0 auto; padding: 0 var(--gutter); display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 32px; }
.dep-footer__brand img { height: 56px; margin-bottom: 16px; }
.dep-footer__brand p { font-size: 13.5px; line-height: 1.6; max-width: 38ch; }
.dep-footer__col h6 { color: #fff; font-size: 12px; letter-spacing: .14em; text-transform: uppercase; margin: 0 0 14px; }
.dep-footer__col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.dep-footer__col li { font-size: 13.5px; line-height: 1.5; }
.dep-footer__col a { color: rgba(255,255,255,0.78); text-decoration: none; }
.dep-footer__col a:hover { color: #fff; }
.dep-footer__base { margin-top: 56px; border-top: 1px solid rgba(255,255,255,0.08); padding: 20px var(--gutter); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 12px; color: rgba(255,255,255,0.55); max-width: var(--container-max); margin-left: auto; margin-right: auto; }
.dep-footer__legal { font-family: var(--font-mono); }

/* Responsive nudges */
@media (max-width: 900px) {
  .dep-header__nav { display: none; }
  .dep-services__grid { grid-template-columns: 1fr; }
  .dep-stats__row { grid-template-columns: 1fr; }
  .dep-customers__grid, .dep-facilities__grid, .dep-contact__inner, .dep-footer__inner { grid-template-columns: 1fr; }
}
