:root {
  --purple: #5a1687;
  --deep: #260936;
  --ink: #17131a;
  --paper: #f3f0ed;
  --orange: #ef7f1a;
  --muted: #6f6871;
  --line: rgba(23, 19, 26, .16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--paper); }
body { max-width: 100%; margin: 0; overflow-x: hidden; color: var(--ink); background: var(--paper); font-family: "Times New Roman", Times, serif; }
main { width: 100%; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; }
::selection { color: #fff; background: var(--purple); }

.site-header {
  position: absolute; z-index: 20; inset: 0 0 auto; height: 104px;
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  padding: 0 5vw; color: white; border-bottom: 1px solid rgba(255,255,255,.28);
}
.brand {
  display: inline-flex; align-items: center; justify-self: start;
  padding: 4px 10px; border-radius: 10px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 8px 24px rgba(16,6,22,.16);
}
.brand-logo { width: auto; height: 72px; object-fit: contain; }
.desktop-nav { display: flex; gap: 30px; font-family: Arial, sans-serif; font-size: 12px; font-weight: 700; letter-spacing: .015em; }
.desktop-nav a { position: relative; padding: 10px 0; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 3px; height: 1px; background: white; transition: right .2s; }
.desktop-nav a:hover::after, .desktop-nav a:focus-visible::after { right: 0; }
.header-cta { justify-self: end; display: flex; align-items: center; gap: 14px; font-family: Arial, sans-serif; font-size: 12px; font-weight: 700; }
.header-cta span { width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.55); border-radius: 50%; }
.mobile-menu { display: none; }

