:root {
  --paper: #f5f3ef;
  --white: #ffffff;
  --ink: #24191d;
  --black: #050505;
  --charcoal: #171113;
  --orange: #f47d00;
  --red: #f04e2a;
  --gray: #a7a8ab;
  --taupe: #786b60;
  --sand: #e8dfcf;
  --line: rgba(36, 25, 29, 0.16);
  --soft-line: rgba(255, 255, 255, 0.16);
  --max: 1480px;
  --wide: 1680px;
  --page-gutter: clamp(32px, 5vw, 96px);
  --radius: 8px;
  --shadow: 0 20px 70px rgba(20, 12, 8, 0.12);
}

/* Grupo PSI homepage refinements */
.site-header.dark {
  background: rgba(23, 17, 19, 0.96);
}

.nav {
  height: 86px;
}

.brand img {
  width: min(238px, 30vw);
  max-height: 62px;
  object-fit: contain;
  object-position: left center;
}

.brand span {
  display: none;
}

.hero,
.hero-corporate {
  min-height: min(720px, calc(100vh - 86px));
}

.hero-panel {
  padding-top: clamp(58px, 8vw, 92px);
}

.hero-wordmark {
  width: min(520px, 100%);
  max-height: 228px;
  object-fit: contain;
  object-position: left center;
}

.hero-photo {
  transform: translateY(0);
  transition: transform 700ms ease, box-shadow 700ms ease;
}

.hero-photo:hover {
  transform: translateY(-6px);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.42);
}

.about-section {
  position: relative;
  overflow: hidden;
}

.about-section::after {
  content: "";
  position: absolute;
  right: -12vw;
  top: 12%;
  width: 42vw;
  height: 42vw;
  border: 1px solid rgba(36, 25, 29, 0.08);
  transform: rotate(18deg);
  pointer-events: none;
}

.about-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: clamp(34px, 6vw, 78px);
  align-items: center;
}

.about-panel {
  display: grid;
  gap: 14px;
}

.about-card {
  min-height: 220px;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(244, 125, 0, 0.08), transparent 46%),
    var(--paper);
}

.about-card span {
  display: inline-flex;
  color: var(--orange);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.about-card p {
  margin-top: 18px;
  font-size: clamp(1.08rem, 1.9vw, 1.38rem);
  line-height: 1.5;
}

.values-strip {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
  background: var(--white);
}

.values-strip span {
  min-height: 82px;
  display: grid;
  place-items: center;
  padding: 18px;
  color: var(--ink);
  font-weight: 900;
  text-align: center;
  border-right: 1px solid var(--line);
}

.values-strip span:last-child {
  border-right: 0;
}

.coverage-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(112deg, var(--charcoal) 0 48%, #24191d 48% 100%);
  color: var(--white);
}

.coverage-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 92px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 92px);
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.9), transparent 72%);
  pointer-events: none;
}

.coverage-editorial {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.18fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: center;
}

.coverage-section .lead {
  color: rgba(255, 255, 255, 0.78);
}

.coverage-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.coverage-board article {
  min-height: 220px;
  display: grid;
  align-content: space-between;
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.065);
  backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
}

.coverage-board article::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(244, 125, 0, 0.28), transparent 46%);
  opacity: 0;
  transition: opacity 350ms ease;
  pointer-events: none;
}

.coverage-board article:hover::before {
  opacity: 1;
}

.coverage-board span {
  position: relative;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.coverage-board strong {
  position: relative;
  display: block;
  margin-top: 22px;
  font-size: clamp(1.6rem, 3vw, 2.7rem);
  line-height: 1;
}

.coverage-board p {
  position: relative;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.72);
}

.coverage-national {
  grid-column: 1 / -1;
  min-height: 180px !important;
  background:
    linear-gradient(135deg, rgba(244, 125, 0, 0.18), rgba(240, 78, 42, 0.08)),
    rgba(255, 255, 255, 0.075) !important;
}

.form-honeypot {
  position: absolute !important;
  left: -9999px !important;
  opacity: 0 !important;
}

.form-notice {
  padding: 14px 16px;
  border: 1px solid var(--soft-line);
  background: rgba(255, 255, 255, 0.08);
  font-weight: 800;
}

.form-notice.success {
  border-color: rgba(244, 125, 0, 0.55);
  color: #ffffff;
}

.form-notice.error {
  border-color: rgba(240, 78, 42, 0.62);
  color: #ffffff;
}

