/* ============================================================
   PharmaPackPro — Site Stylesheet
   Design tokens, layout, components, responsive & print
   ============================================================ */

/* ---------- Design tokens ---------- */
:root {
  --navy: #06243f;
  --navy-2: #0a3555;
  --blue: #087e9c;
  --cyan: #65c6d1;
  --ink: #102334;
  --muted: #576979;
  --line: #d5e1e8;
  --pale: #f4f8fa;
  --white: #fff;
  --max: 1200px;
}

/* ---------- Base ---------- */
* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  font-family: Arial, "Helvetica Neue", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  background: #fff;
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid #ffbf47;
  outline-offset: 3px;
}

/* ---------- Accessibility ---------- */
.skip-link {
  position: absolute;
  z-index: 20;
  top: -100px;
  left: 1rem;
  background: #fff;
  padding: .75rem 1rem;
  font-weight: 700;
}
.skip-link:focus { top: 1rem; }

/* ---------- Layout helpers ---------- */
.contained {
  width: min(calc(100% - 48px), var(--max));
  margin-inline: auto;
}
.narrow {
  max-width: 850px;
  margin-left: 0;
}
.space { padding-block: clamp(4rem, 8vw, 8rem); }

/* ---------- Typography ---------- */
h1, h2, h3 {
  margin: .1em 0 .55em;
  line-height: 1.08;
  letter-spacing: -.047em;
}
h1 { font-size: clamp(2.75rem, 5.6vw, 5.45rem); }
h2 { font-size: clamp(2rem, 3.3vw, 3.35rem); }
h3 { font-size: 1.35rem; }
p { margin: 0 0 1rem; }

.eyebrow {
  margin: 0 0 1rem;
  color: var(--blue);
  font-size: .73rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.lead,
.hero-lead {
  max-width: 710px;
  color: #415566;
  font-size: clamp(1.08rem, 1.6vw, 1.26rem);
  line-height: 1.55;
}

/* ---------- Buttons & links ---------- */
.button {
  display: inline-flex;
  align-items: center;
  gap: .85rem;
  border: 1px solid var(--navy);
  background: var(--navy);
  color: #fff;
  padding: .9rem 1.1rem;
  font-size: .9rem;
  font-weight: 700;
  line-height: 1;
  transition: background .2s, border-color .2s, transform .2s;
}
.button:hover {
  background: var(--blue);
  border-color: var(--blue);
  transform: translateY(-1px);
}
.button-light {
  background: #fff;
  border-color: #fff;
  color: var(--navy);
}
.button-light:hover {
  background: var(--cyan);
  border-color: var(--cyan);
}

.inline-link {
  display: inline-flex;
  gap: .45rem;
  align-items: center;
  border-bottom: 1px solid var(--blue);
  padding-bottom: .22rem;
  font-weight: 700;
}
.inline-link span,
.service-grid b {
  color: var(--blue);
  font-size: 1.1em;
}

/* ---------- Header & navigation ---------- */
.site-header {
  position: sticky;
  z-index: 10;
  top: 0;
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: max(24px, calc((100vw - var(--max)) / 2));
  background: rgb(255 255 255 / 96%);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.logo {
  display: flex;
  align-items: center;
  gap: .55rem;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -.06em;
  white-space: nowrap;
}
.logo > span:last-child span { color: var(--blue); }
.logo-mark {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  background: var(--navy);
  color: #fff;
  font-size: .9rem;
  letter-spacing: 0;
  clip-path: polygon(0 0, 100% 0, 100% 70%, 72% 100%, 0 100%);
}

nav {
  display: flex;
  align-items: center;
  gap: 1.45rem;
  font-size: .86rem;
  font-weight: 700;
}
nav > a:not(.header-cta) {
  padding: .45rem 0;
  border-bottom: 2px solid transparent;
}
nav > a:not(.header-cta):hover,
nav > a.active { border-color: var(--blue); }

.header-cta {
  display: inline-flex;
  gap: .5rem;
  align-items: center;
  background: var(--navy);
  color: #fff;
  padding: .8rem 1rem;
}
.header-cta span { color: var(--cyan); }

.menu-toggle {
  display: none;
  align-items: center;
  gap: .6rem;
  border: 0;
  background: transparent;
  color: var(--navy);
  font: inherit;
  font-weight: 700;
}
.menu-toggle i,
.menu-toggle i:before,
.menu-toggle i:after {
  display: block;
  width: 21px;
  height: 2px;
  background: var(--navy);
  content: "";
}
.menu-toggle i { position: relative; }
.menu-toggle i:before { position: absolute; top: -6px; }
.menu-toggle i:after { position: absolute; top: 6px; }

/* ---------- Hero ---------- */
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(380px, .9fr);
  min-height: 640px;
  background: linear-gradient(90deg, #f5f9fb 0%, #f5f9fb 56%, #eaf3f7 56%);
}
.hero-copy {
  align-self: center;
  max-width: 790px;
  margin-left: max(24px, calc((100vw - var(--max)) / 2));
  padding: 5rem 3rem 5rem 0;
}
.hero h1 { max-width: 790px; }
.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2.25rem;
}
.hero-points {
  display: flex;
  gap: 1.1rem;
  flex-wrap: wrap;
  margin: 3.2rem 0 0;
  padding: 0;
  list-style: none;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #425c6d;
}
.hero-points li {
  display: flex;
  align-items: center;
  gap: .5rem;
}
.hero-points li:before {
  width: 6px;
  height: 6px;
  background: var(--blue);
  content: "";
}
.hero-visual {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgb(5 34 62 / .28), rgb(5 86 105 / .36)),
    url("/assets/images/pharmaceutical-packaging-hero.png") center / cover;
}
.visual-label {
  position: absolute;
  top: 32px;
  right: 32px;
  color: #e3fbfb;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .16em;
  line-height: 1.5;
  text-align: right;
}
.technical-frame {
  position: absolute;
  border: 1px solid rgb(209 245 244 / 84%);
}
.frame-a {
  width: 47%;
  height: 24%;
  top: 23%;
  left: 14%;
  transform: rotate(-11deg);
}
.frame-b {
  width: 31%;
  height: 38%;
  bottom: 0;
  left: 20%;
}
.visual-caption {
  position: absolute;
  bottom: 25px;
  left: 28px;
  color: #e3fbfb;
  font-size: .64rem;
  letter-spacing: .14em;
}

