:root {
  --black: #080808;
  --white: #ffffff;
  --cream: #eee4d5;
  --light: #f6f4f0;
  --text: #101010;
  --muted: #686868;
  --border: rgba(0,0,0,.13);
  --max-width: 1380px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: var(--white);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; }
a { color: inherit; }
.container { width: min(90%, var(--max-width)); margin-inline: auto; }
.narrow { max-width: 920px; }

.site-header {
  position: absolute;
  inset: 0 0 auto 0;
  width: 100%;
  z-index: 100;
}
.nav-container {
  height: 100px;
  display: flex;
  align-items: center;
  gap: 34px;
}
.brand { text-decoration: none; display: inline-flex; align-items: center; margin-right: auto; }
.custom-logo { width: 74px; max-height: 74px; object-fit: contain; }
.brand-text {
  color: white;
  font-size: 26px;
  font-weight: 700;
  line-height: .8;
  letter-spacing: -.08em;
  text-transform: uppercase;
}
.desktop-nav ul {
  display: flex;
  gap: 34px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.desktop-nav a,
.nav-cta {
  color: white;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .08em;
}
.desktop-nav a { opacity: .86; }
.desktop-nav a:hover { opacity: 1; }
.nav-cta {
  padding: 14px 29px;
  border: 1px solid rgba(255,255,255,.45);
  margin-left: 18px;
}
.mobile-toggle {
  display: none;
  appearance: none;
  border: 0;
  background: transparent;
  width: 40px;
  padding: 8px;
}
.mobile-toggle span {
  display: block;
  height: 1px;
  background: white;
  margin: 6px 0;
}
.mobile-menu {
  background: var(--black);
  padding: 15px 5% 35px;
}
.mobile-menu ul { list-style: none; padding: 0; margin: 0; }
.mobile-menu li { border-top: 1px solid rgba(255,255,255,.12); }
.mobile-menu a {
  color: white;
  text-decoration: none;
  display: block;
  padding: 16px 0;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: .08em;
}
.mobile-cta {
  border: 1px solid rgba(255,255,255,.35);
  padding: 14px 18px !important;
  margin-top: 16px;
  display: inline-block !important;
}

.hero {
  min-height: 680px;
  background: var(--black);
  color: var(--white);
  overflow: hidden;
}
.hero-grid {
  min-height: 680px;
  display: grid;
  grid-template-columns: 56% 44%;
  align-items: center;
}
.hero-content { padding-top: 85px; position: relative; z-index: 2; }
.eyebrow,
.section-label {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-weight: 600;
  margin-bottom: 26px;
}
.hero h1 {
  font-size: clamp(48px, 5vw, 80px);
  line-height: .98;
  letter-spacing: -.045em;
  margin: 0 0 28px;
  max-width: 860px;
}
.hero p {
  max-width: 520px;
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255,255,255,.74);
}
.hero-art { position: relative; height: 100%; }
.circle-outline {
  position: absolute;
  width: 440px;
  height: 440px;
  border: 1px solid var(--cream);
  border-radius: 50%;
  bottom: -120px;
  left: 2%;
}
.circle-fill {
  position: absolute;
  width: 275px;
  height: 275px;
  border-radius: 50%;
  background: var(--cream);
  bottom: -72px;
  left: 34%;
}
.dot-grid {
  position: absolute;
  width: 150px;
  height: 190px;
  right: 3%;
  top: 25%;
  background-image: radial-gradient(var(--cream) 2px, transparent 2px);
  background-size: 23px 23px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 42px;
  padding: 16px 28px;
  margin-top: 25px;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .11em;
  transition: transform .2s ease, opacity .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-light { background: var(--cream); color: var(--black); }
.button-dark { background: var(--black); color: var(--white); }

.brands {
  padding: 42px 0 50px;
  background: var(--light);
}
.brands .section-label { margin-bottom: 28px; }
.brand-grid {
  display: grid;
  grid-template-columns: repeat(8, minmax(0,1fr));
  gap: 24px 34px;
  align-items: center;
}
.brand-grid img {
  width: 100%;
  max-height: 48px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: .72;
}
.brand-placeholder {
  min-height: 48px;
  display: grid;
  place-items: center;
  text-align: center;
  color: #555;
  font-size: 12px;
  font-weight: 600;
}

.services { padding: 120px 0; }
.services-layout {
  display: grid;
  grid-template-columns: 34% 66%;
  gap: 85px;
}
.section-intro h2,
.projects h2,
.method h2 {
  font-size: clamp(40px, 4vw, 64px);
  line-height: 1.05;
  letter-spacing: -.04em;
  margin: 0 0 26px;
}
.section-intro p {
  color: var(--muted);
  line-height: 1.8;
  font-size: 14px;
  max-width: 480px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.services-grid article {
  padding: 8px 28px 20px;
  border-left: 1px solid var(--border);
}
.service-number { font-size: 11px; font-weight: 600; }
.services-grid h3 {
  font-size: 16px;
  line-height: 1.25;
  margin: 58px 0 16px;
}
.services-grid p {
  margin: 0;
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.7;
}

.projects {
  padding: 110px 0;
  background: #f1eee8;
}
.projects-heading { max-width: 670px; }
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 48px;
}
.project { text-decoration: none; display: block; }
.project img,
.project-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  background: #111;
}
.project-info { padding-top: 16px; }
.project-info span {
  display: block;
  text-transform: uppercase;
  font-size: 9px;
  letter-spacing: .12em;
  color: var(--muted);
  min-height: 16px;
}
.project-info h3 {
  margin: 5px 0 0;
  font-size: 21px;
  line-height: 1.15;
}
.project-empty {
  grid-column: 1 / -1;
  border-top: 1px solid var(--border);
  padding: 30px 0;
  color: var(--muted);
}