.button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 680ms ease, transform 680ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .hero-photo {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 960px) {
  .nav {
    height: 76px;
  }

  .nav-links {
    top: 76px;
  }

  .brand img {
    width: min(218px, 44vw);
    max-height: 58px;
  }

  .hero,
  .hero-corporate {
    min-height: auto;
  }

  .about-layout,
  .coverage-editorial {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .brand img {
    width: 168px;
    max-height: 48px;
  }

  .hero-wordmark {
    width: min(340px, 100%);
    max-height: 150px;
  }

  .values-strip,
  .coverage-board {
    grid-template-columns: 1fr;
  }

  .values-strip span {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .values-strip span:last-child {
    border-bottom: 0;
  }

  .coverage-national {
    grid-column: auto;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Montserrat, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  overflow-x: hidden;
}

img,
svg {
  max-width: 100%;
  display: block;
}

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

p {
  margin: 0;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(3.1rem, 9vw, 7.8rem);
  text-transform: uppercase;
}

h2 {
  font-size: clamp(2rem, 4.8vw, 4rem);
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.65rem);
}

.page {
  min-height: 100vh;
  overflow-x: hidden;
}

.container {
  width: min(var(--max), calc(100% - var(--page-gutter)));
  margin: 0 auto;
}

.wide-container {
  width: min(var(--wide), calc(100% - var(--page-gutter)));
  margin: 0 auto;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--taupe);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 32px;
  height: 2px;
  background: var(--orange);
}

.section {
  padding: clamp(64px, 9vw, 118px) 0;
}

.section-tight {
  padding: clamp(44px, 7vw, 76px) 0;
}

.section-dark {
  background: var(--charcoal);
  color: var(--white);
}

.section-white {
  background: var(--white);
}

.section-taupe {
  background: var(--taupe);
  color: var(--white);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  gap: clamp(32px, 6vw, 78px);
  align-items: start;
}

.split-center {
  align-items: center;
}

.section-copy {
  max-width: 740px;
}

.section-copy > * + * {
  margin-top: 20px;
}

.lead {
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  line-height: 1.55;
  color: rgba(36, 25, 29, 0.8);
}

.section-dark .lead,
.section-taupe .lead {
  color: rgba(255, 255, 255, 0.78);
}

.small {
  color: rgba(36, 25, 29, 0.68);
  font-size: 0.92rem;
}

.section-dark .small,
.section-taupe .small {
  color: rgba(255, 255, 255, 0.72);
}

.topbar {
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.82rem;
  border-bottom: 1px solid var(--soft-line);
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(245, 243, 239, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.site-header.dark {
  background: rgba(23, 17, 19, 0.92);
  color: var(--white);
  border-bottom-color: var(--soft-line);
}

.nav {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand img {
  width: 190px;
  height: auto;
}

.brand span {
  max-width: 160px;
  font-size: 0.7rem;
  line-height: 1.25;
  text-transform: uppercase;
  font-weight: 800;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  font-size: 0.92rem;
  font-weight: 700;
}

.nav-links a {
  padding: 9px 12px;
  border-radius: 999px;
  color: rgba(36, 25, 29, 0.78);
}

.dark .nav-links a {
  color: rgba(255, 255, 255, 0.78);
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--ink);
  background: rgba(244, 125, 0, 0.12);
  outline: none;
}

.dark .nav-links a:hover,
.dark .nav-links a:focus-visible {
  color: var(--white);
  background: rgba(244, 125, 0, 0.18);
}

.nav-cta {
  color: var(--white) !important;
  background: var(--ink);
}

.dark .nav-cta {
  background: var(--orange);
  color: var(--charcoal) !important;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: min(780px, calc(100vh - 42px));
  overflow: hidden;
  color: var(--white);
  background: var(--charcoal);
}

.hero-corporate {
  min-height: min(620px, calc(100vh - 118px));
  background:
    linear-gradient(115deg, rgba(23, 17, 19, 0.96) 0 54%, rgba(36, 25, 29, 0.88) 54% 100%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 84px),
    var(--charcoal);
}

.hero-corporate::before {
  content: "";
  position: absolute;
  inset: 0 0 0 52%;
  background:
    linear-gradient(135deg, rgba(244, 125, 0, 0.34), rgba(240, 78, 42, 0.05) 44%, transparent 45%),
    linear-gradient(90deg, transparent, rgba(5, 5, 5, 0.24));
  pointer-events: none;
}

.hero-corporate::after {
  content: "PSI";
  position: absolute;
  right: -1vw;
  bottom: -8vw;
  color: rgba(255, 255, 255, 0.035);
  font-size: clamp(13rem, 28vw, 34rem);
  font-weight: 900;
  line-height: 0.75;
  letter-spacing: 0;
  pointer-events: none;
}

.hero-real {
  padding-bottom: clamp(22px, 4vw, 46px);
}

.hero-real::after {
  content: none;
}

.hero-panel {
  position: relative;
  z-index: 3;
  min-height: inherit;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(320px, 0.58fr);
  gap: clamp(28px, 6vw, 82px);
  align-items: center;
  padding: clamp(54px, 8vw, 96px) 0 clamp(40px, 6vw, 64px);
}

.hero-panel > *,
.sub-hero-grid > *,
.split > * {
  min-width: 0;
}

.hero-real .hero-panel {
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1.18fr);
  min-height: auto;
  padding-bottom: 28px;
}

.hero-copy > * + * {
  margin-top: 14px;
}

.hero-wordmark {
  width: min(470px, 92%);
  max-width: 100%;
  height: auto;
  margin-top: 22px;
}

.hero-copy .eyebrow {
  color: rgba(255, 255, 255, 0.76);
}

.hero-copy h1 {
  max-width: 760px;
  font-size: clamp(2.3rem, 4.2vw, 4.8rem);
  text-transform: none;
  color: var(--white);
}

.hero-copy p {
  max-width: 760px;
  font-size: clamp(1rem, 1.7vw, 1.25rem);
  color: rgba(255, 255, 255, 0.78);
  overflow-wrap: break-word;
}

.hero-location {
  max-width: 560px !important;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.66) !important;
  font-size: 0.98rem !important;
}

.hero-photo,
.sub-hero-photo,
.service-line-media {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: var(--black);
}

.hero-photo {
  position: relative;
  min-height: clamp(380px, 40vw, 560px);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
}

.hero-photo::after,
.sub-hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 54%, rgba(0, 0, 0, 0.62));
  pointer-events: none;
}