/* ---------- Statement / section head ---------- */
.statement {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 9vw, 11rem);
  padding-block: clamp(4.5rem, 9vw, 9rem);
}
.statement h2 { max-width: 570px; }
.statement > div:last-child {
  padding-top: 1.9rem;
  font-size: 1.08rem;
  color: var(--muted);
}

.section-head {
  max-width: 760px;
  margin-bottom: 2.5rem;
}
.section-head > p {
  max-width: 660px;
  color: var(--muted);
  font-size: 1.05rem;
}

/* ---------- Service grid (home) ---------- */
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
}
.service-grid article {
  display: flex;
  min-height: 285px;
  flex-direction: column;
  padding: 2rem;
  background: #fff;
}
.service-grid article > span,
.principles span,
.capability-grid span,
.service-list > article > span,
.industry-list span {
  color: var(--blue);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .08em;
}
.service-grid p {
  color: var(--muted);
  font-size: .95rem;
}
.service-grid a {
  margin-top: auto;
  font-size: .86rem;
  font-weight: 700;
}

/* ---------- Process ---------- */
.process {
  background: var(--pale);
  padding-block: clamp(4rem, 8vw, 8rem);
}
.process-layout {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(3rem, 8vw, 10rem);
}
.process-layout > div > p:not(.eyebrow) {
  max-width: 460px;
  color: var(--muted);
}
.process ol {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}
.process li {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 1.1rem;
  padding: 1.4rem 0;
  border-top: 1px solid var(--line);
}
.process li:last-child { border-bottom: 1px solid var(--line); }
.process li > span {
  color: var(--blue);
  font-weight: 700;
}
.process h3 { font-size: 1.15rem; }
.process li p {
  margin: 0;
  color: var(--muted);
}

/* ---------- Insight promo ---------- */
.insight-promo {
  display: grid;
  grid-template-columns: .55fr 1.45fr;
  gap: clamp(2rem, 7vw, 8rem);
  align-items: center;
}
.insight-mark {
  display: flex;
  min-height: 260px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: var(--navy);
  color: #8ad3da;
}
.insight-mark span {
  font-size: clamp(4rem, 8vw, 7.5rem);
  font-weight: 700;
  letter-spacing: -.1em;
}
.insight-mark small {
  color: #fff;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .25em;
}
.insight-promo p:not(.eyebrow) {
  max-width: 650px;
  color: var(--muted);
  font-size: 1.08rem;
}
.insight-points {
  margin: 1.2rem 0 1.5rem;
  padding-left: 1.1rem;
  color: var(--muted);
  font-size: .98rem;
}
.insight-points li { margin: .45rem 0; }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--navy);
  color: #fff;
}
.cta-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-block: clamp(3.8rem, 7vw, 6.5rem);
}
.cta-wrap h2 { max-width: 680px; }
.cta-wrap > div > p:not(.eyebrow) {
  max-width: 650px;
  color: #b8cad7;
}