.method { padding: 120px 0; }
.method-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  margin-top: 58px;
}
.method-grid > div {
  border-top: 1px solid var(--black);
  padding: 23px 18px 10px;
}
.method-grid span { font-size: 10px; font-weight: 600; }
.method-grid h3 { margin: 48px 0 0; font-size: 16px; }

.contact-cta {
  padding: 125px 0;
  background: var(--black);
  color: var(--white);
}
.section-label-light { color: rgba(255,255,255,.68); }
.contact-cta h2 {
  font-size: clamp(58px, 7vw, 108px);
  line-height: .92;
  letter-spacing: -.055em;
  margin: 0;
}
.contact-cta p {
  max-width: 530px;
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255,255,255,.68);
  margin-top: 28px;
}

.site-footer {
  background: var(--black);
  color: rgba(255,255,255,.72);
  border-top: 1px solid rgba(255,255,255,.12);
  padding: 36px 0;
}
.footer-grid {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  font-size: 12px;
}
.footer-grid strong { color: white; }
.footer-grid p { margin: 4px 0 0; }
.footer-grid div:last-child {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-grid a { text-decoration: none; }

.default-page {
  padding: 160px 0 100px;
  min-height: 70vh;
}
.default-page h1 {
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1;
  letter-spacing: -.045em;
}
.default-page .wp-post-image { margin: 30px 0; }

@media (max-width: 1100px) {
  .brand-grid { grid-template-columns: repeat(4, 1fr); }
  .services-layout { grid-template-columns: 1fr; gap: 60px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .desktop-nav, .nav-cta { display: none; }
  .mobile-toggle { display: block; }
  .hero { min-height: 740px; position: relative; }
  .hero-grid { grid-template-columns: 1fr; min-height: 740px; }
  .hero-content { padding-top: 135px; }
  .hero-art {
    position: absolute;
    inset: auto 0 0 auto;
    width: 100%;
    height: 380px;
    opacity: .72;
  }
  .hero h1 { font-size: clamp(45px, 10vw, 68px); }
  .projects-grid { grid-template-columns: 1fr; }
  .method-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 600px) {
  .container { width: min(88%, var(--max-width)); }
  .nav-container { height: 82px; }
  .custom-logo { width: 62px; }
  .hero { min-height: 720px; }
  .hero-grid { min-height: 720px; }
  .hero h1 { font-size: 46px; }
  .hero p { font-size: 14px; max-width: 88%; }
  .circle-outline { width: 315px; height: 315px; left: 34%; bottom: -85px; }
  .circle-fill { width: 190px; height: 190px; left: 59%; bottom: -45px; }
  .dot-grid { right: 2%; top: 30%; width: 100px; height: 145px; background-size: 19px 19px; }
  .brand-grid { grid-template-columns: repeat(2, 1fr); }
  .services { padding: 90px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .services-grid article { padding: 22px 0; border-left: 0; border-top: 1px solid var(--border); }
  .services-grid h3 { margin-top: 25px; }
  .method { padding: 90px 0; }
  .method-grid { grid-template-columns: 1fr 1fr; }
  .contact-cta { padding: 90px 0; }
  .contact-cta h2 { font-size: 58px; }
  .footer-grid { align-items: flex-start; flex-direction: column; }
}


/* =========================================================
   PÁGINA SERVICIOS
   ========================================================= */

.services-page {
  background: var(--white);
}

.services-hero {
  min-height: 620px;
  background: var(--black);
  color: var(--white);
  overflow: hidden;
}

.services-hero-grid {
  min-height: 620px;
  display: grid;
  grid-template-columns: 58% 42%;
  align-items: center;
}

.services-hero-copy {
  padding-top: 80px;
  position: relative;
  z-index: 2;
}

.services-hero h1 {
  margin: 0 0 28px;
  max-width: 900px;
  font-size: clamp(52px, 6vw, 92px);
  line-height: .94;
  letter-spacing: -.055em;
}

.services-hero p {
  max-width: 620px;
  margin: 0;
  color: rgba(255,255,255,.68);
  font-size: 16px;
  line-height: 1.75;
}

.services-hero-art {
  position: relative;
  height: 100%;
}

.services-orbit {
  position: absolute;
  width: 430px;
  height: 430px;
  border: 1px solid var(--cream);
  border-radius: 50%;
  top: 22%;
  left: 5%;
}

.services-block {
  position: absolute;
  width: 240px;
  height: 240px;
  background: var(--cream);
  right: 4%;
  bottom: -45px;
}

.services-dots {
  position: absolute;
  width: 140px;
  height: 190px;
  top: 20%;
  right: 2%;
  background-image: radial-gradient(var(--cream) 2px, transparent 2px);
  background-size: 23px 23px;
}

.service-section {
  padding: 115px 0;
}

.service-section-light {
  background: var(--white);
  color: var(--black);
}

.service-section-muted {
  background: #f1eee8;
  color: var(--black);
}

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

.service-section-grid {
  display: grid;
  grid-template-columns: 38% 62%;
  gap: 90px;
}

.service-section-intro {
  position: sticky;
  top: 40px;
  align-self: start;
}

.service-section-intro h2 {
  margin: 0 0 26px;
  max-width: 560px;
  font-size: clamp(40px, 4vw, 64px);
  line-height: 1.02;
  letter-spacing: -.045em;
}

.service-section-intro p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.service-section-dark .service-section-intro p {
  color: rgba(255,255,255,.64);
}

.service-list {
  border-top: 1px solid var(--border);
}

.service-section-dark .service-list {
  border-top-color: rgba(255,255,255,.18);
}

.service-row {
  display: grid;
  grid-template-columns: 42% 58%;
  gap: 30px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}

.service-section-dark .service-row {
  border-bottom-color: rgba(255,255,255,.18);
}

.service-row h3 {
  margin: 0;
  font-size: 19px;
  line-height: 1.3;
}

.service-row p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.service-section-dark .service-row p {
  color: rgba(255,255,255,.62);
}

.services-end {
  background: var(--cream);
  color: var(--black);
  padding: 120px 0;
}

.services-end-grid h2 {
  margin: 0;
  max-width: 1050px;
  font-size: clamp(52px, 6vw, 96px);
  line-height: .95;
  letter-spacing: -.055em;
}

.services-end .button-light {
  background: var(--black);
  color: var(--white);
}

@media (max-width: 1000px) {
  .services-hero-grid {
    grid-template-columns: 1fr;
  }

  .services-hero-art {
    position: absolute;
    inset: auto 0 0 0;
    height: 320px;
    opacity: .65;
  }

  .services-hero {
    position: relative;
  }

  .service-section-grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .service-section-intro {
    position: static;
  }
}

@media (max-width: 700px) {
  .services-hero {
    min-height: 660px;
  }

  .services-hero-grid {
    min-height: 660px;
  }

  .services-hero-copy {
    padding-top: 125px;
  }

  .services-hero h1 {
    font-size: 52px;
  }

  .services-orbit {
    width: 300px;
    height: 300px;
    left: 28%;
    top: 8%;
  }

  .services-block {
    width: 170px;
    height: 170px;
    right: 2%;
  }

  .services-dots {
    width: 95px;
    height: 140px;
    right: 1%;
  }

  .service-section {
    padding: 85px 0;
  }

  .service-row {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 23px 0;
  }

  .service-row h3 {
    font-size: 17px;
  }

  .services-end {
    padding: 90px 0;
  }

  .services-end-grid h2 {
    font-size: 54px;
  }
}


/* =========================================================
   PROYECTOS Y CASOS
   ========================================================= */

.projects-page {
  background: var(--white);
}

.projects-hero {
  min-height: 570px;
  background: var(--black);
  color: var(--white);
  overflow: hidden;
}

.projects-hero-grid {
  min-height: 570px;
  display: grid;
  grid-template-columns: 60% 40%;
  align-items: center;
}

.projects-hero-copy {
  padding-top: 80px;
  position: relative;
  z-index: 2;
}

.projects-hero h1 {
  margin: 0 0 28px;
  max-width: 980px;
  font-size: clamp(54px, 6vw, 94px);
  line-height: .94;
  letter-spacing: -.055em;
}

.projects-hero p {
  max-width: 650px;
  color: rgba(255,255,255,.68);
  font-size: 16px;
  line-height: 1.75;
}

.projects-hero-art {
  position: relative;
  height: 100%;
}

.projects-line {
  position: absolute;
  width: 1px;
  height: 62%;
  background: var(--cream);
  left: 49%;
  top: 18%;
}

.projects-circle {
  position: absolute;
  width: 280px;
  height: 280px;
  border: 1px solid var(--cream);
  border-radius: 50%;
  left: 18%;
  top: 29%;
}

.projects-square {
  position: absolute;
  width: 190px;
  height: 190px;
  background: var(--cream);
  right: 1%;
  bottom: -35px;
}

.projects-hero-small {
  min-height: 390px;
  display: flex;
  align-items: center;
}

.projects-index {
  padding: 110px 0 125px;
}

.projects-index-head {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 90px;
  align-items: end;
  margin-bottom: 55px;
}

.projects-index-head h2 {
  margin: 0;
  font-size: clamp(42px, 4.5vw, 70px);
  line-height: 1;
  letter-spacing: -.045em;
}

.projects-index-head p {
  margin: 0 0 5px;
  max-width: 520px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.projects-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 45px;
}

.projects-filter span {
  border: 1px solid var(--border);
  padding: 9px 14px;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .11em;
}

.projects-case-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 70px 22px;
}

.case-card {
  min-width: 0;
}

.case-image-link {
  display: block;
  overflow: hidden;
  background: #111;
}

.case-image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform .45s ease;
}

.case-image-link:hover .case-image {
  transform: scale(1.015);
}

.case-image-placeholder {
  background:
    linear-gradient(135deg, #111 0%, #222 100%);
}

.case-meta {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.case-card h3 {
  margin: 8px 0 10px;
  font-size: clamp(27px, 2.4vw, 40px);
  line-height: 1.03;
  letter-spacing: -.035em;
}

.case-card h3 a {
  text-decoration: none;
}

.case-card p {
  margin: 0;
  max-width: 620px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.case-link {
  display: inline-flex;
  gap: 24px;
  margin-top: 18px;
  font-size: 10px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 600;
}

.projects-pagination {
  grid-column: 1 / -1;
  padding-top: 30px;
}

.projects-pagination .nav-links {
  display: flex;
  gap: 10px;
}

.projects-pagination a,
.projects-pagination span {
  min-width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  text-decoration: none;
  font-size: 11px;
}

.projects-method-note {
  background: var(--cream);
  padding: 110px 0;
}

.projects-method-grid {
  display: grid;
  grid-template-columns: .65fr 1.35fr;
  gap: 80px;
}

.projects-method-grid h2 {
  margin: 0;
  font-size: clamp(48px, 5.5vw, 86px);
  line-height: .95;
  letter-spacing: -.055em;
}

.projects-method-grid p {
  grid-column: 2;
  max-width: 660px;
  margin: 10px 0 0;
  font-size: 14px;
  color: #3f3a34;
  line-height: 1.8;
}


/* CASE SINGLE */

.case-single {
  background: var(--white);
}

.case-hero {
  background: var(--black);
  color: var(--white);
  padding: 145px 0 80px;
}

.case-breadcrumb {
  display: flex;
  gap: 9px;
  margin-bottom: 70px;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .11em;
  color: rgba(255,255,255,.5);
}

.case-breadcrumb a {
  text-decoration: none;
  color: inherit;
}

.case-title-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 80px;
  align-items: end;
}

.case-title-grid h1 {
  margin: 0;
  max-width: 950px;
  font-size: clamp(58px, 7vw, 108px);
  line-height: .9;
  letter-spacing: -.06em;
}

.case-intro p {
  margin: 0 0 7px;
  max-width: 520px;
  color: rgba(255,255,255,.68);
  font-size: 15px;
  line-height: 1.8;
}

.case-cover {
  background: var(--black);
  padding-bottom: 90px;
}

.case-cover img {
  width: 100%;
  max-height: 780px;
  object-fit: cover;
  display: block;
}

.case-summary {
  padding: 110px 0;
}

.case-summary-grid {
  display: grid;
  grid-template-columns: 30% 70%;
  gap: 90px;
}

.case-facts {
  border-top: 1px solid var(--border);
}

.case-facts > div {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}

.case-facts span {
  display: block;
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.case-facts strong {
  font-size: 14px;
  line-height: 1.4;
}

.case-story section + section {
  margin-top: 90px;
}

.case-story h2 {
  margin: 0;
  max-width: 900px;
  font-size: clamp(38px, 4vw, 64px);
  line-height: 1.05;
  letter-spacing: -.045em;
}

.case-richtext {
  max-width: 820px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.9;
}

.case-content {
  padding: 20px 0 120px;
}

.case-content-inner {
  font-size: 15px;
  line-height: 1.9;
}

.case-content-inner img {
  margin: 45px 0;
  width: 100%;
  height: auto;
}

.case-results {
  background: var(--black);
  color: var(--white);
  padding: 110px 0;
}

.case-results-grid {
  display: grid;
  grid-template-columns: 30% 70%;
  gap: 90px;
}

.case-results-copy {
  max-width: 820px;
  font-size: clamp(24px, 3vw, 44px);
  line-height: 1.2;
  letter-spacing: -.025em;
}

.case-results-copy p:first-child {
  margin-top: 0;
}

.case-next {
  padding: 80px 0;
  background: var(--cream);
}

.case-next a {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  text-decoration: none;
  font-size: clamp(36px, 4vw, 64px);
  line-height: 1;
  letter-spacing: -.04em;
}

@media (max-width: 950px) {
  .projects-hero-grid,
  .projects-index-head,
  .projects-method-grid,
  .case-title-grid,
  .case-summary-grid,
  .case-results-grid {
    grid-template-columns: 1fr;
  }

  .projects-hero {
    position: relative;
  }

  .projects-hero-art {
    position: absolute;
    inset: auto 0 0 0;
    height: 280px;
    opacity: .6;
  }

  .projects-case-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .projects-method-grid p {
    grid-column: auto;
  }

  .case-summary-grid,
  .case-results-grid {
    gap: 55px;
  }
}

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

  .projects-hero-grid {
    min-height: 650px;
  }

  .projects-hero-copy {
    padding-top: 120px;
  }

  .projects-hero h1 {
    font-size: 52px;
  }

  .projects-index {
    padding: 85px 0 95px;
  }

  .projects-filter {
    gap: 6px;
  }

  .projects-filter span {
    padding: 7px 10px;
    font-size: 8px;
  }

  .projects-method-note {
    padding: 85px 0;
  }

  .projects-method-grid h2 {
    font-size: 52px;
  }

  .case-hero {
    padding: 120px 0 65px;
  }

  .case-breadcrumb {
    margin-bottom: 45px;
  }

  .case-title-grid {
    gap: 35px;
  }

  .case-title-grid h1 {
    font-size: 58px;
  }

  .case-cover {
    padding-bottom: 55px;
  }

  .case-summary {
    padding: 80px 0;
  }

  .case-story section + section {
    margin-top: 65px;
  }

  .case-content {
    padding-bottom: 90px;
  }

  .case-results {
    padding: 85px 0;
  }

  .case-next {
    padding: 65px 0;
  }
}


/* =========================================================
   NOSOTROS
   ========================================================= */

.about-page {
  background: var(--white);
}

.about-hero {
  min-height: 650px;
  background: var(--black);
  color: var(--white);
  overflow: hidden;
}

.about-hero-grid {
  min-height: 650px;
  display: grid;
  grid-template-columns: 58% 42%;
  align-items: center;
}

.about-hero-copy {
  position: relative;
  z-index: 2;
  padding-top: 85px;
}

.about-hero h1 {
  margin: 0;
  max-width: 900px;
  font-size: clamp(62px, 7vw, 112px);
  line-height: .87;
  letter-spacing: -.065em;
}

.about-hero-lead {
  margin: 25px 0 10px !important;
  color: var(--cream) !important;
  font-size: clamp(23px, 2.2vw, 34px) !important;
  line-height: 1.2 !important;
  font-weight: 500;
  letter-spacing: -.03em;
}

.about-hero-copy > p:last-child {
  max-width: 600px;
  margin: 0;
  color: rgba(255,255,255,.64);
  font-size: 14px;
  line-height: 1.8;
}

.about-hero-art {
  position: relative;
  height: 100%;
}

.about-hero-word {
  position: absolute;
  right: -1%;
  bottom: -5%;
  color: transparent;
  -webkit-text-stroke: 1px rgba(238,228,213,.38);
  font-size: clamp(110px, 12vw, 190px);
  font-weight: 700;
  line-height: .72;
  letter-spacing: -.09em;
  text-transform: uppercase;
}

.about-hero-line {
  position: absolute;
  top: 22%;
  left: 12%;
  width: 62%;
  height: 1px;
  background: var(--cream);
}

.about-hero-circle {
  position: absolute;
  width: 145px;
  height: 145px;
  top: calc(22% - 72px);
  left: calc(12% + 40%);
  border: 1px solid var(--cream);
  border-radius: 50%;
}

.about-belief {
  padding: 125px 0;
}

.about-belief-grid {
  display: grid;
  grid-template-columns: 28% 72%;
  gap: 70px;
}

.about-belief h2 {
  margin: 0;
  max-width: 1050px;
  font-size: clamp(48px, 5.5vw, 88px);
  line-height: .97;
  letter-spacing: -.055em;
}

.about-belief p {
  max-width: 720px;
  margin: 35px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.85;
}

.about-principles {
  padding: 115px 0;
  background: #f1eee8;
}

.about-principles-head {
  display: grid;
  grid-template-columns: 28% 72%;
  gap: 70px;
  margin-bottom: 65px;
}

.about-principles-head h2 {
  margin: 0;
  font-size: clamp(48px, 5vw, 80px);
  line-height: .95;
  letter-spacing: -.055em;
}

.about-principles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.about-principles article {
  min-height: 330px;
  padding: 24px 28px 20px;
  border-top: 1px solid var(--black);
  border-left: 1px solid var(--border);
}

.about-principles article:first-child {
  border-left: 0;
}

.about-principles article > span {
  font-size: 10px;
  font-weight: 600;
}

.about-principles h3 {
  margin: 70px 0 18px;
  max-width: 230px;
  font-size: 19px;
  line-height: 1.25;
}

.about-principles p {
  margin: 0;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.75;
}

.about-model {
  padding: 125px 0;
  background: var(--black);
  color: var(--white);
  overflow: hidden;
}

.about-model-grid {
  display: grid;
  grid-template-columns: 48% 52%;
  gap: 80px;
  align-items: center;
}

.about-model-copy h2 {
  margin: 0 0 30px;
  max-width: 720px;
  font-size: clamp(48px, 5vw, 82px);
  line-height: .96;
  letter-spacing: -.055em;
}

.about-model-copy p {
  max-width: 570px;
  color: rgba(255,255,255,.62);
  font-size: 14px;
  line-height: 1.85;
}

.about-network {
  position: relative;
  min-height: 560px;
}

.network-ring {
  position: absolute;
  width: 430px;
  height: 430px;
  left: 50%;
  top: 50%;
  border: 1px solid rgba(238,228,213,.45);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.network-core {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 50%;
  width: 180px;
  height: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: var(--cream);
  color: var(--black);
  text-align: center;
}

.network-core strong {
  font-size: 22px;
  letter-spacing: -.04em;
}

.network-core span {
  margin-top: 4px;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.network-item {
  position: absolute;
  z-index: 4;
  padding: 8px 12px;
  background: var(--black);
  border: 1px solid rgba(238,228,213,.5);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .11em;
}

.network-item-1 { left: 44%; top: 8%; }
.network-item-2 { right: 5%; top: 27%; }
.network-item-3 { right: 4%; bottom: 25%; }
.network-item-4 { left: 45%; bottom: 6%; }
.network-item-5 { left: 2%; bottom: 25%; }
.network-item-6 { left: 3%; top: 27%; }

.about-experience {
  padding: 120px 0;
}

.about-experience-grid {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 90px;
  align-items: end;
}

.about-experience h2 {
  margin: 0;
  font-size: clamp(48px, 5vw, 80px);
  line-height: .96;
  letter-spacing: -.055em;
}

.about-experience-copy p {
  max-width: 590px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.85;
}

.text-link {
  display: inline-flex;
  gap: 30px;
  margin-top: 28px;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--black);
  text-decoration: none;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 600;
}

.about-manifesto {
  padding: 120px 0;
  background: var(--cream);
}

.about-manifesto h2 {
  margin: 0;
  max-width: 1180px;
  font-size: clamp(55px, 6.5vw, 104px);
  line-height: .92;
  letter-spacing: -.06em;
}

@media (max-width: 1000px) {
  .about-hero-grid,
  .about-belief-grid,
  .about-principles-head,
  .about-model-grid,
  .about-experience-grid {
    grid-template-columns: 1fr;
  }

  .about-hero {
    position: relative;
  }

  .about-hero-art {
    position: absolute;
    inset: auto 0 0 0;
    height: 300px;
    opacity: .58;
  }

  .about-principles-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-principles article:nth-child(3) {
    border-left: 0;
  }

  .about-network {
    min-height: 520px;
  }
}

@media (max-width: 650px) {
  .about-hero {
    min-height: 690px;
  }

  .about-hero-grid {
    min-height: 690px;
  }

  .about-hero-copy {
    padding-top: 125px;
  }

  .about-hero h1 {
    font-size: 64px;
  }

  .about-belief,
  .about-principles,
  .about-model,
  .about-experience,
  .about-manifesto {
    padding: 85px 0;
  }

  .about-belief-grid,
  .about-principles-head,
  .about-model-grid,
  .about-experience-grid {
    gap: 42px;
  }

  .about-belief h2,
  .about-principles-head h2,
  .about-model-copy h2,
  .about-experience h2 {
    font-size: 50px;
  }

  .about-principles-grid {
    grid-template-columns: 1fr;
  }

  .about-principles article {
    min-height: auto;
    border-left: 0;
    padding: 22px 0 35px;
  }

  .about-principles h3 {
    margin-top: 35px;
  }

  .about-network {
    min-height: 410px;
    transform: scale(.86);
    transform-origin: center;
  }

  .network-ring {
    width: 330px;
    height: 330px;
  }

  .network-core {
    width: 145px;
    height: 145px;
  }

  .network-item-1 { left: 39%; }
  .network-item-4 { left: 40%; }

  .about-manifesto h2 {
    font-size: 56px;
  }
}


/* =========================================================
   CONTACTO
   ========================================================= */

.contact-page {
  background: var(--white);
}

.contact-hero {
  min-height: 610px;
  background: var(--black);
  color: var(--white);
  overflow: hidden;
}

.contact-hero-grid {
  min-height: 610px;
  display: grid;
  grid-template-columns: 64% 36%;
  align-items: center;
}

.contact-hero-copy {
  padding-top: 85px;
  position: relative;
  z-index: 2;
}

.contact-hero h1 {
  margin: 0 0 30px;
  max-width: 1050px;
  font-size: clamp(62px, 7vw, 112px);
  line-height: .88;
  letter-spacing: -.065em;
}

.contact-hero p {
  max-width: 610px;
  margin: 0;
  color: rgba(255,255,255,.65);
  font-size: 15px;
  line-height: 1.85;
}

.contact-hero-art {
  position: relative;
  height: 100%;
}

.contact-cross-line {
  position: absolute;
  background: rgba(238,228,213,.65);
}

.contact-cross-line-h {
  width: 115%;
  height: 1px;
  top: 48%;
  left: 0;
}

.contact-cross-line-v {
  width: 1px;
  height: 68%;
  left: 47%;
  top: 17%;
}

.contact-dot {
  position: absolute;
  width: 155px;
  height: 155px;
  left: calc(47% - 77px);
  top: calc(48% - 77px);
  border-radius: 50%;
  background: var(--cream);
}

.contact-main {
  padding: 120px 0 130px;
}

.contact-main-grid {
  display: grid;
  grid-template-columns: 35% 65%;
  gap: 95px;
}

.contact-intro {
  position: sticky;
  top: 40px;
  align-self: start;
}

.contact-intro h2 {
  margin: 0 0 27px;
  font-size: clamp(42px, 4.2vw, 67px);
  line-height: 1.01;
  letter-spacing: -.05em;
}

.contact-intro > p {
  max-width: 480px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.85;
}

.contact-direct {
  margin-top: 55px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
}

.contact-direct span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .11em;
}

.contact-direct a {
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.something-contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px 22px;
}

.form-field {
  min-width: 0;
}

.form-field-full {
  grid-column: 1 / -1;
}

.form-field label {
  display: block;
  margin-bottom: 10px;
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .11em;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 0;
  border-radius: 0;
  border-bottom: 1px solid #aaa;
  padding: 13px 0;
  background: transparent;
  color: var(--black);
  font: inherit;
  font-size: 14px;
  outline: none;
  appearance: none;
}

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

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-bottom-color: var(--black);
}

.form-field textarea::placeholder {
  color: #999;
}

.form-honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-submit-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-top: 18px;
}

.form-submit-row p {
  max-width: 390px;
  margin: 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.65;
}

.form-submit {
  min-width: 205px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  border: 0;
  padding: 17px 22px;
  background: var(--black);
  color: var(--white);
  cursor: pointer;
  font-family: inherit;
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .11em;
}

.form-message {
  margin-bottom: 40px;
  padding: 25px 28px;
  border: 1px solid var(--border);
}

.form-message span {
  display: block;
  margin-bottom: 8px;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .11em;
}

.form-message h3 {
  margin: 0 0 7px;
  font-size: 24px;
}

.form-message p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.form-success {
  background: var(--cream);
}

.contact-next {
  padding: 110px 0;
  background: #f1eee8;
}

.contact-next-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 50px;
}