.hero-photo img,
.sub-hero-photo img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.hero-photo figcaption {
  position: absolute;
  left: 18px;
  bottom: 16px;
  z-index: 2;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-index {
  display: grid;
  gap: 1px;
  border: 1px solid var(--soft-line);
  background: var(--soft-line);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.2);
}

.hero-index-inline {
  position: relative;
  z-index: 3;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 6px;
  box-shadow: none;
}

.hero-index a {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 4px 16px;
  padding: 22px;
  background: rgba(23, 17, 19, 0.78);
}

.hero-index-inline a {
  grid-template-columns: 1fr;
  gap: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.hero-index span {
  grid-row: span 2;
  color: var(--orange);
  font-weight: 900;
}

.hero-index-inline span {
  grid-row: auto;
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-index strong {
  font-size: 1.18rem;
}

.hero-index small {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.9rem;
  line-height: 1.45;
}

.hero-actions,
.actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1.1;
  cursor: pointer;
}

.button-primary {
  background: var(--orange);
  color: var(--black);
}

.button-dark {
  background: var(--ink);
  color: var(--white);
}

.button-light {
  background: var(--white);
  color: var(--ink);
}

.button-outline {
  border-color: currentColor;
  color: inherit;
}

.button svg {
  width: 18px;
  height: 18px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.services-editorial {
  background:
    linear-gradient(90deg, rgba(244, 125, 0, 0.06), transparent 40%),
    var(--paper);
}

.service-lines {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 38px;
}

.service-line {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(20, 12, 8, 0.08);
}

.service-line::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 7px;
  background: var(--orange);
}

.service-line:nth-child(2)::before {
  background: var(--taupe);
}

.service-line:nth-child(3)::before {
  background: linear-gradient(90deg, var(--red), var(--orange), #1f6fb7);
}

.service-line::after {
  content: none;
}

.service-line-media {
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  aspect-ratio: 1.32;
}

.service-line-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-line-copy {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: space-between;
  min-height: 300px;
  padding: clamp(22px, 3vw, 34px);
}

.service-line-copy span {
  color: var(--red);
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.service-line-copy h3 {
  margin-top: 12px;
  font-size: clamp(1.8rem, 3vw, 3.1rem);
}

.service-line-copy p {
  margin-top: 18px;
  max-width: 640px;
  color: rgba(36, 25, 29, 0.72);
}

.service-line-copy strong {
  margin-top: 20px;
}

.service-tile,
.info-card,
.blog-card,
.contact-card,
.faq-item {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
}

.section-dark .service-tile,
.section-dark .info-card,
.section-dark .blog-card,
.section-dark .contact-card,
.section-dark .faq-item {
  border-color: var(--soft-line);
  background: rgba(255, 255, 255, 0.06);
}

.service-tile {
  position: relative;
  min-height: 330px;
  padding: 24px;
  display: grid;
  align-content: space-between;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.service-tile::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 6px;
  background: var(--orange);
}

.service-tile h3 {
  margin-bottom: 16px;
}

.service-tile p {
  color: rgba(36, 25, 29, 0.72);
}

.service-tile strong {
  display: block;
  margin-top: 22px;
  font-size: 0.88rem;
  color: var(--ink);
}

.tile-industrial::before {
  background: var(--red);
}

.tile-suministros::before {
  background: var(--taupe);
}

.tile-publicidad::before {
  background: linear-gradient(90deg, var(--red), var(--orange), #159bd7, #a01478);
}

.mini-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  font-weight: 900;
  color: var(--red);
}

.mini-link::after {
  content: "";
  width: 22px;
  height: 2px;
  background: currentColor;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 38px;
  background: var(--line);
  border: 1px solid var(--line);
}

.split .metrics {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 0;
}

.metric {
  min-height: 150px;
  padding: 24px;
  background: var(--paper);
}

.section-dark .metrics {
  background: var(--soft-line);
  border-color: var(--soft-line);
}

.section-dark .metric {
  background: var(--charcoal);
}

.metric strong {
  display: block;
  font-size: clamp(1.8rem, 4vw, 3.5rem);
  line-height: 1;
}

.metric span {
  display: block;
  margin-top: 10px;
  color: rgba(36, 25, 29, 0.68);
}

.section-dark .metric span {
  color: rgba(255, 255, 255, 0.68);
}

.values-grid,
.blog-grid,
.contact-grid,
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.split .values-grid {
  grid-template-columns: 1fr;
}

.values-grid.four,
.process-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.info-card,
.blog-card,
.contact-card {
  padding: 24px;
}

.info-card > * + *,
.blog-card > * + *,
.contact-card > * + * {
  margin-top: 14px;
}

.info-card .number,
.blog-card .tag {
  display: inline-flex;
  min-width: 36px;
  height: 28px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 900;
}

.blog-card {
  min-height: 260px;
}

.blog-card .tag {
  background: rgba(244, 125, 0, 0.16);
  color: var(--ink);
}

.blog-card time {
  display: block;
  color: rgba(36, 25, 29, 0.62);
  font-size: 0.86rem;
  font-weight: 700;
}

.image-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.image-strip figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
}

.image-strip img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.image-strip figcaption {
  padding: 12px;
  font-size: 0.82rem;
  color: rgba(36, 25, 29, 0.68);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.proof-grid article {
  min-height: 240px;
  padding: 24px;
  border: 1px solid var(--line);
  background: var(--white);
  display: grid;
  align-content: space-between;
}

.proof-grid span {
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.proof-grid strong {
  display: block;
  margin-top: 18px;
  font-size: clamp(1.35rem, 2.6vw, 2.4rem);
}

.proof-grid p {
  margin-top: 18px;
  color: rgba(36, 25, 29, 0.7);
}

.brand-showcase {
  display: grid;
  grid-template-columns: 1.25fr 0.72fr 0.72fr;
  gap: 14px;
  margin-top: 34px;
}

.brand-showcase figure {
  margin: 0;
  position: relative;
  overflow: hidden;
  min-height: 520px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.brand-showcase .brand-feature {
  min-height: 520px;
}

.brand-showcase img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.brand-showcase .brand-feature img {
  object-fit: contain;
  padding: 22px;
  background: #f5f3ef;
}

.brand-showcase figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 10px 12px;
  border-radius: 8px;
  background: rgba(5, 5, 5, 0.76);
  color: var(--white);
  font-size: 0.84rem;
  font-weight: 800;
}

.visual-system {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.visual-system img {
  width: 100%;
  aspect-ratio: 1.22;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--paper);
}

.coverage-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.coverage-map {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(36, 25, 29, 0.22);
  background:
    linear-gradient(135deg, rgba(244, 125, 0, 0.14), transparent 48%),
    var(--charcoal);
  padding: 0;
  box-shadow: var(--shadow);
}

.coverage-map svg {
  width: 100%;
  height: auto;
}

.map-label {
  font-weight: 900;
  font-size: 1rem;
  text-transform: uppercase;
  fill: var(--white);
}

.map-node text {
  fill: var(--white);
  font-weight: 900;
  font-size: 1.16rem;
  text-transform: uppercase;
}

.coverage-list {
  display: grid;
  gap: 12px;
}

.coverage-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.coverage-row strong {
  display: block;
}

.coverage-dot {
  flex: 0 0 13px;
  width: 13px;
  height: 13px;
  margin-top: 7px;
  border-radius: 999px;
  background: var(--orange);
  box-shadow: 0 0 0 5px rgba(244, 125, 0, 0.14);
}

.coverage-row:nth-child(2) .coverage-dot {
  background: var(--taupe);
  box-shadow: 0 0 0 5px rgba(120, 107, 96, 0.14);
}

.coverage-row:nth-child(3) .coverage-dot {
  background: var(--red);
  box-shadow: 0 0 0 5px rgba(240, 78, 42, 0.14);
}

.coverage-row:nth-child(4) .coverage-dot {
  background: var(--black);
  box-shadow: 0 0 0 5px rgba(5, 5, 5, 0.12);
}

.faq-list {
  display: grid;
  gap: 12px;
  margin-top: 34px;
}

.faq-item {
  padding: 20px 22px;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 900;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--orange);
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  margin-top: 12px;
  color: rgba(36, 25, 29, 0.72);
}

.section-dark .faq-item p {
  color: rgba(255, 255, 255, 0.72);
}

.contact-band {
  background: var(--charcoal);
  color: var(--white);
  padding: clamp(54px, 7vw, 82px) 0;
}

.contact-band .lead {
  color: rgba(255, 255, 255, 0.76);
}

.contact-band .contact-grid {
  grid-template-columns: 0.9fr 1.1fr;
}

.contact-routes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.contact-routes button {
  appearance: none;
  display: grid;
  gap: 6px;
  min-height: 118px;
  padding: 18px;
  border: 1px solid var(--soft-line);
  background: rgba(255, 255, 255, 0.06);
  color: inherit;
  font: inherit;
  text-align: left;
  align-content: start;
  cursor: pointer;
}

.contact-routes button:hover,
.contact-routes button:focus-visible {
  border-color: rgba(244, 125, 0, 0.76);
  background: rgba(244, 125, 0, 0.1);
  outline: none;
}

.contact-routes strong {
  font-size: 1.05rem;
}

.contact-routes span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.92rem;
  line-height: 1.45;
}

.form-shell {
  display: grid;
  gap: 12px;
}

.field {
  display: grid;
  gap: 7px;
}

.field label {
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.68);
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid var(--soft-line);
  border-radius: var(--radius);
  padding: 13px 14px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font: inherit;
}

.field textarea {
  min-height: 128px;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(255, 255, 255, 0.46);
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.site-footer {
  background: var(--black);
  color: var(--white);
  padding: 42px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.footer-grid img {
  width: 124px;
  margin-bottom: 18px;
}

.footer-col {
  display: grid;
  gap: 8px;
  align-content: start;
}

.footer-col strong {
  margin-bottom: 6px;
}

.footer-col a,
.footer-col span,
.footer-bottom {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
}

.footer-col a:hover {
  color: var(--white);
}

.footer-bottom {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid var(--soft-line);
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.sub-hero {
  position: relative;
  min-height: 680px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--charcoal);
}

.sub-hero .container {
  position: relative;
  z-index: 2;
  padding: clamp(88px, 11vw, 140px) 0;
}

.sub-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 1fr);
  gap: clamp(28px, 5vw, 74px);
  align-items: center;
}

.sub-hero h1 {
  font-size: clamp(2.8rem, 4.8vw, 4.2rem);
  word-break: normal;
}

.sub-hero p {
  max-width: 720px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.05rem, 2vw, 1.36rem);
}