.hero { position: relative; min-height: 780px; height: 100svh; max-height: 1040px; overflow: hidden; color: white; background: #16051f; }
.hero-image, .hero-scrim, .hero-grid { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-image { object-fit: cover; object-position: center; animation: hero-in 1.2s ease both; }
.hero-scrim { background: linear-gradient(90deg, rgba(19,5,27,.89), rgba(35,8,48,.52) 45%, rgba(18,8,18,.08) 78%), linear-gradient(0deg, rgba(18,6,22,.73), transparent 50%); }
.hero-grid { opacity: .28; background-image: linear-gradient(rgba(255,255,255,.09) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.09) 1px, transparent 1px); background-size: 25vw 25vw; pointer-events: none; }
.hero-content { position: absolute; z-index: 2; left: 8vw; top: 48%; width: min(780px, 75vw); transform: translateY(-45%); animation: copy-in .9s .15s ease both; }
.kicker { margin: 0 0 24px; color: var(--purple); font-size: 11px; font-weight: 750; letter-spacing: .19em; line-height: 1.4; text-transform: uppercase; }
.kicker--light { color: rgba(255,255,255,.72); }
.hero h1 {
  margin: 0; max-width: 870px; color: white;
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(61px,6.65vw,108px); font-weight: 800;
  letter-spacing: -.062em; line-height: .86; text-transform: uppercase;
}
.hero h1 span {
  position: relative; display: block; width: fit-content; margin-top: 9px;
  color: #d8b6ea; font-family: Georgia, "Times New Roman", serif;
  font-size: 1.02em; font-style: italic; font-weight: 500;
  letter-spacing: -.075em; line-height: .9; text-shadow: 0 12px 40px rgba(0,0,0,.24);
  text-transform: none;
  -webkit-text-stroke: 0;
}
.hero h1 span::after {
  content: ""; position: absolute; left: 5px; bottom: -19px;
  width: 74px; height: 4px; background: var(--orange);
}
.hero-lead {
  max-width: 590px; margin: 48px 0 34px; color: rgba(255,255,255,.82);
  font-family: Arial, sans-serif; font-size: 17px; font-weight: 500;
  letter-spacing: .012em; line-height: 1.6;
}
.hero-cta { min-width: 242px; font-family: Arial, sans-serif; }
.button { min-height: 54px; display: inline-flex; align-items: center; justify-content: space-between; gap: 32px; padding: 0 22px; font-size: 13px; font-weight: 700; transition: transform .18s, background .18s, color .18s; }
.button:hover { transform: translateY(-2px); }
.button--light { color: var(--deep); background: white; }
.button--outline { color: white; border: 1px solid rgba(255,255,255,.45); }
.button--outline:hover { color: var(--deep); background: white; }
.hero-facts { position: absolute; z-index: 2; right: 5vw; bottom: 46px; display: flex; }
.hero-facts div { min-width: 195px; padding: 10px 28px; border-left: 1px solid rgba(255,255,255,.34); }
.hero-facts div:first-child { min-width: 250px; }
.hero-facts strong, .hero-facts span { display: block; }
.hero-facts strong { font-size: 23.4px; font-weight: 650; }
.hero-facts span { margin-top: 8px; color: rgba(255,255,255,.68); font-size: 13px; letter-spacing: .055em; line-height: 1.35; text-transform: uppercase; }
.hero-fact--nsh strong { color: var(--orange); letter-spacing: .08em; }

.section { padding: 118px 7vw; }
.section-heading { display: flex; justify-content: space-between; padding-bottom: 27px; border-bottom: 1px solid var(--line); }
.section-heading .kicker { margin: 0; font-size: 13.75px; }
.section-index { margin: 0; color: #89828b; font-size: 11px; }
.section-heading--light { border-color: rgba(255,255,255,.18); }
.section-heading--light .section-index { color: rgba(255,255,255,.5); }
.company-copy, .capabilities-intro, .projects-heading, .commitment-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 9vw; }
.company-copy { padding: 88px 0 104px; }
.company-copy h2, .capabilities-intro h2, .projects-heading h2, .commitment-grid > h2 {
  margin: 0; font-size: clamp(42px, 5.5vw, 82px); font-weight: 550; letter-spacing: -.055em; line-height: .98;
}
.company-detail { max-width: 520px; align-self: end; }
.company-detail p, .projects-heading > p, .capabilities-intro > p { color: var(--muted); font-size: 16px; line-height: 1.8; }
.text-link { display: inline-flex; gap: 42px; margin-top: 18px; padding-bottom: 7px; color: var(--purple); border-bottom: 1px solid var(--purple); font-size: 13px; font-weight: 700; }
.company-band { display: grid; grid-template-columns: repeat(3, 1fr); padding: 24px 0; border-block: 1px solid var(--line); }
.company-band span { padding-left: 24px; color: #69636b; border-left: 3px solid var(--purple); font-size: 12px; font-weight: 650; letter-spacing: .06em; text-transform: uppercase; }

.capabilities { color: white; background: #17051f; }
.capabilities-intro { padding: 88px 0; }
.capabilities-intro > p { max-width: 450px; align-self: end; color: rgba(255,255,255,.62); }
.capability-list { border-top: 1px solid rgba(255,255,255,.18); }
.capability-item {
  display: grid; grid-template-columns: 70px minmax(230px,.8fr) 1fr 45px; align-items: center; gap: 24px;
  padding: 28px 0; border-bottom: 1px solid rgba(255,255,255,.18); transition: padding .18s, background .18s;
}
.capability-item:hover { padding-inline: 20px; background: rgba(255,255,255,.05); }
.capability-item > span:first-child { color: #bd91d6; font-size: 10px; }
.capability-item h3 { margin: 0; font-size: clamp(22px,2.3vw,34px); font-weight: 520; }
.capability-item p { max-width: 520px; margin: 0; color: rgba(255,255,255,.57); font-size: 13px; line-height: 1.7; }
.capability-arrow { width: 42px; height: 42px; display: grid; place-items: center; justify-self: end; border: 1px solid rgba(255,255,255,.24); border-radius: 50%; }

.projects-heading { padding: 86px 0 66px; }
.projects-heading > p { max-width: 420px; align-self: end; }
.project-grid { display: grid; grid-template-columns: 1.2fr .8fr; grid-template-rows: repeat(2,minmax(310px,37vw)); gap: 18px; }
.project-card { position: relative; min-height: 310px; overflow: hidden; color: white; background: var(--deep); }
.project-card--tall { grid-row: 1 / 3; }
.project-card img { height: 100%; object-fit: cover; transition: transform .65s cubic-bezier(.2,.7,.2,1); }
.project-card:hover img { transform: scale(1.035); }
.project-overlay { position: absolute; inset: 0; background: linear-gradient(0deg,rgba(16,5,20,.9),rgba(25,8,31,.04) 68%); }
.project-copy { position: absolute; z-index: 2; left: 36px; right: 36px; bottom: 32px; }
.project-copy p { margin: 0 0 12px; color: rgba(255,255,255,.66); font-size: 10px; font-weight: 750; letter-spacing: .14em; text-transform: uppercase; }
.project-copy h3 { margin: 0 0 10px; font-size: clamp(27px,3vw,46px); font-weight: 560; letter-spacing: -.04em; }
.project-copy span { display: block; max-width: 520px; color: rgba(255,255,255,.7); font-size: 13px; line-height: 1.5; }

.portfolio { background: #ece8e4; }
.portfolio-intro {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 9vw;
  padding: 86px 0 66px;
}
.portfolio-intro h2 {
  margin: 0;
  font-size: clamp(42px,5.5vw,82px);
  font-weight: 650;
  letter-spacing: -.055em;
  line-height: .98;
}
.portfolio-intro > p {
  max-width: 470px;
  align-self: end;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}
.portfolio-slider { border-block: 1px solid var(--line); }
.portfolio-viewport { overflow: hidden; background: #17051f; }
.portfolio-track {
  display: flex;
  transition: transform .7s cubic-bezier(.2,.75,.2,1);
  will-change: transform;
}
.portfolio-card {
  position: relative;
  flex: 0 0 100%;
  width: 100%;
  height: min(61vw,720px);
  min-height: 520px;
  margin: 0;
  overflow: hidden;
  color: white;
  background: #17051f;
}
.portfolio-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s cubic-bezier(.2,.7,.2,1);
}
.portfolio-card--contain img {
  object-fit: contain;
  background: #17051f;
}
.portfolio-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg,rgba(15,4,20,.94),rgba(15,4,20,.02) 62%);
  pointer-events: none;
}
.portfolio-card:hover img { transform: scale(1.025); }
.portfolio-card figcaption {
  position: absolute;
  z-index: 2;
  left: clamp(26px,4vw,64px);
  right: clamp(26px,4vw,64px);
  bottom: clamp(28px,4vw,58px);
}
.portfolio-card figcaption span {
  display: block;
  margin-bottom: 12px;
  color: #f5a24b;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.portfolio-card figcaption strong {
  display: block;
  max-width: 830px;
  font-size: clamp(29px,4vw,58px);
  font-weight: 760;
  letter-spacing: -.045em;
  line-height: 1;
}
.portfolio-card figcaption p {
  max-width: 620px;
  margin: 18px 0 0;
  color: rgba(255,255,255,.72);
  font-size: 14px;
  line-height: 1.6;
}
.portfolio-controls {
  min-height: 104px;
  display: grid;
  grid-template-columns: minmax(330px,.85fr) minmax(220px,1fr) auto;
  align-items: center;
  gap: 38px;
  border-top: 1px solid var(--line);
}
.portfolio-controls > p {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 22px;
  margin: 0;
  font-family: Arial, sans-serif;
}
.portfolio-controls > p strong {
  flex: 0 0 auto;
  color: var(--purple);
  font-size: 12px;
  letter-spacing: .08em;
}
.portfolio-controls > p > span {
  overflow: hidden;
  color: #504952;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: .08em;
  line-height: 1.35;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}
.portfolio-progress { height: 3px; background: rgba(38,9,54,.14); }
.portfolio-progress span {
  display: block;
  width: 6.666%;
  height: 100%;
  background: var(--orange);
  transition: width .45s ease;
}
.portfolio-buttons { display: flex; }
.portfolio-buttons button {
  width: 70px;
  height: 70px;
  color: var(--deep);
  border: 1px solid rgba(38,9,54,.28);
  background: transparent;
  font-size: 24px;
  cursor: pointer;
  transition: color .2s, background .2s;
}
.portfolio-buttons button + button { border-left: 0; }
.portfolio-buttons button:hover,
.portfolio-buttons button:focus-visible { color: white; background: var(--purple); }

.works { color: white; background: #120719; }
.works-intro {
  display: grid; grid-template-columns: 1.15fr .85fr; gap: 9vw;
  padding: 86px 0 66px;
}
.works-intro h2 {
  margin: 0; font-size: clamp(42px,5.5vw,82px); font-weight: 550;
  letter-spacing: -.055em; line-height: .98;
}
.works-intro p {
  max-width: 450px; align-self: end; margin: 0;
  color: rgba(255,255,255,.62); font-size: 16px; line-height: 1.8;
}
.works-grid { display: grid; grid-template-columns: repeat(12,1fr); gap: 16px; }
.work-card {
  position: relative; grid-column: span 4; min-height: 430px; margin: 0;
  overflow: hidden; background: #2b1236;
}
.work-card--wide { grid-column: span 8; }
.work-card img {
  height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2,.7,.2,1);
}
.work-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(0deg,rgba(13,4,17,.92),rgba(13,4,17,.02) 62%);
}
.work-card:hover img { transform: scale(1.035); }
.work-card figcaption { position: absolute; z-index: 2; left: 26px; right: 26px; bottom: 24px; }
.work-card figcaption span {
  display: block; margin-bottom: 8px; color: #d3a9e7;
  font-size: 9px; font-weight: 750; letter-spacing: .15em; text-transform: uppercase;
}
.work-card figcaption strong {
  display: block; max-width: 500px; font-size: clamp(19px,2vw,29px);
  font-weight: 560; letter-spacing: -.025em; line-height: 1.1;
}
.works-link {
  display: inline-flex; gap: 40px; margin-top: 42px; padding-bottom: 8px;
  color: white; border-bottom: 1px solid rgba(255,255,255,.55);
  font-size: 13px; font-weight: 700;
}

.works-slider { border-block: 1px solid rgba(255,255,255,.2); }
.works-viewport { overflow: hidden; }
.works-track {
  display: flex;
  transition: transform .7s cubic-bezier(.2,.75,.2,1);
  will-change: transform;
}
.works-slider .work-card {
  flex: 0 0 100%;
  width: 100%;
  min-height: min(62vw,720px);
}
.works-slider .work-card img { min-height: inherit; }
.works-slider .work-card figcaption {
  left: clamp(26px,4vw,64px);
  right: clamp(26px,4vw,64px);
  bottom: clamp(28px,4vw,58px);
}
.works-slider .work-card figcaption strong {
  max-width: 760px;
  font-size: clamp(29px,4vw,61px);
}
.works-controls {
  min-height: 104px;
  display: grid;
  grid-template-columns: minmax(300px,.8fr) minmax(220px,1fr) auto;
  align-items: center;
  gap: 38px;
  border-top: 1px solid rgba(255,255,255,.2);
}
.works-controls > p {
  display: flex;
  align-items: center;
  gap: 22px;
  margin: 0;
  font-family: Arial, sans-serif;
}
.works-controls > p strong {
  color: var(--orange);
  font-size: 12px;
  letter-spacing: .08em;
}
.works-controls > p > span {
  color: rgba(255,255,255,.72);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.works-progress { height: 3px; background: rgba(255,255,255,.18); }
.works-progress span {
  display: block;
  width: 16.666%;
  height: 100%;
  background: var(--orange);
  transition: width .45s ease;
}
.works-buttons { display: flex; }
.works-buttons button {
  width: 70px;
  height: 70px;
  color: white;
  border: 1px solid rgba(255,255,255,.3);
  background: transparent;
  font-size: 24px;
  cursor: pointer;
  transition: color .2s, background .2s;
}
.works-buttons button + button { border-left: 0; }
.works-buttons button:hover,
.works-buttons button:focus-visible { color: var(--deep); background: var(--orange); }

.innovation { min-height: 760px; display: grid; grid-template-columns: 1.12fr .88fr; color: white; background: var(--purple); }
.innovation-image { min-height: 620px; overflow: hidden; }
.innovation-image img { height: 100%; object-fit: cover; }
.innovation-copy { align-self: center; padding: 90px 7vw 90px 6vw; }
.innovation-copy h2, .contact h2 { margin: 0; font-size: clamp(47px,5.8vw,86px); font-weight: 550; letter-spacing: -.06em; line-height: .94; }
.contact h2 { font-size: clamp(35px,4.35vw,65px); }
.innovation-copy > p:not(.kicker) { margin: 34px 0 28px; color: rgba(255,255,255,.75); font-size: 16px; line-height: 1.75; }
.innovation-copy ul { margin: 0 0 36px; padding: 0; list-style: none; border-top: 1px solid rgba(255,255,255,.22); }
.innovation-copy li { position: relative; padding: 15px 0 15px 20px; color: rgba(255,255,255,.8); border-bottom: 1px solid rgba(255,255,255,.22); font-size: 12px; }
.innovation-copy li::before { content: ""; position: absolute; left: 0; top: 20px; width: 6px; height: 6px; background: var(--orange); }

.commitment { background: #e9e4e0; }
.commitment-grid { padding-top: 88px; }
.commitment-pillars article { display: grid; grid-template-columns: 45px 120px 1fr; gap: 20px; padding: 26px 0; border-top: 1px solid var(--line); }
.commitment-pillars article:last-child { border-bottom: 1px solid var(--line); }
.commitment-pillars strong { color: var(--purple); font-size: 10px; }
.commitment-pillars h3 { margin: 0; font-size: 18px; font-weight: 650; }
.commitment-pillars p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.65; }

.contact { color: white; background: linear-gradient(125deg,rgba(90,22,135,.42),transparent 56%), var(--deep); }
.contact-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 9vw; padding-top: 82px; }
.contact-copy h2 {
  margin: 0; font-size: clamp(39px,4.35vw,65px); font-weight: 550;
  letter-spacing: -.055em; line-height: .98;
}
.contact-copy > p { max-width: 530px; margin: 30px 0 42px; color: rgba(255,255,255,.68); font-size: 15px; line-height: 1.8; }
.contact-details { display: flex; flex-direction: column; gap: 9px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.2); }
.contact-details span { color: rgba(255,255,255,.48); font-size: 9px; font-weight: 750; letter-spacing: .16em; text-transform: uppercase; }
.contact-details a { width: fit-content; max-width: 100%; overflow-wrap: anywhere; font-size: 15px; }
.contact-socials { display: flex; flex-direction: column; gap: 13px; margin-top: 38px; }
.contact-socials a { width: fit-content; max-width: 100%; padding-bottom: 5px; color: rgba(255,255,255,.7); border-bottom: 1px solid rgba(255,255,255,.4); font-size: 13px; overflow-wrap: anywhere; }
.contact-socials a:hover { color: white; border-color: white; }
.contact-form {
  min-width: 0; display: grid; grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 30px 24px; align-content: start; padding: 42px;
  border: 1px solid rgba(255,255,255,.16); background: rgba(255,255,255,.035);
}
.contact-form label { display: flex; flex-direction: column; gap: 11px; color: rgba(255,255,255,.58); font-size: 9px; font-weight: 750; letter-spacing: .13em; text-transform: uppercase; }
.contact-form input, .contact-form select, .contact-form textarea {
  display: block; width: 100%; max-width: 100%; min-height: 52px; padding: 12px 0; color: white;
  border: 0; border-bottom: 1px solid rgba(255,255,255,.34); border-radius: 0;
  outline: none; background: transparent; font: 16px/1.5 Arial, sans-serif;
}
.contact-form select { color-scheme: dark; cursor: pointer; }
.contact-form textarea { min-height: 120px; resize: vertical; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: #d4abe7; }
.contact-form--wide, .contact-form-footer { grid-column: 1 / -1; }
.contact-form-footer { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.contact-form-footer p { max-width: 330px; margin: 0; color: rgba(255,255,255,.48); font-size: 11px; line-height: 1.6; }
.contact-form button { border: 0; cursor: pointer; }

.location { background: #e9e4e0; }
.location-heading { display: grid; grid-template-columns: .9fr 1.1fr; gap: 7vw; padding: 80px 0 62px; }
.location-city { margin: 0 0 22px; color: var(--purple); font-size: 10px; font-weight: 750; letter-spacing: .15em; text-transform: uppercase; }
.location-heading h2 { margin: 0; font-size: clamp(42px,5.5vw,82px); font-weight: 550; letter-spacing: -.055em; line-height: .98; }
.location-addresses {
  align-self: end;
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: clamp(28px,3.5vw,58px);
}
.location-office { padding-top: 19px; border-top: 3px solid var(--purple); }
.location-office:nth-child(2) { border-color: var(--orange); }
.location-office > p {
  margin: 0 0 16px;
  color: var(--purple);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.location-office:nth-child(2) > p { color: #b75b0f; }
.location-heading address { color: var(--muted); font-size: 14px; font-style: normal; line-height: 1.85; }
.location-map { position: relative; height: min(58vw,650px); min-height: 440px; overflow: hidden; background: #d9d2cd; }
.location-map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(1) contrast(.9); }
.location-link {
  position: absolute; right: 22px; bottom: 22px; display: inline-flex; gap: 30px;
  padding: 18px 22px; color: white; background: var(--deep); font-size: 12px; font-weight: 700;
}
footer { display: grid; grid-template-columns: 1fr 1fr auto; align-items: end; gap: 40px; padding: 60px 7vw 46px; color: white; background: #100616; border-top: 1px solid rgba(255,255,255,.12); }
.brand--footer { width: fit-content; align-self: end; padding: 10px 14px; background: rgba(255,255,255,.96); transform: translateY(-8px); }
.brand-logo--footer { height: 244px; }
.footer-copy { display: flex; flex-direction: column; align-self: end; gap: 10px; padding-bottom: 8px; color: rgba(255,255,255,.7); font-size: 15px; }
.footer-copy p { margin: 0 0 12px; color: white; font-size: 19px; font-weight: 650; }
.footer-legal { margin: 0; color: rgba(255,255,255,.4); font-size: 10px; }

@keyframes hero-in { from { opacity:.7; transform:scale(1.05); } to { opacity:1; transform:scale(1); } }
@keyframes copy-in { from { opacity:0; transform:translateY(-39%); } to { opacity:1; transform:translateY(-45%); } }

@media (max-width: 980px) {
  .site-header { grid-template-columns: 1fr auto; height: 84px; }
  .desktop-nav, .header-cta { display: none; }
  .mobile-menu { display: block; position: relative; }
  .mobile-menu summary { width: 44px; height: 44px; display: grid; place-content: center; gap: 7px; border: 1px solid rgba(255,255,255,.5); border-radius: 50%; list-style: none; cursor: pointer; }
  .mobile-menu summary::-webkit-details-marker { display: none; }
  .mobile-menu summary span { width: 17px; height: 1px; background: white; }
  .mobile-menu nav { position: absolute; top: 55px; right: 0; width: min(290px,82vw); display: flex; flex-direction: column; padding: 20px; background: rgba(22,5,31,.98); }
  .mobile-menu nav a { padding: 13px 4px; border-bottom: 1px solid rgba(255,255,255,.12); font-size: 14px; }
  .brand-logo { height: 58px; }
  .company-copy, .capabilities-intro, .projects-heading, .portfolio-intro, .works-intro, .commitment-grid { grid-template-columns: 1fr; gap: 44px; }
  .company-detail, .capabilities-intro > p, .projects-heading > p, .portfolio-intro > p, .works-intro > p { max-width: 620px; }
  .work-card, .work-card--wide { grid-column: span 6; }
  .innovation { grid-template-columns: 1fr; }
  .innovation-image { height: 60vw; min-height: 430px; }
  .contact-grid, .location-heading { grid-template-columns: 1fr; gap: 52px; }
}

@media (max-width: 680px) {
  .site-header { padding: 0 22px; }
  .brand { padding: 3px 8px; border-radius: 8px; }
  .brand-logo { height: 53px; }
  .brand-logo--footer { height: 216px; }
  .hero { min-height: 760px; }
  .hero-content { left: 24px; top: 44%; width: calc(100% - 48px); }
  .hero h1 { max-width: 100%; font-size: clamp(48px,14.5vw,69px); line-height: .9; }
  .hero h1 span { margin-top: 7px; font-size: .94em; line-height: .94; }
  .hero h1 span::after { bottom: -14px; width: 58px; height: 3px; }
  .hero-lead { margin-top: 38px; font-size: 15px; line-height: 1.55; }
  .hero-cta { width: 100%; min-width: 0; }
  .hero-facts { left: 24px; right: 24px; bottom: 28px; display: grid; grid-template-columns: repeat(3,1fr); }
  .hero-facts div, .hero-facts div:first-child { min-width: 0; padding: 8px 8px; overflow-wrap: anywhere; }
  .hero-facts strong { font-size: 16.9px; }
  .hero-facts span { margin-top: 6px; font-size: 9.1px; line-height: 1.35; letter-spacing: .035em; }
  .section { padding: 82px 24px; }
  .company-copy { padding: 62px 0 74px; }
  .company-copy h2, .capabilities-intro h2, .projects-heading h2, .portfolio-intro h2, .works-intro h2, .commitment-grid > h2 { font-size: clamp(39px,12vw,56px); }
  .company-band { grid-template-columns: 1fr; gap: 22px; }
  .capabilities-intro, .projects-heading, .portfolio-intro, .works-intro { padding: 62px 0 50px; }
  .capability-item { grid-template-columns: 38px 1fr 40px; gap: 12px; }
  .capability-item p { grid-column: 2 / 4; }
  .project-grid { grid-template-columns: 1fr; grid-template-rows: none; }
  .project-card, .project-card--tall { grid-row: auto; height: 124vw; max-height: 610px; }
  .project-card:not(.project-card--tall) { height: 92vw; }
  .project-copy { left: 24px; right: 24px; bottom: 24px; }
  .portfolio-card {
    height: 124vw;
    min-height: 470px;
    max-height: 610px;
  }
  .portfolio-card img { object-position: center; }
  .portfolio-card figcaption {
    left: 22px;
    right: 22px;
    bottom: 24px;
  }
  .portfolio-card figcaption span { margin-bottom: 9px; font-size: 8px; }
  .portfolio-card figcaption strong { font-size: clamp(25px,7.6vw,34px); line-height: 1.04; }
  .portfolio-card figcaption p { margin-top: 12px; font-size: 12px; line-height: 1.45; }
  .portfolio-controls {
    grid-template-columns: 1fr auto;
    gap: 18px;
    padding: 18px 0;
  }
  .portfolio-controls > p {
    min-width: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 7px;
  }
  .portfolio-controls > p > span {
    max-width: 210px;
    line-height: 1.35;
    white-space: normal;
  }
  .portfolio-progress { grid-column: 1 / -1; grid-row: 1; }
  .portfolio-buttons button { width: 54px; height: 54px; }
  .works-grid { grid-template-columns: 1fr; }
  .work-card, .work-card--wide { grid-column: auto; min-height: 112vw; max-height: 580px; }
  .work-card:last-child { min-height: 76vw; }
  .innovation-image { height: 80vw; min-height: 360px; }
  .innovation-copy { padding: 82px 24px; }
  .commitment-pillars article { grid-template-columns: 35px 1fr; }
  .commitment-pillars p { grid-column: 2; }
  .contact { padding-inline: 20px; }
  .contact-grid { min-width: 0; padding-top: 52px; gap: 46px; }
  .contact-copy { min-width: 0; }
  .contact-copy h2 { max-width: 100%; font-size: clamp(43px,12vw,58px); line-height: .93; overflow-wrap: normal; }
  .contact-copy > p { margin: 25px 0 34px; font-size: 15px; line-height: 1.65; }
  .contact-details { gap: 7px; }
  .contact-details a { font-size: 14px; }
  .contact-socials { align-items: flex-start; gap: 16px; margin-top: 30px; }
  .contact-socials a { display: block; font-size: 12px; line-height: 1.45; }
  .contact-form {
    width: 100%; min-width: 0; grid-template-columns: minmax(0,1fr);
    gap: 23px; padding: 24px 18px; border-color: rgba(255,255,255,.2);
  }
  .contact-form label { width: 100%; min-width: 0; gap: 9px; font-size: 9px; line-height: 1.4; }
  .contact-form input, .contact-form select, .contact-form textarea {
    width: 100% !important; max-width: 100% !important; min-width: 0;
    min-height: 50px; padding: 11px 12px; color: white; border: 1px solid rgba(255,255,255,.28);
    border-radius: 2px; background: rgba(255,255,255,.06); font-size: 16px;
  }
  .contact-form select { padding-right: 36px; }
  .contact-form textarea { min-height: 140px; }
  .contact-form--wide, .contact-form-footer { grid-column: 1; width: 100%; min-width: 0; }
  .contact-form-footer { align-items: flex-start; flex-direction: column; }
  .contact-form-footer p { max-width: 100%; }
  .contact-form-footer .button { width: 100%; min-height: 58px; }
  .location-heading { padding: 60px 0 48px; }
  .location-addresses { grid-template-columns: 1fr; gap: 30px; }
  .location-heading address { font-size: 13px; line-height: 1.75; }
  .location-map { height: 118vw; min-height: 440px; }
  .location-link { right: 14px; bottom: 14px; left: 14px; justify-content: space-between; }
  footer { grid-template-columns: 1fr; padding: 55px 24px 36px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

/* Dirección editorial internacional: inspirada en la claridad y modularidad de grandes constructoras globales. */
body { font-family: Arial, Helvetica, sans-serif; }
.site-header {
  height: 88px; padding: 0 4vw; color: var(--deep); background: rgba(255,255,255,.97);
  border-bottom: 1px solid rgba(38,9,54,.14);
}
.brand { padding: 0; background: transparent; box-shadow: none; }
.brand-logo { height: 68px; }
.desktop-nav { gap: 34px; font-size: 11px; letter-spacing: .04em; text-transform: uppercase; }
.desktop-nav a::after { height: 3px; bottom: 0; background: var(--orange); }
.header-cta { color: var(--deep); text-transform: uppercase; letter-spacing: .04em; }
.header-cta span { border-color: rgba(38,9,54,.35); }

.hero { min-height: 820px; }
.hero-image { object-position: center; }
.hero-scrim {
  background: linear-gradient(90deg,rgba(18,5,27,.3),rgba(18,5,27,.02) 55%),
              linear-gradient(0deg,rgba(18,5,27,.68),transparent 55%);
}
.hero-grid { opacity: .13; }
.hero-content {
  left: 0; top: auto; bottom: 118px; width: min(760px,62vw);
  padding: 56px 6vw 52px; transform: none; background: rgba(38,9,54,.95);
  border-top: 6px solid var(--orange);
}
.hero-content .kicker { margin-bottom: 19px; color: #d8b6ea; font-size: 10px; }
.hero h1 {
  max-width: 680px; font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(58px,5.6vw,91px); font-weight: 800; letter-spacing: -.07em; line-height: .84;
}
.hero h1 span {
  margin-top: 11px; color: white; font-family: Arial, Helvetica, sans-serif;
  font-size: .92em; font-style: normal; font-weight: 300; letter-spacing: -.065em;
  text-shadow: none;
}
.hero h1 span::after { left: 2px; bottom: -18px; width: 86px; height: 5px; }
.hero-lead { max-width: 550px; margin: 42px 0 27px; font-size: 15px; }
.hero-cta {
  min-width: 270px; color: white; border: 1px solid rgba(255,255,255,.5);
  background: transparent;
}
.hero-cta:hover { color: var(--deep); background: white; }
.hero-facts {
  left: 0; right: 0; bottom: 0; min-height: 118px; justify-content: flex-end;
  padding: 0 4vw; color: var(--deep); background: white;
}
.hero-facts div { min-width: 215px; padding: 23px 28px; border-color: rgba(38,9,54,.18); }
.hero-facts div:first-child { min-width: 280px; }
.hero-facts strong { font-size: 23.4px; }
.hero-facts span { color: #615568; font-size: 13px; }
.hero-fact--nsh strong { color: var(--orange); }

.section-heading .kicker { color: var(--deep); font-family: Arial, sans-serif; font-weight: 800; }
.company-copy h2, .capabilities-intro h2, .projects-heading h2, .works-intro h2,
.commitment-grid > h2, .innovation-copy h2, .contact-copy h2, .location-heading h2 {
  font-family: Arial, Helvetica, sans-serif; font-weight: 750; letter-spacing: -.06em;
}
.company { background: #fff; }
.company-copy { padding-top: 74px; }
.company-band { border-color: rgba(38,9,54,.2); }
.company-band span { font-family: Arial, sans-serif; }

/* Segunda sección · declaración corporativa */
.company {
  position: relative;
  overflow: hidden;
  padding-top: 96px;
  padding-bottom: 0;
}
.company::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 31vw;
  height: 7px;
  background: var(--orange);
}
.company::after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 13px;
  right: 0;
  left: 0;
  height: 2px;
  background: var(--purple);
}
.company .section-heading {
  position: relative;
  z-index: 1;
}
.company-copy {
  position: relative;
  grid-template-columns: 1.35fr .65fr;
  gap: 8vw;
  padding: 92px 0 110px;
}
.company-copy::after {
  content: "M";
  position: absolute;
  right: -2vw;
  bottom: -68px;
  color: rgba(90,22,135,.045);
  font: 900 clamp(220px,27vw,480px)/.75 Arial, sans-serif;
  pointer-events: none;
}
.company-statement,
.company-detail {
  position: relative;
  z-index: 1;
}
.company-eyebrow {
  margin: 0 0 28px;
  color: var(--orange);
  font: 800 11px/1.4 Arial, sans-serif;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.company-copy h2 {
  max-width: 920px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(58px,6.6vw,112px);
  font-weight: 800;
  letter-spacing: -.072em;
  line-height: .88;
  text-transform: uppercase;
}
.company-copy h2 span {
  display: block;
  color: var(--purple);
  font-weight: 400;
  letter-spacing: -.065em;
  text-transform: none;
}
.company-detail {
  padding-top: 54px;
}
.company-detail p {
  margin: 0 0 20px;
  font-family: Arial, Helvetica, sans-serif;
}
.company-detail .company-lead {
  color: var(--deep);
  font-size: 20px;
  font-weight: 650;
  line-height: 1.5;
}
.company .text-link {
  gap: 58px;
  margin-top: 20px;
  padding: 13px 0;
  color: var(--deep);
  border-color: var(--orange);
  font-family: Arial, Helvetica, sans-serif;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.company-band {
  position: relative;
  z-index: 1;
  width: calc(100% + 14vw);
  margin-left: -7vw;
  padding: 0 7vw;
  border: 0;
  background: var(--deep);
}
.company-band article {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 24px;
  min-height: 145px;
  padding: 28px 3vw;
  color: white;
  border-left: 1px solid rgba(255,255,255,.2);
}
.company-band article:first-child {
  padding-left: 0;
  border-left: 0;
}
.company-band strong {
  color: var(--orange);
  font: 800 clamp(34px,3vw,52px)/1 Arial, sans-serif;
  letter-spacing: -.045em;
}
.company-band span {
  padding: 0;
  color: rgba(255,255,255,.75);
  border: 0;
  font-size: 10px;
  line-height: 1.6;
  letter-spacing: .09em;
}

@media (max-width: 980px) {
  .company-copy {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .company-detail {
    max-width: 650px;
    padding-top: 0;
  }
}

@media (max-width: 680px) {
  .company {
    padding: 68px 24px 0;
  }
  .company::before {
    right: 0;
    left: 0;
    width: auto;
    height: 5px;
  }
  .company::after {
    top: 13px;
    height: 2px;
  }
  .company-copy {
    gap: 38px;
    padding: 58px 0 70px;
  }
  .company-copy::after {
    right: -70px;
    bottom: -25px;
    font-size: 245px;
  }
  .company-eyebrow {
    margin-bottom: 21px;
  }
  .company-copy h2 {
    max-width: 100%;
    font-size: clamp(42px,11.7vw,56px);
    letter-spacing: -.078em;
    line-height: .91;
    overflow-wrap: normal;
  }
  .company-copy h2 span { letter-spacing: -.072em; }
  .company-statement,
  .company-detail { min-width: 0; max-width: 100%; }
  .company-detail .company-lead {
    font-size: 18px;
  }
  .company-detail p { overflow-wrap: break-word; }
  .company-band {
    width: calc(100% + 48px);
    margin-left: -24px;
    grid-template-columns: 1fr;
    padding: 18px 24px;
  }
  .company-band article,
  .company-band article:first-child {
    min-height: 96px;
    padding: 20px 0;
    border-left: 0;
    border-top: 1px solid rgba(255,255,255,.2);
  }
  .company-band article:first-child {
    border-top: 0;
  }
  .company-band strong {
    min-width: 58px;
  }
}
.capabilities { background: var(--deep); }
.capabilities-intro h2 span { color: #c798df; font-weight: 400; }
.capability-showcase {
  border-top: 1px solid rgba(255,255,255,.2);
  border-bottom: 1px solid rgba(255,255,255,.2);
}
.capability-stage {
  position: relative;
  min-height: 410px;
  display: grid;
  grid-template-columns: 120px minmax(0,1fr);
  align-items: center;
  gap: 4vw;
  overflow: hidden;
  padding: 52px 5vw 54px 0;
}
.capability-number {
  align-self: start;
  margin: 6px 0 0;
  color: var(--orange);
  font: 800 13px/1 Arial, sans-serif;
  letter-spacing: .1em;
}
.capability-number span:last-child { color: rgba(255,255,255,.4); }
.capability-stage-copy { position: relative; z-index: 2; max-width: 970px; }
.capability-category {
  margin: 0 0 18px;
  color: #c798df;
  font: 800 10px/1.4 Arial, sans-serif;
  letter-spacing: .17em;
  text-transform: uppercase;
}
.capability-stage h3 {
  margin: 0;
  font: 800 clamp(52px,7vw,112px)/.9 Arial, Helvetica, sans-serif;
  letter-spacing: -.07em;
  text-transform: uppercase;
}
.capability-stage-copy > p:last-child {
  max-width: 720px;
  margin: 30px 0 0;
  color: rgba(255,255,255,.68);
  font: 400 16px/1.75 Arial, sans-serif;
}
.capability-mark {
  position: absolute;
  right: -28px;
  bottom: -74px;
  color: rgba(255,255,255,.035);
  font: 900 390px/.75 Arial, sans-serif;
}
.capability-controls {
  min-height: 98px;
  display: grid;
  grid-template-columns: minmax(180px,1fr) minmax(250px,.6fr) auto;
  align-items: center;
  gap: 38px;
  border-top: 1px solid rgba(255,255,255,.2);
}
.capability-progress {
  height: 3px;
  overflow: hidden;
  background: rgba(255,255,255,.18);
}
.capability-progress span {
  display: block;
  width: 14.285%;
  height: 100%;
  background: var(--orange);
  transition: width .45s ease;
}
.capability-controls > p {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin: 0;
  font: 800 11px/1.2 Arial, sans-serif;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.capability-controls small { color: rgba(255,255,255,.4); font-size: 8px; font-weight: 700; }
.capability-buttons { display: flex; }
.capability-buttons button {
  width: 70px;
  height: 70px;
  color: white;
  border: 1px solid rgba(255,255,255,.3);
  background: transparent;
  font-size: 24px;
  cursor: pointer;
  transition: color .2s, background .2s;
}
.capability-buttons button + button { border-left: 0; }
.capability-buttons button:hover,
.capability-buttons button:focus-visible { color: var(--deep); background: var(--orange); }
.capability-stage.is-changing-forward .capability-stage-copy { animation: capability-forward .42s ease both; }
.capability-stage.is-changing-back .capability-stage-copy { animation: capability-back .42s ease both; }
@keyframes capability-forward {
  from { opacity: 0; transform: translateX(48px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes capability-back {
  from { opacity: 0; transform: translateX(-48px); }
  to { opacity: 1; transform: translateX(0); }
}
/* La frase principal entra desde la izquierda al cargar la portada. */
.hero-content { animation: hero-copy-slide 1s .12s cubic-bezier(.2,.75,.2,1) both; }
@keyframes hero-copy-slide {
  from { opacity: 0; transform: translate(-110px,-45%); }
  to { opacity: 1; transform: translate(0,-45%); }
}
.projects { background: #f5f3f0; }
.project-grid { gap: 8px; }
.project-copy h3, .work-card figcaption strong { font-family: Arial, sans-serif; font-weight: 750; }
.innovation { background: #5a1687; }
.commitment { background: white; }
.contact-form { background: rgba(255,255,255,.055); }
.location { background: #ece8e4; }

@media (max-width: 980px) {
  .site-header { height: 82px; }
  .mobile-menu summary { border-color: rgba(38,9,54,.35); }
  .mobile-menu summary span { background: var(--deep); }
  .hero-content { width: min(730px,78vw); }
}

@media (max-width: 680px) {
  .site-header { padding-inline: 20px; background: white; }
  .brand-logo { height: 58px; }
  .hero { min-height: 800px; height: 100svh; }
  .hero-image { object-position: 68% center; }
  .hero-scrim { background: linear-gradient(90deg,rgba(18,5,27,.42),rgba(18,5,27,.08)), linear-gradient(0deg,rgba(18,5,27,.68),transparent 58%); }
  .hero-content {
    left: 0; right: 0; bottom: 154px; width: auto;
    padding: 34px 23px 30px; border-top-width: 4px;
  }
  .hero-content .kicker { font-size: 8px; }
  .hero h1 {
    max-width: 100%;
    font-size: clamp(40px,11.5vw,50px);
    letter-spacing: -.075em;
    line-height: .9;
  }
  .hero h1 span { margin-top: 8px; font-size: .9em; }
  .hero h1 span::after { bottom: -12px; width: 60px; height: 3px; }
  .hero-lead { margin: 31px 0 22px; font-size: 13px; }
  .hero-cta { min-height: 52px; }
  .hero-facts {
    left: 0; right: 0; bottom: 0; min-height: 154px;
    width: 100%; max-width: 100%; display: grid;
    grid-template-columns: repeat(3,minmax(0,1fr));
    padding: 0;
    overflow: hidden;
  }
  .hero-facts div, .hero-facts div:first-child {
    width: auto; min-width: 0;
    padding: 19px 9px;
    overflow: hidden;
  }
  .hero-facts strong { font-size: 15.5px; overflow-wrap: anywhere; }
  .hero-facts span { font-size: 7.8px; line-height: 1.35; letter-spacing: .015em; overflow-wrap: anywhere; }
  .hero-content { animation-name: hero-copy-slide-mobile; }
  @keyframes hero-copy-slide-mobile {
    from { opacity: 0; transform: translateX(-70px); }
    to { opacity: 1; transform: translateX(0); }
  }
  .capabilities-intro { gap: 28px; }
  .capabilities-intro h2 { font-size: clamp(42px,11.5vw,54px); }
  .capability-stage {
    min-height: 420px;
    grid-template-columns: 1fr;
    align-content: start;
    gap: 34px;
    padding: 38px 0 42px;
  }
  .capability-number { margin: 0; }
  .capability-stage h3 {
    max-width: 100%;
    font-size: clamp(35px,10.2vw,48px);
    letter-spacing: -.065em;
    line-height: .92;
    overflow-wrap: break-word;
  }
  .capability-stage-copy > p:last-child { margin-top: 24px; font-size: 14px; }
  .capability-mark { right: -42px; bottom: -40px; font-size: 250px; }
  .capability-controls {
    grid-template-columns: 1fr auto;
    gap: 22px;
    padding: 20px 0;
  }
  .capability-progress { grid-column: 1 / -1; }
  .capability-buttons button { width: 54px; height: 54px; }
  .works-slider .work-card {
    min-height: 118vw;
    max-height: 560px;
  }
  .works-slider .work-card img { object-position: center; }
  .works-slider .work-card figcaption strong { font-size: clamp(25px,7.6vw,34px); }
  .works-controls {
    grid-template-columns: 1fr auto;
    gap: 18px;
    padding: 18px 0;
  }
  .works-controls > p {
    min-width: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 7px;
  }
  .works-controls > p > span {
    max-width: 200px;
    line-height: 1.35;
  }
  .works-progress { grid-column: 1 / -1; grid-row: 1; }
  .works-buttons button { width: 54px; height: 54px; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-content,
  .capability-stage.is-changing-forward .capability-stage-copy,
  .capability-stage.is-changing-back .capability-stage-copy { animation: none; }
}

/* Contraste de navegación y títulos sobre fondos oscuros */
.section-heading--light .kicker,
.capabilities .section-heading .kicker,
.works .section-heading .kicker,
.contact .section-heading .kicker {
  color: #fff;
}
.section-heading--light .section-index,
.capabilities .section-heading .section-index,
.works .section-heading .section-index,
.contact .section-heading .section-index {
  color: rgba(255,255,255,.7);
}
.mobile-menu nav,
.mobile-menu nav a {
  color: #fff;
}

/* Iconos sociales y legibilidad del selector */
.social-icon {
  position: relative;
  flex: 0 0 auto;
  width: 17px;
  height: 17px;
  display: inline-block;
  vertical-align: -4px;
}
.social-icon--instagram {
  border: 2px solid white;
  border-radius: 5px;
  background: linear-gradient(145deg,#6a35c3 8%,#d52e88 52%,#f59b28 92%);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.15);
}
.social-icon--instagram::before {
  content: "";
  position: absolute;
  inset: 3px;
  border: 1.5px solid white;
  border-radius: 50%;
}
.social-icon--instagram::after {
  content: "";
  position: absolute;
  top: 2px;
  right: 2px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: white;
}
.social-icon--youtube {
  width: 19px;
  border-radius: 5px;
  background: #ff0033;
}
.social-icon--youtube::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 5px;
  border-left: 6px solid white;
  border-top: 3.5px solid transparent;
  border-bottom: 3.5px solid transparent;
}
.works-link,
.contact-socials a { align-items: center; }
.contact-form select {
  color: #fff;
  -webkit-text-fill-color: #fff;
  opacity: 1;
}
.contact-form select option {
  color: var(--deep);
  background: #fff;
}

/* Innovación NSH · presentación editorial */
.innovation {
  min-height: 900px;
  grid-template-columns: 1fr 1fr;
  background: var(--deep);
}
.innovation-image {
  position: relative;
  min-height: 900px;
}
.innovation-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg,rgba(19,5,27,.66),transparent 48%);
}
.innovation-image img {
  object-position: center;
  transition: transform 1s cubic-bezier(.2,.7,.2,1);
}
.innovation:hover .innovation-image img { transform: scale(1.025); }
.innovation-image-label {
  position: absolute;
  z-index: 2;
  left: 5vw;
  right: 5vw;
  bottom: 58px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  padding-top: 24px;
  color: white;
  border-top: 1px solid rgba(255,255,255,.45);
  font-family: Arial, sans-serif;
}
.innovation-image-label span {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.innovation-image-label strong {
  color: var(--orange);
  font-size: clamp(54px,6vw,96px);
  letter-spacing: -.07em;
  line-height: .75;
}
.innovation-nsh-logo {
  width: clamp(105px,10vw,158px);
  height: auto;
  padding: 9px 12px;
  object-fit: contain;
  background: rgba(255,255,255,.95);
}
.innovation-copy {
  position: relative;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 76px 6vw;
  overflow: hidden;
}
.innovation-copy::after {
  content: "NSH";
  position: absolute;
  right: -30px;
  bottom: -25px;
  color: rgba(255,255,255,.025);
  font: 900 clamp(150px,16vw,300px)/.75 Arial, sans-serif;
  pointer-events: none;
}
.innovation-heading {
  display: flex;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,.2);
}
.innovation-heading .kicker { margin: 0; color: white; }
.innovation-heading > p:last-child {
  margin: 0;
  color: rgba(255,255,255,.55);
  font: 400 10px/1 Arial, sans-serif;
}
.innovation-status {
  width: fit-content;
  margin: 42px 0 22px;
  padding: 9px 12px;
  color: var(--deep);
  background: var(--orange);
  font: 800 9px/1.2 Arial, sans-serif;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.innovation-copy h2 {
  position: relative;
  z-index: 1;
  max-width: 720px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(49px,5.4vw,88px);
  font-weight: 800;
  letter-spacing: -.072em;
  line-height: .9;
  text-transform: uppercase;
}
.innovation-copy h2 span {
  display: block;
  color: #c798df;
  font-weight: 350;
  text-transform: none;
}
.innovation-copy .innovation-lead {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 34px 0 32px;
  color: rgba(255,255,255,.72);
  font: 400 15px/1.75 Arial, sans-serif;
}
.innovation-protection {
  position: relative;
  z-index: 1;
  width: fit-content;
  margin: -8px 0 30px;
  padding: 11px 14px;
  color: white;
  border: 1px solid rgba(255,255,255,.38);
  font: 800 9px/1.35 Arial, sans-serif;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.innovation-pillars {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  margin-bottom: 34px;
  border-block: 1px solid rgba(255,255,255,.2);
}
.innovation-pillars article {
  min-width: 0;
  padding: 20px 18px;
  border-left: 1px solid rgba(255,255,255,.2);
}
.innovation-pillars article:first-child { padding-left: 0; border-left: 0; }
.innovation-pillars strong,
.innovation-pillars span { display: block; font-family: Arial, sans-serif; }
.innovation-pillars strong { margin-bottom: 17px; color: var(--orange); font-size: 10px; }
.innovation-pillars span { color: white; font-size: 13px; font-weight: 800; text-transform: uppercase; }
.innovation-pillars p {
  margin: 9px 0 0;
  color: rgba(255,255,255,.55);
  font: 400 10px/1.55 Arial, sans-serif;
}
.innovation-cta {
  position: relative;
  z-index: 1;
  width: min(100%,330px);
  color: var(--deep);
  background: white;
  font-family: Arial, sans-serif;
  text-transform: uppercase;
}
.nsh-video-card {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(175px, 42%) 1fr;
  gap: 0;
  width: 100%;
  margin: 0 0 24px;
  overflow: hidden;
  color: white;
  border: 1px solid rgba(255,255,255,.24);
  background: rgba(255,255,255,.075);
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.nsh-video-card:hover,
.nsh-video-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255,255,255,.6);
  background: rgba(255,255,255,.11);
}
.nsh-video-thumb { position: relative; min-height: 145px; overflow: hidden; }
.nsh-video-thumb > img { width: 100%; height: 100%; object-fit: cover; }
.nsh-video-play {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 54px;
  height: 38px;
  display: grid;
  place-items: center;
  padding-left: 3px;
  color: white;
  background: #ff0033;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,.35);
  font: 700 17px/1 Arial, sans-serif;
  transform: translate(-50%,-50%);
}
.nsh-video-copy { display: flex; flex-direction: column; justify-content: center; padding: 18px 22px; font-family: Arial, sans-serif; }
.nsh-video-copy small { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; color: rgba(255,255,255,.72); font-size: 9px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.nsh-video-copy strong { font-size: 18px; line-height: 1.2; }
.nsh-video-copy > span { margin-top: 7px; color: rgba(255,255,255,.64); font-size: 11px; line-height: 1.45; }
.nsh-video-copy b { margin-top: 13px; color: white; font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }

@media (max-width: 980px) {
  .innovation { grid-template-columns: 1fr; }
  .innovation-image { min-height: 65vw; }
}

@media (max-width: 680px) {
  .innovation { min-height: 0; }
  .innovation-image {
    height: 92vw;
    min-height: 360px;
  }
  .innovation-image-label { left: 24px; right: 24px; bottom: 28px; }
  .innovation-copy { padding: 64px 24px 72px; }
  .innovation-status { margin-top: 34px; }
  .innovation-copy h2 {
    max-width: 100%;
    font-size: clamp(36px,9.8vw,46px);
    letter-spacing: -.065em;
    line-height: .92;
  }
  .innovation-copy .innovation-lead { font-size: 14px; }
  .innovation-protection {
    width: 100%;
    margin: -5px 0 26px;
    font-size: 8px;
    line-height: 1.5;
  }
  .innovation-pillars { grid-template-columns: 1fr; }
  .innovation-pillars article,
  .innovation-pillars article:first-child {
    display: grid;
    grid-template-columns: 32px 82px 1fr;
    gap: 10px;
    align-items: start;
    padding: 18px 0;
    border-left: 0;
    border-top: 1px solid rgba(255,255,255,.16);
  }
  .innovation-pillars article:first-child { border-top: 0; }
  .innovation-pillars strong { margin: 2px 0 0; }
  .innovation-pillars p { margin: 0; }
  .innovation-cta { width: 100%; }
  .nsh-video-card { grid-template-columns: 1fr; margin-bottom: 22px; }
  .nsh-video-thumb { aspect-ratio: 16 / 9; min-height: 0; }
  .nsh-video-copy { padding: 18px 20px 20px; }
  .nsh-video-copy strong { font-size: 17px; }
  .innovation-image-label {
    align-items: center;
    gap: 16px;
  }
  .innovation-nsh-logo {
    width: min(32vw,125px);
    padding: 7px 9px;
  }
}

/* Cierre corporativo: el logo del pie conserva una escala propia,
   independiente del tamaño utilizado en la cabecera. */
footer .brand-logo--footer { height: 136px; }

@media (max-width: 680px) {
  footer .brand-logo--footer { height: 116px; }
}

/* Portada dinámica con imágenes propias de Moralta */
.hero-image {
  opacity: 0;
  transform: scale(1.025);
  animation: none;
  transition: opacity .9s ease, transform 3.8s ease;
}
.hero-image.is-active {
  opacity: 1;
  transform: scale(1);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.hero-actions .hero-cta {
  min-width: 220px;
  font-family: Arial, Helvetica, sans-serif;
  text-transform: uppercase;
}
.hero-actions .hero-cta--primary {
  color: var(--deep);
  border-color: white;
  background: white;
}
.hero-actions .hero-cta--primary:hover {
  color: white;
  background: var(--orange);
  border-color: var(--orange);
}
.hero-actions .hero-cta--secondary {
  color: white;
  border-color: rgba(255,255,255,.55);
  background: transparent;
}
.hero-actions .hero-cta--secondary:hover {
  color: var(--deep);
  background: white;
}

/* Proceso de trabajo */
.process { color: var(--deep); background: white; }
.process-intro {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 9vw;
  padding: 86px 0 72px;
}
.process-intro h2 {
  margin: 0;
  font: 800 clamp(42px,5.5vw,82px)/.96 Arial, Helvetica, sans-serif;
  letter-spacing: -.065em;
}
.process-intro h2 span { color: var(--purple); font-weight: 400; }
.process-intro > p {
  max-width: 470px;
  align-self: end;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(4,minmax(0,1fr));
  border-block: 1px solid var(--line);
}
.process-steps article {
  min-width: 0;
  min-height: 290px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 52px;
  padding: 28px 28px 34px;
  border-left: 1px solid var(--line);
}
.process-steps article:first-child { padding-left: 0; border-left: 0; }
.process-steps strong {
  color: var(--orange);
  font-size: 11px;
  letter-spacing: .1em;
}
.process-steps h3 {
  margin: 0 0 16px;
  font-size: clamp(20px,1.8vw,28px);
  line-height: 1.05;
  letter-spacing: -.035em;
}
.process-steps p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.capability-mobile-title { display: none; }

@media (max-width: 980px) {
  .process-intro { grid-template-columns: 1fr; gap: 38px; }
  .process-intro > p { max-width: 620px; }
  .process-steps { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .process-steps article:nth-child(3) { border-left: 0; }
  .process-steps article:nth-child(n+3) { border-top: 1px solid var(--line); }
}

@media (max-width: 680px) {
  .hero { min-height: 870px; }
  .hero-image { object-position: center; }
  .hero-image:nth-of-type(1) { object-position: 68% center; }
  .hero-content { bottom: 154px; padding-bottom: 24px; }
  .hero-lead { max-width: 330px; font-size: 12px; line-height: 1.5; }
  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 9px;
  }
  .hero-actions .hero-cta {
    width: 100%;
    min-width: 0;
    min-height: 47px;
    padding-inline: 17px;
    font-size: 11px;
  }

  .capabilities-intro { display: none; }
  .capability-showcase {
    margin-top: 24px;
    border-top: 0;
  }
  .capability-stage {
    min-height: 390px;
    grid-template-columns: minmax(118px,.72fr) minmax(0,1.28fr);
    grid-template-rows: auto 1fr;
    align-content: start;
    align-items: start;
    gap: 22px 18px;
    padding: 34px 0 40px;
  }
  .capability-number {
    grid-column: 1;
    grid-row: 1;
    margin: 4px 0 0;
  }
  .capability-mobile-title {
    grid-column: 1;
    grid-row: 2;
    display: block;
    align-self: start;
    margin: 0;
    color: white;
    font: 800 10px/1.35 Arial, Helvetica, sans-serif;
    letter-spacing: .015em;
    text-transform: uppercase;
    white-space: normal;
  }
  .capability-mobile-title span {
    display: block;
    margin-top: 5px;
    color: #c798df;
  }
  .capability-stage-copy {
    grid-column: 2;
    grid-row: 1 / span 2;
    min-width: 0;
  }
  .capability-stage h3 {
    max-width: 100%;
    font-size: clamp(30px,8.5vw,38px);
    line-height: .94;
  }
  .capability-stage-copy > p:last-child {
    margin-top: 24px;
    font-size: 12px;
    line-height: 1.62;
  }
  .capability-mark { right: -58px; bottom: -28px; font-size: 205px; }

  .process-intro {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 60px 0 50px;
  }
  .process-intro h2 { font-size: clamp(40px,11.5vw,53px); }
  .process-intro > p { font-size: 14px; line-height: 1.7; }
  .process-steps { grid-template-columns: 1fr; }
  .process-steps article,
  .process-steps article:first-child {
    min-height: 0;
    display: grid;
    grid-template-columns: 38px 1fr;
    gap: 20px;
    padding: 26px 0;
    border-left: 0;
    border-top: 1px solid var(--line);
  }
  .process-steps article:first-child { border-top: 0; }
  .process-steps h3 { font-size: 22px; }

  footer { padding: 46px 24px 32px; }
  footer .brand-logo--footer { height: 88px; }
  .footer-copy { gap: 8px; font-size: 13px; }
  .footer-copy p { margin-bottom: 8px; font-size: 16px; line-height: 1.25; }
  .footer-legal { font-size: 9px; }
}

/* Ajustes de presentación aprobados · escritorio y móvil */
.site-header {
  background: rgba(211, 211, 210, .98);
}

.company > .section-heading,
.capabilities > .section-heading,
.process > .section-heading,
.projects > .section-heading,
.portfolio > .section-heading,
.works > .section-heading,
.commitment > .section-heading,
.contact > .section-heading,
.location > .section-heading {
  margin-inline: -7vw;
  padding: 22px 7vw;
  border-bottom: 0;
  background: #34363a;
}

.company > .section-heading .kicker,
.capabilities > .section-heading .kicker,
.process > .section-heading .kicker,
.projects > .section-heading .kicker,
.portfolio > .section-heading .kicker,
.works > .section-heading .kicker,
.commitment > .section-heading .kicker,
.contact > .section-heading .kicker,
.location > .section-heading .kicker {
  color: white;
}

.company > .section-heading .section-index,
.capabilities > .section-heading .section-index,
.process > .section-heading .section-index,
.projects > .section-heading .section-index,
.portfolio > .section-heading .section-index,
.works > .section-heading .section-index,
.commitment > .section-heading .section-index,
.contact > .section-heading .section-index,
.location > .section-heading .section-index {
  color: rgba(255, 255, 255, .72);
}

@media (min-width: 981px) {
  .hero-content {
    width: min(830px, 62vw);
    padding-inline: 4vw;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(56px, 4.75vw, 82px);
  }

  .capabilities {
    display: grid;
    grid-template-columns: minmax(360px, .78fr) minmax(0, 1.22fr);
    column-gap: 6vw;
  }

  .capabilities > .section-heading {
    grid-column: 1 / -1;
  }

  .capabilities-intro {
    grid-column: 1;
    display: block;
    padding: 72px 0 98px;
  }

  .capabilities-intro h2 {
    font-size: clamp(42px, 4vw, 68px);
    line-height: .94;
  }

  .capabilities-intro > p {
    max-width: 470px;
    margin-top: 34px;
  }

  .capability-showcase {
    grid-column: 2;
    margin-top: 72px;
    margin-bottom: 98px;
  }

  .capability-stage {
    min-height: 370px;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 2.2vw;
    padding: 44px 2vw 48px 0;
  }

  .capability-stage h3 {
    font-size: clamp(48px, 5vw, 84px);
  }

  .capability-stage-copy > p:last-child {
    max-width: 590px;
  }

  .capability-controls {
    grid-template-columns: minmax(150px, 1fr) minmax(180px, .55fr) auto;
    gap: 24px;
  }
}

@media (max-width: 680px) {
  .hero {
    min-height: 1025px;
    height: 1025px;
  }

  .hero-image {
    top: 82px;
    bottom: auto;
    height: 310px;
    object-fit: cover;
    object-position: center;
  }

  .hero-image:nth-of-type(1) {
    object-position: 68% center;
  }

  .hero-scrim,
  .hero-grid {
    top: 82px;
    bottom: auto;
    height: 310px;
  }

  .hero-content {
    top: 392px;
    bottom: auto;
    min-height: 479px;
  }

  .company > .section-heading,
  .capabilities > .section-heading,
  .process > .section-heading,
  .projects > .section-heading,
  .portfolio > .section-heading,
  .works > .section-heading,
  .commitment > .section-heading,
  .contact > .section-heading,
  .location > .section-heading {
    margin-inline: -24px;
    padding: 20px 24px;
  }

  .capability-stage {
    grid-template-columns: minmax(96px, .55fr) minmax(0, 1.45fr);
    gap: 22px 16px;
  }

  .capability-stage h3 {
    font-size: clamp(24px, 7.2vw, 30px);
    letter-spacing: -.055em;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
  }
}

.works,
footer {
  background: var(--deep);
}