/* ---------- Page hero ---------- */
.page-hero {
  padding-block: clamp(4.5rem, 10vw, 9rem);
  background: var(--pale);
}

/* ---------- Two column ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 9vw, 10rem);
}
.two-col > div:last-child {
  padding-top: 1.6rem;
  color: var(--muted);
  font-size: 1.07rem;
}

/* ---------- Principles ---------- */
.principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}
.principles article {
  padding: 2.2rem;
  background: #fff;
}
.principles h2 { font-size: 1.45rem; }
.principles p { color: var(--muted); }

/* ---------- Notes ---------- */
.profile-note,
.publishing-note {
  padding: 1.5rem 1.7rem;
  background: var(--pale);
  border-left: 3px solid var(--blue);
  color: var(--muted);
}
.profile-note p,
.publishing-note p { margin: 0; }

/* ---------- Service list (services page) ---------- */
.service-list { max-width: 1000px; }
.service-list > article {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 1.5rem;
  padding: 2.3rem 0;
  border-top: 1px solid var(--line);
}
.service-list > article:last-child { border-bottom: 1px solid var(--line); }
.service-list h2 { font-size: clamp(1.7rem, 2.8vw, 2.4rem); }
.service-list p {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.03rem;
}
.service-list ul {
  display: flex;
  gap: 1rem 2rem;
  flex-wrap: wrap;
  margin: 1.3rem 0 0;
  padding: 0;
  list-style: none;
  font-size: .87rem;
  font-weight: 700;
}
.service-list li:before {
  margin-right: .45rem;
  color: var(--blue);
  content: "•";
}

/* ---------- FAQ ---------- */
.faq {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  padding-top: 1rem;
}
.faq details {
  border-top: 1px solid var(--line);
  padding: 1rem 0;
}
.faq details:last-child { border-bottom: 1px solid var(--line); }
.faq summary {
  cursor: pointer;
  font-weight: 700;
}
.faq p {
  margin: 1rem 0 0;
  color: var(--muted);
}

/* ---------- Capability grid ---------- */
.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}
.capability-grid article {
  min-height: 235px;
  padding: 2rem;
  background: #fff;
}
.capability-grid h2 { font-size: 1.45rem; }
.capability-grid p { color: var(--muted); }

/* ---------- Readiness ---------- */
.readiness {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: clamp(4rem, 8vw, 8rem);
  padding: 2.5rem;
  background: var(--pale);
}
.readiness ul {
  display: grid;
  gap: .7rem;
  margin: 0;
  padding: 0;
  list-style: none;
  font-weight: 700;
}
.readiness li {
  border-bottom: 1px solid #ccdbe3;
  padding: .55rem 0;
}
.readiness li:before {
  margin-right: .75rem;
  color: var(--blue);
  content: "→";
}

/* ---------- Industry list ---------- */
.industry-list { max-width: 1050px; }
.industry-list > article {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 3rem;
  padding: 2.4rem 0;
  border-top: 1px solid var(--line);
}
.industry-list > article:last-child { border-bottom: 1px solid var(--line); }
.industry-list h2 { font-size: 1.7rem; }
.industry-list p { color: var(--muted); }
.industry-list strong {
  font-size: .76rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* ---------- Insights ---------- */
.insight-filter {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-bottom: 2rem;
}
.insight-filter p {
  margin: 0;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.insight-filter div {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
}
.insight-filter a {
  border: 1px solid var(--line);
  padding: .5rem .75rem;
  font-size: .85rem;
  font-weight: 700;
}
.insight-filter a:hover {
  border-color: var(--blue);
  background: var(--pale);
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
}
.article-grid article {
  display: flex;
  min-height: 290px;
  flex-direction: column;
  padding: 2.2rem;
  background: #fff;
}
.article-grid article > span {
  color: var(--blue);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.article-grid h2 { font-size: 1.55rem; }
.article-grid p { color: var(--muted); }
.article-grid a {
  margin-top: auto;
  align-self: flex-start;
}

.publishing-note { margin-block: 3rem 6rem; }

/* ---------- Contact ---------- */
.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: clamp(3rem, 8vw, 10rem);
  align-items: start;
}
.contact-layout form { display: grid; gap: 1rem; }

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}
.form-grid > div { display: grid; gap: .4rem; }

label {
  font-size: .86rem;
  font-weight: 700;
}
label b { color: var(--blue); }
label small {
  display: block;
  margin-top: .3rem;
  color: var(--muted);
  font-weight: 400;
}

input,
textarea {
  width: 100%;
  border: 1px solid #adbfca;
  border-radius: 0;
  background: #fff;
  padding: .8rem;
  font: inherit;
  color: var(--ink);
}
textarea { resize: vertical; }

.consent {
  display: flex;
  align-items: flex-start;
  gap: .7rem;
  margin-top: .3rem;
  color: var(--muted);
  font-weight: 400;
}
.consent input {
  width: auto;
  margin-top: .25rem;
}
.consent a {
  border-bottom: 1px solid var(--blue);
  color: var(--ink);
}

.honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
}