.sub-hero .hero-actions {
  margin-top: 30px;
}

.sub-hero-photo {
  position: relative;
  min-height: clamp(360px, 38vw, 540px);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 26px 84px rgba(0, 0, 0, 0.26);
}

.supply-hero .sub-hero-photo {
  border-color: rgba(36, 25, 29, 0.16);
  box-shadow: 0 24px 70px rgba(20, 12, 8, 0.14);
}

.industrial-hero {
  background:
    radial-gradient(circle at 82% 20%, rgba(240, 78, 42, 0.18), transparent 28%),
    var(--charcoal);
}

.industrial-lines,
.supply-lines {
  position: absolute;
  inset: 0;
  opacity: 0.32;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 58px 58px;
}

.industrial-mark {
  position: absolute;
  right: 4vw;
  bottom: -80px;
  width: min(560px, 58vw);
  opacity: 0.16;
  border: 1px solid var(--soft-line);
}

.supply-hero {
  color: var(--ink);
  background:
    linear-gradient(120deg, rgba(120, 107, 96, 0.16), transparent 52%),
    var(--paper);
}

.supply-hero p {
  color: rgba(36, 25, 29, 0.76);
}

.supply-lines {
  opacity: 0.38;
  background-image:
    linear-gradient(rgba(36, 25, 29, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(36, 25, 29, 0.07) 1px, transparent 1px);
}

.supply-visual {
  position: absolute;
  right: 2vw;
  top: 50%;
  width: min(540px, 52vw);
  transform: translateY(-50%);
  opacity: 0.18;
}

.publicidad-hero {
  background: var(--black);
}

.publicidad-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.94) 0%, rgba(5, 5, 5, 0.76) 54%, rgba(5, 5, 5, 0.36) 100%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 78px),
    linear-gradient(135deg, transparent 0 50%, rgba(244, 125, 0, 0.32) 50% 62%, transparent 62%);
}