.contact-next article {
  min-height: 260px;
  padding: 23px 30px;
  border-top: 1px solid var(--black);
  border-left: 1px solid var(--border);
}

.contact-next article:first-child {
  border-left: 0;
}

.contact-next article > span {
  font-size: 10px;
  font-weight: 600;
}

.contact-next h3 {
  margin: 65px 0 14px;
  font-size: 20px;
  line-height: 1.25;
}

.contact-next p {
  max-width: 340px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.75;
}

.contact-final {
  padding: 120px 0;
  background: var(--black);
  color: var(--white);
}

.contact-final h2 {
  margin: 0 0 42px;
  max-width: 1100px;
  font-size: clamp(58px, 7vw, 108px);
  line-height: .91;
  letter-spacing: -.06em;
}

.contact-final > .container > a {
  display: inline-flex;
  gap: 35px;
  padding-bottom: 7px;
  border-bottom: 1px solid rgba(255,255,255,.55);
  color: var(--white);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: .03em;
}

@media (max-width: 950px) {
  .contact-hero-grid,
  .contact-main-grid {
    grid-template-columns: 1fr;
  }

  .contact-hero {
    position: relative;
  }

  .contact-hero-art {
    position: absolute;
    inset: auto 0 0 0;
    height: 270px;
    opacity: .6;
  }

  .contact-intro {
    position: static;
  }
}

@media (max-width: 650px) {
  .contact-hero {
    min-height: 670px;
  }

  .contact-hero-grid {
    min-height: 670px;
  }

  .contact-hero-copy {
    padding-top: 125px;
  }

  .contact-hero h1 {
    font-size: 61px;
  }

  .contact-main,
  .contact-next,
  .contact-final {
    padding: 85px 0;
  }

  .contact-main-grid {
    gap: 60px;
  }

  .contact-intro h2 {
    font-size: 49px;
  }

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

  .form-field-full {
    grid-column: auto;
  }

  .form-submit-row {
    align-items: stretch;
    flex-direction: column;
  }

  .form-submit {
    width: 100%;
  }

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

  .contact-next article {
    min-height: auto;
    border-left: 0;
    padding: 22px 0 35px;
  }

  .contact-next h3 {
    margin-top: 32px;
  }

  .contact-final h2 {
    font-size: 58px;
  }
}