.contact-layout aside {
  padding: 2rem;
  background: var(--pale);
  border-top: 3px solid var(--blue);
}
.contact-layout aside h2 { font-size: 1.8rem; }
.contact-layout aside p { color: var(--muted); }
.contact-layout ul {
  padding-left: 1.1rem;
  color: var(--muted);
}
.contact-layout li { margin: .45rem 0; }
.aside-note {
  margin-top: 1.5rem;
  font-size: .85rem;
}

/* ---------- Form validation & status ---------- */
.field-error input,
.field-error textarea {
  border-color: #b3261e;
  background: #fff7f7;
}
.field-error .error-msg {
  display: block;
  color: #b3261e;
  font-size: .78rem;
  font-weight: 400;
}
.error-msg { display: none; }

.form-status {
  display: none;
  padding: 1rem 1.2rem;
  border: 1px solid var(--line);
  background: var(--pale);
  color: var(--ink);
  font-size: .92rem;
  line-height: 1.5;
}
.form-status.success {
  border-color: #2e7d32;
  background: #f0f7f0;
  color: #1e4620;
}
.form-status.error {
  border-color: #b3261e;
  background: #fdf3f2;
  color: #8b1e1e;
}

.button.loading {
  opacity: .7;
  cursor: progress;
  pointer-events: none;
}
.button.loading span { visibility: hidden; }
.button.loading:after {
  content: "";
  width: 14px;
  height: 14px;
  border: 2px solid rgb(255 255 255 / 40%);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin .7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.contact-note {
  margin-top: 1.2rem;
  font-size: .85rem;
  color: var(--muted);
}

/* ---------- Legal ---------- */
.legal-copy { max-width: 760px; }
.legal-copy h2 { font-size: 2rem; }
.legal-copy h3 { font-size: 1.25rem; }
.legal-copy p {
  color: var(--muted);
  font-size: 1.04rem;
}
.legal-copy ul,
.legal-copy ol {
  color: var(--muted);
  font-size: 1rem;
  margin: 0 0 1.2rem;
}
.legal-copy li { margin: .35rem 0; }
.legal-copy a {
  border-bottom: 1px solid var(--blue);
  color: var(--ink);
  font-weight: 700;
}
.legal-copy .legal-updated {
  display: block;
  margin-top: 1.5rem;
  font-size: .85rem;
  color: var(--muted);
}

/* ---------- About profile ---------- */
.about-profile {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 7vw, 8rem);
  padding: 2.5rem;
  background: var(--pale);
  border-top: 3px solid var(--blue);
}
.about-profile h2 { font-size: 1.6rem; }
.about-profile p { color: var(--muted); }
.about-profile ul {
  padding-left: 1.1rem;
  color: var(--muted);
}
.about-profile li { margin: .4rem 0; }

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  margin-bottom: clamp(3rem, 6vw, 6rem);
}
.about-stats > div {
  padding: 1.8rem;
  background: #fff;
}
.about-stats strong {
  display: block;
  font-size: 1.9rem;
  color: var(--navy);
  letter-spacing: -.03em;
}
.about-stats span {
  display: block;
  margin-top: .4rem;
  font-size: .82rem;
  color: var(--muted);
  line-height: 1.4;
}

/* ---------- Centre helpers ---------- */
.centre {
  text-align: center;
  margin-inline: auto;
}
.centre-actions { justify-content: center; }