.publicidad-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.24;
  background-image: radial-gradient(rgba(255, 255, 255, 0.32) 1px, transparent 1px);
  background-size: 5px 5px;
  pointer-events: none;
}

.capabilities {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
}

.capability {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
}

.capability-icon {
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: var(--orange);
}

.capability:nth-child(2n) .capability-icon {
  background: var(--taupe);
}

.capability:nth-child(3n) .capability-icon {
  background: var(--red);
}

.capability strong {
  display: block;
}

.capability p {
  color: rgba(36, 25, 29, 0.68);
}

.cta-panel {
  border-radius: var(--radius);
  padding: clamp(28px, 5vw, 46px);
  background: var(--ink);
  color: var(--white);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  align-items: center;
}

.cta-panel p {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.72);
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 16px;
  border-radius: 999px;
  background: #25d366;
  color: #06140a;
  font-weight: 900;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}

.whatsapp-float svg {
  width: 20px;
  height: 20px;
}

.privacy-article {
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(58px, 9vw, 96px) 0;
}

.privacy-article > * + * {
  margin-top: 22px;
}

.privacy-article h1 {
  font-size: clamp(2.4rem, 6vw, 4.8rem);
}

.privacy-article h2 {
  margin-top: 42px;
  font-size: clamp(1.45rem, 3vw, 2.3rem);
}

.privacy-article ul {
  margin: 14px 0 0;
  padding-left: 20px;
}

.privacy-article li + li {
  margin-top: 8px;
}

.blog-hero {
  background: var(--paper);
  color: var(--ink);
  min-height: 420px;
  border-bottom: 1px solid var(--line);
}

.blog-hero p {
  color: rgba(36, 25, 29, 0.76);
}

.blog-toolbar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-size: 0.86rem;
  font-weight: 800;
}

.article-list {
  display: grid;
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.article-row {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr auto;
  gap: 20px;
  align-items: center;
  padding: 22px;
  background: var(--white);
}

.article-row span {
  color: rgba(36, 25, 29, 0.62);
  font-size: 0.86rem;
  font-weight: 800;
}

.article-row strong {
  font-size: clamp(1.08rem, 2vw, 1.45rem);
}

.article-row a {
  color: var(--red);
  font-weight: 900;
}

@media (max-width: 960px) {
  h1 {
    font-size: clamp(2.9rem, 15vw, 5.8rem);
  }

  .topbar .container,
  .footer-bottom {
    flex-direction: column;
  }

  .nav {
    height: 70px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px 20px 20px;
    background: rgba(245, 243, 239, 0.98);
    border-bottom: 1px solid var(--line);
  }

  .dark .nav-links {
    background: rgba(23, 17, 19, 0.98);
    border-bottom-color: var(--soft-line);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    border-radius: 8px;
    padding: 13px 12px;
  }

  .split,
  .coverage-layout,
  .contact-band .contact-grid,
  .cta-panel {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .proof-grid,
  .values-grid,
  .values-grid.four,
  .process-grid,
  .process-grid.four,
  .blog-grid,
  .contact-grid,
  .metrics,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero {
    min-height: 650px;
  }

  .hero-panel {
    grid-template-columns: 1fr;
    align-items: end;
  }

  .hero-real .hero-panel,
  .sub-hero-grid,
  .hero-index-inline {
    grid-template-columns: 1fr;
  }

  .hero-index {
    max-width: 620px;
  }

  .industrial-mark,
  .supply-visual {
    width: 110vw;
    right: -36vw;
    opacity: 0.1;
  }

  .service-lines {
    grid-template-columns: 1fr;
  }

  .service-line,
  .service-line-copy {
    min-height: 330px;
  }

  .image-strip {
    grid-template-columns: 1fr;
  }

  .brand-showcase,
  .visual-system {
    grid-template-columns: 1fr;
  }

  .image-strip img {
    height: 520px;
  }

  .article-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .container,
  .wide-container {
    width: min(calc(100% - 28px), var(--max));
  }

  .brand img {
    width: 136px;
  }

  .brand span {
    display: none;
  }

  .hero,
  .sub-hero {
    min-height: 620px;
  }

  .hero-panel {
    padding-top: 58px;
    padding-bottom: 34px;
    gap: 24px;
  }

  .hero-copy h1 {
    font-size: clamp(2.25rem, 12vw, 4.2rem);
    overflow-wrap: break-word;
  }

  .hero-wordmark {
    width: min(300px, 100%);
  }

  .hero-copy p {
    font-size: 1rem;
  }

  .hero-photo,
  .sub-hero-photo {
    min-height: 330px;
  }

  .hero-index a {
    grid-template-columns: 34px 1fr;
    padding: 16px;
  }

  .hero-index-inline a {
    grid-template-columns: 1fr;
  }

  .contact-routes {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .proof-grid,
  .service-lines,
  .values-grid,
  .values-grid.four,
  .process-grid,
  .process-grid.four,
  .blog-grid,
  .contact-grid,
  .metrics,
  .footer-grid,
  .capabilities {
    grid-template-columns: 1fr;
  }

  .service-tile {
    min-height: 260px;
  }

  .service-line img {
    min-height: 300px;
  }

  .service-line-copy {
    padding: 24px;
  }

  .metric {
    min-height: 118px;
  }

  .image-strip img {
    height: 430px;
  }

  .brand-showcase figure,
  .brand-showcase .brand-feature,
  .brand-showcase img {
    min-height: 380px;
  }

  .button {
    width: 100%;
  }

  .whatsapp-float {
    right: 14px;
    left: auto;
    width: auto;
    justify-content: center;
  }
}

/* Grupo PSI final overrides */
.nav {
  height: 86px;
}

.brand img {
  width: min(238px, 30vw);
  max-height: 62px;
  object-fit: contain;
  object-position: left center;
}

.brand span {
  display: none;
}

.hero,
.hero-corporate {
  min-height: min(720px, calc(100vh - 86px));
}

.hero-wordmark {
  width: min(520px, 100%);
  max-height: 228px;
  object-fit: contain;
  object-position: left center;
}

.footer-col img {
  width: min(230px, 100%);
  max-height: 98px;
  object-fit: contain;
  object-position: left center;
}

@media (max-width: 960px) {
  .nav {
    height: 76px;
  }

  .nav-links {
    top: 76px;
  }

  .brand img {
    width: min(218px, 44vw);
    max-height: 58px;
  }

  .hero,
  .hero-corporate {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .brand img {
    width: 168px;
    max-height: 48px;
  }

  .hero-wordmark {
    width: min(340px, 100%);
    max-height: 150px;
  }
}

/* Quienes somos refinement */
.about-section {
  background:
    linear-gradient(180deg, #ffffff 0%, #ffffff 62%, #f7f4ef 62%, #f7f4ef 100%);
}

.about-section::after {
  right: -18vw;
  top: 4%;
  width: 48vw;
  height: 48vw;
  border-color: rgba(36, 25, 29, 0.055);
}

.about-layout {
  align-items: start;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1fr);
}

.about-section .section-copy {
  max-width: 650px;
}

.about-section .section-copy > * + * {
  margin-top: 18px;
}

.about-section h2 {
  max-width: 680px;
  font-size: 4.35rem;
  line-height: 0.98;
}

.about-section .lead {
  max-width: 640px;
  font-size: 1.18rem;
}

.about-section .section-copy p:not(.lead) {
  max-width: 620px;
  color: rgba(36, 25, 29, 0.76);
  font-size: 1rem;
}

.about-panel {
  gap: 18px;
}

.about-card {
  position: relative;
  min-height: 235px;
  padding: 34px 38px;
  border: 1px solid rgba(36, 25, 29, 0.14);
  border-left: 5px solid var(--orange);
  background:
    linear-gradient(135deg, rgba(244, 125, 0, 0.1), transparent 44%),
    #f7f3ec;
  box-shadow: 0 24px 70px rgba(36, 25, 29, 0.08);
}

.about-card:nth-child(2) {
  border-left-color: var(--taupe);
  background:
    linear-gradient(135deg, rgba(120, 107, 96, 0.12), transparent 44%),
    #f7f3ec;
}

.about-card strong {
  position: absolute;
  top: 24px;
  right: 28px;
  color: rgba(36, 25, 29, 0.18);
  font-size: 0.86rem;
  font-weight: 900;
}

.about-card span {
  color: var(--orange);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
}

.about-card p {
  max-width: 620px;
  margin-top: 22px;
  color: var(--ink);
  font-size: 1.32rem;
  line-height: 1.48;
  font-weight: 650;
}

.brand-values {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: clamp(18px, 4vw, 36px);
}

.value-card {
  position: relative;
  min-height: 265px;
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 26px;
  overflow: hidden;
  border: 1px solid rgba(36, 25, 29, 0.13);
  border-top: 5px solid var(--orange);
  background: var(--white);
  box-shadow: 0 18px 56px rgba(36, 25, 29, 0.07);
  transition: transform 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}

.value-card:nth-child(2) {
  border-top-color: var(--taupe);
}

.value-card:nth-child(3) {
  border-top-color: var(--red);
}

.value-card:nth-child(4) {
  border-top-color: var(--ink);
}

.value-card::after {
  content: "";
  position: absolute;
  right: -34px;
  bottom: -34px;
  width: 110px;
  height: 110px;
  border: 1px solid rgba(36, 25, 29, 0.08);
  transform: rotate(28deg);
}

.value-card:hover {
  transform: translateY(-5px);
  border-color: rgba(244, 125, 0, 0.34);
  box-shadow: 0 26px 74px rgba(36, 25, 29, 0.12);
}

.value-icon {
  width: 54px;
  height: 54px;
  padding: 10px;
  border-radius: 8px;
  background: rgba(244, 125, 0, 0.09);
  color: var(--orange);
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.value-card:nth-child(2) .value-icon {
  background: rgba(120, 107, 96, 0.1);
  color: var(--taupe);
}

.value-card:nth-child(3) .value-icon {
  background: rgba(240, 78, 42, 0.1);
  color: var(--red);
}

.value-card:nth-child(4) .value-icon {
  background: rgba(36, 25, 29, 0.08);
  color: var(--ink);
}

.value-card > span {
  color: rgba(36, 25, 29, 0.42);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.value-card h3 {
  max-width: 220px;
  color: var(--ink);
  font-size: 1.34rem;
  line-height: 1.12;
}

.value-card p {
  position: relative;
  z-index: 1;
  color: rgba(36, 25, 29, 0.7);
  font-size: 0.95rem;
  line-height: 1.52;
}

@media (max-width: 1040px) {
  .about-section h2 {
    font-size: 3.4rem;
  }

  .brand-values {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 960px) {
  .about-layout {
    grid-template-columns: 1fr;
  }

  .about-section h2 {
    max-width: 780px;
  }
}

@media (max-width: 640px) {
  .about-section {
    background: var(--white);
  }

  .about-section h2 {
    font-size: 2.45rem;
  }

  .about-card {
    min-height: auto;
    padding: 26px;
  }

  .about-card p {
    font-size: 1.08rem;
  }

  .brand-values {
    grid-template-columns: 1fr;
  }

  .value-card {
    min-height: 220px;
  }
}

/* Legal pages refinement */
.privacy-article {
  width: min(980px, calc(100% - 40px));
  max-width: 980px;
  padding: clamp(62px, 8vw, 104px) 0;
}

.privacy-article .eyebrow {
  color: var(--taupe);
}

.privacy-article h1 {
  max-width: 760px;
  margin-top: 18px;
  color: var(--ink);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1;
}

.wp-page-content {
  margin-top: 34px;
  padding: clamp(26px, 5vw, 46px);
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 22px 70px rgba(36, 25, 29, 0.07);
}

.wp-page-content > * {
  max-width: 780px;
}

.wp-page-content > * + * {
  margin-top: 14px;
}

.privacy-article .lead,
.wp-page-content p,
.wp-page-content li {
  color: rgba(36, 25, 29, 0.78);
  font-size: 1rem;
  line-height: 1.72;
}

.privacy-article .lead {
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
  font-weight: 600;
}

.wp-page-content h2 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 34px;
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 900;
  line-height: 1.22;
  text-transform: uppercase;
}

.wp-page-content h2::before {
  content: "";
  flex: 0 0 28px;
  height: 2px;
  background: var(--orange);
}

.wp-page-content h2:first-child {
  margin-top: 0;
}

.wp-page-content ul {
  margin: 16px 0 0;
  padding: 20px 24px;
  border: 1px solid rgba(36, 25, 29, 0.11);
  background: #f8f5ef;
}

.wp-page-content li {
  padding-left: 4px;
}

.wp-page-content li + li {
  margin-top: 10px;
}

.site-footer .footer-col:last-child span {
  display: none;
}

@media (max-width: 640px) {
  .wp-page-content {
    padding: 24px 20px;
  }

  .wp-page-content h2 {
    align-items: flex-start;
    font-size: 0.98rem;
  }

  .wp-page-content h2::before {
    margin-top: 10px;
  }
}

/* Wide desktop refinement */
@media (min-width: 1440px) {
  .hero-real .hero-panel {
    grid-template-columns: minmax(0, 0.72fr) minmax(680px, 1.28fr);
    gap: clamp(48px, 5vw, 96px);
  }

  .hero-photo {
    min-height: 620px;
  }

  .hero-copy p {
    max-width: 680px;
  }

  .hero-index-inline {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .service-lines {
    gap: 22px;
  }

  .service-line-copy {
    min-height: 330px;
    padding: clamp(26px, 2.5vw, 42px);
  }

  .coverage-editorial {
    grid-template-columns: minmax(0, 0.72fr) minmax(720px, 1.28fr);
  }

  .contact-band .contact-grid {
    grid-template-columns: 0.78fr 1.22fr;
    gap: clamp(44px, 6vw, 104px);
  }

  .footer-grid {
    grid-template-columns: 1.45fr repeat(3, minmax(0, 1fr));
    gap: clamp(40px, 5vw, 96px);
  }
}

@media (min-width: 1720px) {
  .container {
    width: min(var(--wide), calc(100% - var(--page-gutter)));
  }

  .section-copy {
    max-width: 820px;
  }

  .about-section .section-copy {
    max-width: 720px;
  }

  .about-section h2 {
    max-width: 760px;
  }

  .privacy-article {
    width: min(1100px, calc(100% - var(--page-gutter)));
    max-width: 1100px;
  }
}