/* ---------- Footer ---------- */
.site-footer {
  background: #041b30;
  color: #d7e4eb;
  padding-top: 3.5rem;
}
.footer-main {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, .65fr);
  gap: 2.5rem;
  padding-bottom: 3.2rem;
}
.footer-logo { color: #fff; }
.footer-main > div:first-child p {
  max-width: 310px;
  margin-top: 1.1rem;
  color: #a9c0ce;
  font-size: .92rem;
}
.footer-main h2 {
  margin: 0 0 .7rem;
  color: #fff;
  font-size: .85rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.footer-main > div:not(:first-child) {
  display: grid;
  align-content: start;
  gap: .45rem;
  font-size: .89rem;
}
.footer-main a:hover { color: var(--cyan); }
.footer-base {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  border-top: 1px solid rgb(255 255 255 / 17%);
  padding-block: 1.3rem;
  color: #9bb4c3;
  font-size: .77rem;
}
.footer-base a {
  color: #fff;
  font-weight: 700;
}

/* ============================================================
   Responsive
   ============================================================ */

@media (max-width: 1030px) {
  nav { gap: 1rem; }
  .hero-copy { padding-right: 2rem; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: 1.2fr repeat(3, .8fr); }
}

@media (max-width: 800px) {
  .site-header { height: 70px; }
  .menu-toggle { display: flex; }
  nav {
    position: absolute;
    top: 69px;
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    gap: 0;
    padding: 1rem 24px 1.5rem;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 12px 20px rgb(0 0 0 / 8%);
  }
  nav.open { display: flex; }
  nav > a:not(.header-cta) { padding: .8rem 0; }
  .header-cta {
    justify-content: center;
    margin-top: .7rem;
  }
  .hero {
    grid-template-columns: 1fr;
    background: var(--pale);
  }
  .hero-copy {
    margin: 0;
    padding: 4.5rem 24px;
  }
  .hero-visual { min-height: 390px; }
  .statement,
  .process-layout,
  .two-col,
  .faq,
  .readiness,
  .contact-layout,
  .about-profile {
    grid-template-columns: 1fr;
  }
  .statement { gap: 0; }
  .statement > div:last-child,
  .two-col > div:last-child { padding-top: 0; }
  .process-layout { gap: 2rem; }
  .insight-promo {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .insight-mark { min-height: 190px; }
  .cta-wrap {
    align-items: flex-start;
    flex-direction: column;
  }
  .capability-grid { grid-template-columns: repeat(2, 1fr); }
  .industry-list > article {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-main > div:first-child { grid-column: 1 / -1; }
  .contained { width: min(calc(100% - 40px), var(--max)); }
}

@media (max-width: 520px) {
  body { font-size: 15px; }
  .contained { width: calc(100% - 32px); }
  .hero-copy { padding: 3.8rem 16px; }
  .hero h1 { font-size: 2.72rem; }
  .hero-visual { min-height: 310px; }
  .frame-a {
    left: 8%;
    top: 18%;
    width: 55%;
  }
  .frame-b { left: 14%; }
  .hero-points {
    margin-top: 2.2rem;
    gap: .8rem;
  }
  .service-grid,
  .principles,
  .capability-grid,
  .article-grid,
  .form-grid,
  .about-stats {
    grid-template-columns: 1fr;
  }
  .service-grid article { min-height: 220px; }
  .service-list > article {
    grid-template-columns: 48px 1fr;
    gap: .8rem;
  }
  .service-list ul { display: block; }
  .service-list li { margin: .45rem 0; }
  .insight-filter { display: block; }
  .insight-filter p { margin-bottom: .8rem; }
  .readiness {
    gap: 1.5rem;
    padding: 1.5rem;
  }
  .footer-main { grid-template-columns: 1fr; }
  .footer-main > div:first-child { grid-column: auto; }
  .footer-base {
    align-items: flex-start;
    flex-direction: column;
    gap: .5rem;
  }
  .page-hero { padding-block: 4rem; }
  .contact-layout aside { padding: 1.5rem; }
}

/* ============================================================
   Print
   ============================================================ */
@media print {
  .site-header,
  .site-footer,
  .menu-toggle,
  .header-cta,
  .cta-band,
  .hero-actions,
  .contact-layout form,
  .contact-layout aside,
  .insight-filter,
  .article-grid a,
  .service-grid a,
  .inline-link {
    display: none;
  }
  body {
    color: #000;
    background: #fff;
    font-size: 12pt;
  }
  a {
    color: #000;
    text-decoration: underline;
  }
  .contained {
    width: 100%;
    margin: 0;
  }
  .hero,
  .page-hero {
    background: #fff;
    padding: 1rem;
  }
  .hero-visual { display: none; }
  h1 { font-size: 22pt; }
  h2 { font-size: 16pt; }
  h3 { font-size: 13pt; }
  .service-grid,
  .principles,
  .capability-grid,
  .article-grid,
  .about-stats {
    display: block;
  }
  .service-grid article,
  .principles article,
  .capability-grid article,
  .article-grid article,
  .about-stats > div {
    border: 1px solid #ccc;
    margin: 0 0 1rem;
    padding: 1rem;
    break-inside: avoid;
  }
}