*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  @import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600;700&family=DM+Sans:wght@300;400;500;700&display=swap');

:root {
    --navy: #0B1F3A;
    --navy-mid: #142d52;
    --gold: #C5A35A;
    --gold-light: #E8CFA0;
    --gold-pale: #E8CFA0;
    --white: #FAFAF8;
    --gray-light: #F2F0EB;
    --gray-mid: #1A1612;
    --text: #1A1612;
    --serif: 'Cormorant Garamond', Georgia, serif;
    --sans: 'DM Sans', system-ui, sans-serif;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: var(--sans);
    background: var(--white);
    color: var(--text);
    overflow-x: hidden;
    font-size: 16px;
    line-height: 1.7;
  }

  /* NAV */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0.8rem 4rem;
    background: rgba(11,31,58,0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(197,163,90,0.2);
  }
  .nav-logo {
    font-family: var(--serif);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--white);
    letter-spacing: 0.02em;
    text-decoration: none;
  }
  .nav-logo span { color: var(--gold); }
  .nav-links { display: flex; gap: 2.5rem; list-style: none; }
  .nav-links a {
    color: rgba(250,250,248,0.75);
    text-decoration: none;
    font-size: 0.82rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 400;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--gold); }
  .nav-cta {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 0.5rem 1.5rem;
    font-family: var(--sans);
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
  }
  .nav-cta:hover { background: var(--gold); color: var(--navy); }

  /* HERO */
  .hero {
    min-height: 100vh;
    background: var(--navy);
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
  }
  .hero::before {
    content: '';
    position: absolute; inset: 0;
    background: 
      radial-gradient(ellipse 60% 80% at 70% 50%, rgba(197,163,90,0.07) 0%, transparent 70%),
      radial-gradient(ellipse 40% 60% at 20% 80%, rgba(197,163,90,0.04) 0%, transparent 60%);
  }
  .hero-lines {
    position: absolute; top: 0; right: 0; bottom: 0; width: 55%;
    opacity: 0.04;
    background-image: repeating-linear-gradient(
      0deg, var(--gold) 0, var(--gold) 1px, transparent 1px, transparent 60px
    );
  }
  .hero-content {
    padding: 5rem 8vw;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    position: relative; z-index: 2;
  }
  .hero-eyebrow {
    display: flex; align-items: center; justify-content: center; gap: 1rem;
    margin-bottom: 2rem;
  }
  .hero-eyebrow-line {
    width: 40px; height: 1px; background: var(--gold);
  }
  .hero-eyebrow-text {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 400;
  }
  .hero h1 {
    font-family: var(--serif);
    font-size: clamp(2.2rem, 3.5vw, 3.4rem);
    font-weight: 300;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 2.6rem;
  }
  .hero h1 em {
    font-style: italic;
    color: var(--gold);
  }
  .hero-sub {
    font-size: 1.05rem;
    color: rgba(250,250,248,0.65);
    line-height: 1.9;
    text-align: justify;
    max-width: 620px;
    margin: 0.8rem auto 2.8rem;
    font-weight: 300;
  }
  .hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }
  .btn-primary {
    background: var(--gold);
    color: var(--navy);
    padding: 1.05rem 2.7rem;
    font-family: var(--sans);
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-block;
  }
  .btn-primary:hover { background: var(--gold-light); }
  .btn-secondary {
    background: transparent;
    color: var(--white);
    padding: 1.05rem 2.7rem;
    font-family: var(--sans);
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 400;
    border: 1px solid rgba(250,250,248,0.3);
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-block;
  }
  .btn-secondary:hover { border-color: var(--white); }
  .hero-visual {
    position: relative; height: 100vh;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
  }
  .hero-geo {
    position: absolute;
    width: 420px; height: 420px;
    border: 1px solid rgba(197,163,90,0.2);
    border-radius: 50%;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
  }
  .hero-geo:nth-child(2) { width: 560px; height: 560px; border-color: rgba(197,163,90,0.1); }
  .hero-geo:nth-child(3) { width: 700px; height: 700px; border-color: rgba(197,163,90,0.05); }
  .hero-stats {
    position: relative; z-index: 2;
    display: flex; flex-direction: column;
    gap: 1.1rem;
    max-width: 420px;
  }
  .hero-stats-line {
    display: flex; align-items: baseline; flex-wrap: wrap;
    gap: 0.9rem;
  }
  .hero-stat-inline {
    display: inline-flex; align-items: baseline; gap: 0.5rem;
    font-size: 0.78rem;
    letter-spacing: 0.05em;
    color: rgba(250,250,248,0.55);
    font-weight: 400;
  }
  .hero-stat-num {
    font-family: var(--serif);
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--gold);
    line-height: 1;
  }
  .hero-stat-sep {
    color: rgba(197,163,90,0.3);
    font-size: 0.9rem;
  }

  /* STRIP */
  .strip {
    background: var(--gold);
    padding: 1rem 4rem;
    display: flex; align-items: center; gap: 3rem;
    overflow: hidden;
  }
  .strip-label {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--navy);
    font-weight: 500;
    white-space: nowrap;
    flex-shrink: 0;
  }
  .strip-divider { width: 1px; height: 24px; background: rgba(11,31,58,0.25); flex-shrink: 0; }
  .strip-scroll { display: flex; gap: 2.5rem; overflow: hidden; flex: 1; }
  .strip-item {
    font-size: 0.78rem;
    color: var(--navy);
    white-space: nowrap;
    font-weight: 400;
    letter-spacing: 0.03em;
    opacity: 0.8;
  }

  /* SECTION BASE */
  section { padding: 6rem 6rem; }

  .section-head { margin-bottom: 0; }
  .section-eyebrow {
    display: flex; align-items: baseline; justify-content: flex-start;
    gap: 0.75rem; margin-bottom: 1.6rem;
  }
  .section-eyebrow-index {
    color: var(--gold); font-family: var(--sans); font-size: 1.15rem;
    font-weight: 600; letter-spacing: -0.03em; line-height: 1;
  }
  .section-eyebrow-text {
    font-size: clamp(1.05rem, 2.1vw, 1.45rem); line-height: 1.15;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--gold); font-weight: 500;
  }
  .section-title {
    font-family: var(--serif);
    font-size: clamp(2.2rem, 3.5vw, 3.4rem);
    font-weight: 300;
    line-height: 1.12;
    color: var(--navy);
    margin-bottom: 1.2rem;
  }
  .section-title em { font-style: italic; color: var(--gold); }
  .section-body {
    font-size: 1rem; color: var(--gray-mid); line-height: 1.8; font-weight: 300;
    max-width: 560px;
  }

  /* ABOUT */
  .about { background: var(--white); }
  .about-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 6rem; align-items: stretch; margin-top: 4rem;
  }
  .about-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .about-text p {
    font-size: 1rem; color: #1A1612; line-height: 1.9; font-weight: 300;
    margin-bottom: 1.2rem;
  }
  .about-text p strong { color: var(--navy); font-weight: 500; }
  .about-values { margin-top: 0; display: flex; flex-direction: column; gap: 1rem; justify-content: center; }
  .about-values { justify-content: center; }
  .about-value {
    display: flex; gap: 1rem; align-items: flex-start;
    padding: 1.2rem 1.5rem;
    border-left: 2px solid var(--gold);
    background: var(--gray-light);
  }
  .about-value-title { font-size: 0.9rem; font-weight: 500; color: var(--navy); margin-bottom: 0.2rem; }
  .about-value-body { font-size: 0.85rem; color: var(--gray-mid); line-height: 1.6; }

  /* TEAM */
  .team { background: var(--gray-light); }
  .team-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 3rem; margin-top: 4rem;
  }
  .team-card {
    background: var(--white);
    border: 1px solid rgba(197,163,90,0.15);
    overflow: hidden;
    display: grid; grid-template-columns: 180px 1fr;
    align-items: stretch;
  }
  .team-photo {
    background: var(--navy);
    align-self: stretch;
    height: 100%;
    min-height: 100%;
    display: flex; align-items: stretch; justify-content: center;
    overflow: hidden;
  }
  .team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
  }
  .team-photo-image-right { object-position: 88% top; }
  .team-photo-placeholder {
    width: 72px; height: 72px; border-radius: 50%;
    background: rgba(197,163,90,0.2);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--serif); font-size: 1.8rem; color: var(--gold); font-weight: 300;
  }
  .team-info {
    padding: 1.8rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .team-name {
    font-family: var(--serif);
    font-size: 1.5rem; font-weight: 400; color: var(--navy);
    margin-bottom: 0.2rem;
  }
  .team-role {
    font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--gold); font-weight: 400; margin-bottom: 1rem;
  }
  .team-location {
    font-size: 0.8rem; color: var(--gray-mid); margin-bottom: 1rem;
    display: flex; align-items: center; gap: 0.4rem;
  }
  .team-bio { font-size: 0.88rem; color: #1A1612; line-height: 1.75; font-weight: 300; }

  /* SERVICES */
  .services { background: var(--navy); }

  /* Tighten gap between Servicios and Metodología (half) */
  #servicios { padding-bottom: 3rem; }
  #metodologia { padding-top: 3rem; }

  .services .section-title { color: var(--white); }
  .services .section-body {
    max-width: none;
    color: rgba(250,250,248,0.62);
    white-space: nowrap;
  }
  .services-bento {
    display: grid;
    grid-auto-rows: 1fr;
    gap: 0.55rem;
    margin-top: 2.25rem;
    width: 75%;
    max-width: 100%;
    margin-left: 0;
    margin-right: auto;
    align-items: stretch;
  }
  .service-bento-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.55rem;
    align-items: stretch;
    height: 100%;
    min-height: 0;
  }
  .service-cell {
    border: 1px solid rgba(197,163,90,0.16);
    background: rgba(255,255,255,0.02);
    overflow: hidden;
    min-height: 146px;
  }
  .service-cell--media {
    grid-column: span 1;
    position: relative;
    background: #08172c;
    height: 100%;
    min-height: 100%;
  }
  .service-cell--copy {
    grid-column: span 2;
    display: flex;
    align-items: center;
  }
  .service-bento-row {
    /* height follows content more tightly */
  }
  .service-bento-row--image-right .service-cell--copy {
    grid-column: 1 / span 2;
    grid-row: 1;
  }
  .service-bento-row--image-right .service-cell--media {
    grid-column: 3;
    grid-row: 1;
  }
  .service-media-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
      radial-gradient(ellipse 70% 60% at 30% 40%, rgba(197,163,90,0.12) 0%, transparent 65%),
      repeating-linear-gradient(
        0deg,
        rgba(197,163,90,0.07) 0,
        rgba(197,163,90,0.07) 1px,
        transparent 1px,
        transparent 48px
      ),
      linear-gradient(145deg, #0a1c35 0%, #071321 100%);
  }
  .service-media-placeholder::after {
    content: '';
    position: absolute;
    inset: 0.85rem;
    border: 1px solid rgba(197,163,90,0.28);
    pointer-events: none;
  }
  .service-media-label {
    position: relative;
    z-index: 1;
    font-family: var(--serif);
    font-size: clamp(1.35rem, 2vw, 1.85rem);
    font-weight: 300;
    letter-spacing: 0.04em;
    color: rgba(232,207,160,0.55);
    text-transform: uppercase;
  }
  .service-media-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: filter 0.35s ease;
  }
  .service-bento-row:hover .service-media-placeholder::after {
    border-color: rgba(197,163,90,0.5);
  }
  .service-bento-row:hover .service-media-image {
    filter: brightness(1.05);
  }
  .service-copy-inner {
    padding: 0.86rem 1.01rem;
    max-width: 28rem;
  }
  .service-icon {
    width: 1.94rem;
    height: 1.94rem;
    color: var(--gold);
    margin-bottom: 0.55rem;
    display: block;
  }
  .service-title {
    font-family: var(--serif);
    font-size: clamp(1.25rem, 1.81vw, 1.625rem);
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--white);
    margin-bottom: 0.45rem;
  }
  .service-body {
    font-size: 0.975rem;
    color: rgba(250,250,248,0.62);
    line-height: 1.5;
    font-weight: 300;
    max-width: 28rem;
  }

  /* Services scroll reveal — only when JS is active */
  html.js .service-bento-row[data-service-reveal] {
    opacity: 0;
    transition:
      opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
      transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
  }
  html.js .service-bento-row[data-service-reveal="left"] {
    transform: translate3d(-3.5rem, 0, 0);
  }
  html.js .service-bento-row[data-service-reveal="right"] {
    transform: translate3d(3.5rem, 0, 0);
  }
  html.js .service-bento-row.is-revealed {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    will-change: auto;
  }
  @media (prefers-reduced-motion: reduce) {
    html.js .service-bento-row[data-service-reveal] {
      opacity: 1;
      transform: none;
      transition: none;
      will-change: auto;
    }
  }
  /* SCROLL REVEAL (sitewide, subtle) */
  html.js [data-reveal] {
    opacity: 0;
    transform: translate3d(0, 1.25rem, 0);
    transition:
      opacity 0.55s cubic-bezier(0.16, 1, 0.3, 1),
      transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
  }
  html.js [data-reveal].is-revealed {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    will-change: auto;
  }
  html.js [data-reveal-stagger] > .reveal-item {
    opacity: 0;
    transform: translate3d(0, 1.25rem, 0);
    transition:
      opacity 0.55s cubic-bezier(0.16, 1, 0.3, 1),
      transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
  }
  html.js [data-reveal-stagger] > .reveal-item.is-revealed {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    will-change: auto;
  }
  @media (prefers-reduced-motion: reduce) {
    html.js [data-reveal],
    html.js [data-reveal-stagger] > .reveal-item {
      opacity: 1;
      transform: none;
      transition: none;
      will-change: auto;
    }
  }


  /* SPECIALIZATIONS */
  .specs { background: var(--white); }
  .specs-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem; margin-top: 4rem;
  }
  .spec-card {
    padding: 2rem 1.5rem;
    border: 1px solid rgba(11,31,58,0.08);
    transition: all 0.25s;
  }
  .spec-card:hover { border-color: var(--gold); background: var(--gold-pale); }
  .spec-icon {
    width: 40px; height: 40px;
    border: 1px solid var(--gold);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.2rem;
    font-family: var(--serif); font-size: 0.9rem; color: var(--gold);
  }
  .spec-title { font-size: 0.95rem; font-weight: 500; color: var(--navy); margin-bottom: 0.5rem; }
  .spec-body { font-size: 0.82rem; color: var(--gray-mid); line-height: 1.65; }

  /* METHODOLOGY */
  .method { background: var(--gray-light); }
  .method-steps {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 2px; margin-top: 4rem;
  }
  .method-step {
    background: var(--white);
    padding: 2rem 1.5rem;
    border-top: 2px solid transparent;
    transition: border-color 0.2s;
  }
  .method-step:hover { border-top-color: var(--gold); }
  .method-step-num {
    font-family: var(--serif); font-size: 2.5rem; font-weight: 300;
    color: var(--gold-light); line-height: 1; margin-bottom: 1rem;
  }
  .method-step-title { font-size: 0.9rem; font-weight: 500; color: var(--navy); margin-bottom: 0.5rem; }
  .method-step-body { font-size: 0.82rem; color: var(--gray-mid); line-height: 1.65; }

  /* COVERAGE MAP */
  .coverage-map {
    background:
      radial-gradient(circle at top right, rgba(197,163,90,0.12), transparent 32%),
      linear-gradient(180deg, #142D52 0%, #0B1F3A 100%);
    color: var(--white);
  }
  .coverage-map .section-title {
    color: var(--white);
  }
  .coverage-map .section-body,
  .coverage-map .section-eyebrow-text {
    color: rgba(250,250,248,0.72);
  }
  .coverage-map-grid {
    display: grid;
    grid-template-columns: minmax(280px, 0.42fr) minmax(0, 0.58fr);
    gap: 3rem;
    align-items: start;
    margin-top: 2rem;
  }
  .coverage-map-copy {
    position: sticky;
    top: 8rem;
  }
  .coverage-map-visual {
    min-width: 0;
    width: 100%;
  }
  .coverage-map-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
  }
  .coverage-map-key {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 0.82rem;
    letter-spacing: 0.04em;
    color: rgba(250,250,248,0.8);
  }
  .coverage-map-dot {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    display: inline-block;
  }
  .coverage-map-dot--spain {
    background: var(--gold);
    box-shadow: 0 0 0 4px rgba(197,163,90,0.18);
  }
  .coverage-map-dot--latam {
    background: var(--gray-light);
    box-shadow: 0 0 0 4px rgba(242,240,235,0.15);
  }
  .coverage-map-frame {
    position: relative;
    width: 100%;
    max-width: 100%;
    aspect-ratio: 16 / 10;
    border: 1px solid rgba(197,163,90,0.22);
    overflow: hidden;
    background: rgba(255,255,255,0.02);
    box-shadow: 0 28px 60px rgba(0,0,0,0.28);
  }
  .coverage-map-frame::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at 16% 14%, rgba(197,163,90,0.12), transparent 24%),
      linear-gradient(135deg, rgba(255,255,255,0.03), transparent 52%);
    pointer-events: none;
  }
  .coverage-map-frame--interactive {
    min-height: 500px;
  }
  .coverage-map-canvas,
  .coverage-map-canvas svg {
    width: 100%;
    height: 100%;
  }
  .coverage-map-canvas {
    position: relative;
    z-index: 1;
  }
  .coverage-map-surface {
    fill: #3A4958;
    stroke: rgba(16,34,59,0.42);
    stroke-width: 0.7;
    transition: fill 0.22s ease, stroke 0.22s ease, opacity 0.22s ease;
  }
  .coverage-map-surface.is-target {
    fill: rgba(197,163,90,0.78);
    stroke: rgba(250,250,248,0.9);
    stroke-width: 1.05;
    cursor: pointer;
  }
  .coverage-map-surface.is-spain {
    fill: rgba(197,163,90,0.78);
    stroke: rgba(250,250,248,0.9);
    stroke-width: 1.05;
  }
  .coverage-map-surface.is-target:hover,
  .coverage-map-surface.is-target:focus-visible,
  .coverage-map-surface.is-target.is-active {
    fill: rgba(197,163,90,0.88);
    stroke: rgba(250,250,248,0.92);
    stroke-width: 1.2;
  }
  .coverage-map-surface.is-target.is-pulsing {
    fill: rgba(197,163,90,0.88);
    stroke: rgba(250,250,248,0.92);
    stroke-width: 1.28;
    filter:
      drop-shadow(0 0 6px rgba(255,245,214,0.9))
      drop-shadow(0 0 14px rgba(236,202,128,0.58))
      drop-shadow(0 0 24px rgba(197,163,90,0.46));
  }
  .coverage-map-surface.is-muted {
    opacity: 0.92;
  }
  .coverage-map-tooltip {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 4;
    transform: translate(12px, 12px);
    background: rgba(242,240,235,0.96);
    color: var(--navy);
    padding: 0.5rem 0.75rem;
    border: 1px solid rgba(197,163,90,0.32);
    white-space: nowrap;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.18s ease;
  }
  .coverage-map-tooltip.is-visible {
    opacity: 1;
  }
  .coverage-map-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.7rem;
    margin-top: 1.5rem;
    width: 100%;
  }
  .coverage-map-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-width: 0;
    padding: 0.55rem 0.9rem;
    border: 1px solid rgba(197,163,90,0.24);
    border-radius: 999px;
    color: rgba(250,250,248,0.86);
    text-decoration: none;
    font-size: 0.78rem;
    letter-spacing: 0.05em;
    line-height: 1.45;
    text-align: center;
    white-space: normal;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  }
  .coverage-map-link--spain {
    background: rgba(197,163,90,0.12);
    border-color: rgba(197,163,90,0.44);
  }
  .coverage-map-link:hover,
  .coverage-map-link:focus-visible {
    background: rgba(197,163,90,0.12);
    border-color: rgba(197,163,90,0.46);
    color: var(--white);
  }
  .coverage-map-link[hidden] {
    display: none !important;
  }
  .coverage-map-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-width: 0;
    padding: 0.55rem 0.9rem;
    border: 1px solid rgba(197,163,90,0.32);
    border-radius: 999px;
    background: transparent;
    color: rgba(250,250,248,0.9);
    font-family: var(--sans);
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  }
  .coverage-map-more:hover,
  .coverage-map-more:focus-visible {
    background: rgba(197,163,90,0.12);
    border-color: rgba(197,163,90,0.46);
    color: var(--white);
  }

  /* CLIENTS */
  .clients { background: var(--white); }
  .clients-intro { max-width: 600px; }
  .clients-block { margin-top: 3rem; }
  .clients-region {
    margin-bottom: 2.5rem;
  }
  .clients-region-title {
    font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 1rem; font-weight: 500;
    display: flex; align-items: center; gap: 0.8rem;
  }
  .clients-region-title::after {
    content: ''; flex: 1; height: 1px; background: rgba(197,163,90,0.2);
  }
  .clients-list {
    display: flex; flex-wrap: wrap; gap: 0.6rem;
  }
  .client-pill {
    font-size: 0.8rem; color: var(--navy);
    padding: 0.4rem 1rem;
    border: 1px solid rgba(11,31,58,0.12);
    letter-spacing: 0.02em;
    transition: all 0.2s;
  }
  .client-pill:hover { border-color: var(--gold); background: var(--gold-pale); }

  /* CANDIDATES */
  .candidates {
    background: var(--navy);
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 0; padding: 0;
  }
  .candidates-content { padding: 6rem; }
  .candidates-content .section-title {
    color: var(--white);
  }
  .candidates-content .section-body { color: rgba(250,250,248,0.55); margin-bottom: 2rem; }
  .candidates-features { margin: 2.5rem 0; display: flex; flex-direction: column; gap: 1.2rem; }
  .candidates-feature {
    display: flex; align-items: flex-start; gap: 1rem;
  }
  .candidates-feature-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--gold); flex-shrink: 0; margin-top: 8px;
  }
  .candidates-feature-text { font-size: 0.9rem; color: rgba(250,250,248,0.65); line-height: 1.7; }
  .candidates-visual {
    background: var(--navy-mid);
    border-left: 1px solid rgba(197,163,90,0.1);
    display: flex; align-items: center; justify-content: center;
    padding: 4rem;
  }
  .candidates-form-preview {
    width: 100%; max-width: 360px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(197,163,90,0.2);
    padding: 2.5rem;
  }
  .form-title {
    font-family: var(--serif); font-size: 1.3rem; font-weight: 300;
    color: var(--white); margin-bottom: 1.5rem;
  }
  .form-field { margin-bottom: 1rem; }
  .form-field label {
    display: block; font-size: 0.7rem; letter-spacing: 0.12em;
    text-transform: uppercase; color: rgba(250,250,248,0.4);
    margin-bottom: 0.4rem;
  }
  .form-field input, .form-field select {
    width: 100%; background: rgba(255,255,255,0.05);
    border: 1px solid rgba(197,163,90,0.2); color: var(--white);
    padding: 0.65rem 0.9rem; font-family: var(--sans); font-size: 0.85rem;
    outline: none; transition: border-color 0.2s;
    -webkit-appearance: none;
  }
  .form-field input::placeholder { color: rgba(250,250,248,0.25); }
  .form-field input:focus, .form-field select:focus { border-color: var(--gold); }
  .form-field select option { background: var(--navy); }
  .form-submit {
    width: 100%; background: var(--gold); color: var(--navy);
    border: none; padding: 0.85rem; font-family: var(--sans);
    font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase;
    font-weight: 500; cursor: pointer; margin-top: 0.5rem;
    transition: background 0.2s;
  }
  .form-submit:hover { background: var(--gold-light); }

  /* CONTACT */
  .contact { background: var(--gold-pale); }
  .contact-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 6rem; align-items: start; margin-top: 4rem;
  }
  .contact-info { }
  .contact-item {
    display: flex; align-items: flex-start; gap: 1.2rem;
    margin-bottom: 1.8rem; padding-bottom: 1.8rem;
    border-bottom: 1px solid rgba(11,31,58,0.08);
  }
  .contact-item:last-child { border-bottom: none; }
  .contact-item-icon {
    width: 40px; height: 40px; flex-shrink: 0;
    background: var(--navy); display: flex; align-items: center; justify-content: center;
  }
  .contact-item-icon svg { width: 18px; height: 18px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
  .contact-item-label {
    font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--gray-mid); margin-bottom: 0.25rem;
  }
  .contact-item-value { font-size: 0.95rem; color: var(--navy); font-weight: 400; }
  .contact-form-wrap { background: var(--white); padding: 2.5rem; border: 1px solid rgba(197,163,90,0.2); }
  .contact-form-title {
    font-family: var(--serif); font-size: 1.5rem; font-weight: 300;
    color: var(--navy); margin-bottom: 1.5rem;
  }
  .cf-field { margin-bottom: 1rem; }
  .cf-field label {
    display: block; font-size: 0.7rem; letter-spacing: 0.12em;
    text-transform: uppercase; color: var(--gray-mid); margin-bottom: 0.4rem;
  }
  .cf-field input, .cf-field textarea {
    width: 100%; background: var(--gray-light);
    border: 1px solid transparent; color: var(--navy);
    padding: 0.7rem 0.9rem; font-family: var(--sans); font-size: 0.88rem;
    outline: none; transition: border-color 0.2s; resize: none;
  }
  .cf-field input:focus, .cf-field textarea:focus { border-color: var(--gold); }
  .cf-submit {
    background: var(--navy); color: var(--white);
    border: none; padding: 0.85rem 2.5rem; font-family: var(--sans);
    font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase;
    font-weight: 500; cursor: pointer; transition: background 0.2s;
    margin-top: 0.5rem;
  }
  .cf-submit:hover { background: var(--navy-mid); }

  /* FOOTER */
  footer {
    background: var(--navy);
    padding: 3rem 6rem;
    display: flex; align-items: center; justify-content: space-between;
    border-top: 1px solid rgba(197,163,90,0.15);
  }
  .footer-logo {
    font-family: var(--serif); font-size: 1.3rem; font-weight: 400;
    color: var(--white); letter-spacing: 0.02em;
  }
  .footer-logo span { color: var(--gold); }
  .footer-copy { font-size: 0.78rem; color: rgba(250,250,248,0.35); }
  .footer-links { display: flex; gap: 2rem; }
  .footer-links a { font-size: 0.78rem; color: rgba(250,250,248,0.4); text-decoration: none; transition: color 0.2s; }
  .footer-links a:hover { color: var(--gold); }

  /* ANIMATIONS */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .hero-content > * {
    animation: fadeUp 0.7s ease both;
  }
  .hero-content > *:nth-child(1) { animation-delay: 0.1s; }
  .hero-content > *:nth-child(2) { animation-delay: 0.25s; }
  .hero-content > *:nth-child(3) { animation-delay: 0.4s; }
  .hero-content > *:nth-child(4) { animation-delay: 0.55s; }
  .hero-visual { animation: fadeUp 1s ease 0.3s both; }

  .hero--home {
    min-height: 100vh;
    padding-top: 80px;
  }
  .hero--home .hero-shell {
    position: relative;
    z-index: 2;
    width: min(100%, 1360px);
    margin: 0 auto;
    padding: 2.5rem clamp(0.75rem, 2vw, 2rem) 4.5rem;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
    gap: clamp(2rem, 4vw, 4.5rem);
    align-items: center;
  }
  .hero--home .hero-copy {
    max-width: none;
    margin: 0;
    padding: 0;
    text-align: left;
  }
  .hero--home .hero-eyebrow {
    justify-content: flex-start;
  }
  .hero--home .hero-sub {
    max-width: 38rem;
    margin: 0.9rem 0 2.6rem;
  }
  .hero--home .hero-actions {
    justify-content: flex-start;
  }
  .hero--home .hero-map-panel {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    min-width: 0;
    width: 100%;
    animation: fadeUp 0.95s ease 0.28s both;
  }
  .hero--home .hero-map-kicker {
    align-self: center;
    margin-bottom: 0.9rem;
    justify-content: center;
  }
  .hero--home .hero-map-kicker .hero-eyebrow-line {
    display: none;
  }
  .hero--home .hero-map-kicker .hero-eyebrow-text {
    order: 1;
    font-size: 0.9375rem; /* 0.75rem + 25% */
  }
  .hero--home .hero-map-legend {
    align-self: center;
    margin: 0.7rem 0 0;
    max-width: min(26rem, 100%);
    text-align: center;
    font-size: 0.68rem;
    line-height: 1.55;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(242,240,235,0.84);
  }
  .hero--home .hero-map-frame {
    min-height: clamp(420px, 50vw, 620px);
    height: 100%;
    border: 0;
    background: transparent;
    box-shadow: none;
  }
  .hero--home .hero-map-frame::before {
    background: none;
  }

  @media (max-width: 900px) {
    nav { padding: 1rem 2rem; }
    .nav-links { display: none; }
    section { padding: 4rem 2rem; }
    .hero { grid-template-columns: 1fr; }
    .hero-content { padding: 4rem 2rem 2rem; }
    .hero-visual { display: none; }
    .hero--home {
      min-height: auto;
      padding-top: 88px;
    }
    .hero--home .hero-shell {
      grid-template-columns: 1fr;
      gap: 2rem;
      padding: 2.8rem 0.9rem 2rem;
    }
    .hero--home .hero-copy {
      text-align: left;
    }
    .hero--home .hero-eyebrow,
    .hero--home .hero-actions {
      justify-content: flex-start;
    }
    .hero--home .hero-sub {
      max-width: none;
      margin-bottom: 2rem;
    }
    .hero--home .hero-map-frame {
      min-height: 360px;
    }
    .hero--home .hero-map-kicker {
      margin-bottom: 0.7rem;
    }
    .hero--home .hero-map-legend {
      margin-top: 0.6rem;
      max-width: 100%;
      font-size: 0.62rem;
      letter-spacing: 0.05em;
    }
    .about-grid, .team-grid, .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
    .services-bento { gap: 0.55rem; margin-top: 2rem; width: 75%; }
    .services .section-body { white-space: normal; }
    .service-bento-row {
      grid-template-columns: 1fr;
      gap: 0.75rem;
    }
    .service-cell--media,
    .service-bento-row--image-right .service-cell--media,
    .service-cell--copy,
    .service-bento-row--image-right .service-cell--copy {
      grid-column: 1;
      grid-row: auto;
    }
    .service-cell { min-height: 0; }
    .service-cell--media { min-height: 112px; }
    .service-copy-inner { padding: 0.71rem 0.64rem; }
    html.js .service-bento-row[data-service-reveal="left"],
    html.js .service-bento-row[data-service-reveal="right"] {
      transform: translate3d(0, 1.5rem, 0);
    }
    html.js .service-bento-row.is-revealed { transform: translate3d(0, 0, 0); }
  
  .section-head { margin-bottom: 0; }
  .section-eyebrow { margin-bottom: 1.1rem; }
        .specs-grid { grid-template-columns: 1fr 1fr; }
    .method-steps { grid-template-columns: 1fr 1fr; }
    .coverage-map-grid { grid-template-columns: 1fr; }
    .coverage-map-copy { position: static; }
    .candidates { grid-template-columns: 1fr; }
    .candidates-content { padding: 4rem 2rem; }
    footer { flex-direction: column; gap: 1.5rem; text-align: center; padding: 2rem; }
    .strip { padding: 1rem 2rem; }
  }

  /* JUSTIFIED BODY TEXT */
  .about-text p,
  .about-value-body,
  .team-bio,
  .service-body,
  .spec-body,
  .method-step-body,
  .section-body,
  .candidates-feature-text {
    text-align: justify;
  }


/* Landing navbar logo */
.nav-logo {
  display: inline-flex;
  align-items: center;
}

.nav-logo img {
  display: block;
  width: auto;
  height: 62px;
  max-width: 253px;
  object-fit: contain;
}

.footer-logo img {
  display: block;
  width: auto;
  height: 60px;
  max-width: 253px;
  object-fit: contain;
}

/* About section fidelity */
.about-text strong {
  font-weight: 700;
  color: var(--navy);
}

.about-value {
  background: #F2F0EB;
}

.about-value-title {
  font-weight: 700;
}

.spec-card:hover {
  background: #F9F2E4;
}

/* Landing form overrides */
.landing-form-embed .wpcf7 {
  width: 100%;
}

.landing-form-embed .wpcf7 form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.landing-form-embed .wpcf7-form-control-wrap,
.landing-form-embed label {
  display: block;
  width: 100%;
}

.landing-form-embed label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}

.landing-form-embed input[type="text"],
.landing-form-embed input[type="email"],
.landing-form-embed input[type="tel"],
.landing-form-embed textarea {
  width: 100%;
  border: 1px solid transparent;
  outline: none;
  transition: border-color 0.2s ease;
  box-sizing: border-box;
}

.landing-form-embed textarea {
  min-height: 130px;
  resize: vertical;
}

.landing-form-embed .wpcf7-spinner {
  margin: 0.5rem 0 0;
}

.landing-form-embed .wpcf7-response-output {
  margin: 0.5rem 0 0 !important;
  padding: 0.75rem 1rem !important;
  font-size: 0.82rem;
  line-height: 1.6;
  border-width: 1px !important;
}

.landing-form-embed .wpcf7-not-valid-tip {
  font-size: 0.75rem;
  margin-top: 0.35rem;
}

.landing-form-embed .wpcf7-acceptance label {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.8rem;
  line-height: 1.5;
  margin: 0;
}

.landing-form-embed .wpcf7-acceptance input {
  margin-top: 0.2rem;
}

.landing-form-embed .landing-submit {
  display: inline-block;
  width: 100%;
  cursor: pointer;
}

.landing-form-embed input[type="submit"],
.landing-form-embed .wpcf7-submit {
  display: inline-block;
  width: 100%;
  cursor: pointer;
}

.landing-form-embed-dark label,
.landing-form-embed-dark .wpcf7-acceptance,
.landing-form-embed-dark .wpcf7-acceptance a,
.landing-form-embed-dark .wpcf7-response-output {
  color: rgba(250,250,248,0.82);
}

.landing-form-embed-dark input[type="text"],
.landing-form-embed-dark input[type="email"],
.landing-form-embed-dark input[type="tel"],
.landing-form-embed-dark textarea {
  background: rgba(255,255,255,0.05);
  border-color: rgba(197,163,90,0.2);
  color: var(--white);
  padding: 0.72rem 0.9rem;
  font-family: var(--sans);
  font-size: 0.86rem;
}

.landing-form-embed-dark input::placeholder,
.landing-form-embed-dark textarea::placeholder {
  color: rgba(250,250,248,0.28);
}

.landing-form-embed-dark input:focus,
.landing-form-embed-dark textarea:focus {
  border-color: var(--gold);
}

.landing-form-embed-dark .landing-submit {
  background: var(--gold);
  color: var(--navy);
  border: none;
  padding: 0.9rem 1rem;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.landing-form-embed-dark input[type="submit"],
.landing-form-embed-dark .wpcf7-submit {
  background: var(--gold);
  color: var(--navy);
  border: none;
  padding: 0.9rem 1rem;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.landing-form-embed-light label,
.landing-form-embed-light .wpcf7-acceptance,
.landing-form-embed-light .wpcf7-acceptance a,
.landing-form-embed-light .wpcf7-response-output {
  color: var(--navy);
}

.landing-form-embed-light input[type="text"],
.landing-form-embed-light input[type="email"],
.landing-form-embed-light input[type="tel"],
.landing-form-embed-light textarea {
  background: var(--gray-light);
  border-color: transparent;
  color: var(--navy);
  padding: 0.75rem 0.9rem;
  font-family: var(--sans);
  font-size: 0.88rem;
}

.landing-form-embed-light input:focus,
.landing-form-embed-light textarea:focus {
  border-color: var(--gold);
}

.landing-form-embed-light .landing-submit {
  background: var(--navy);
  color: var(--white);
  border: none;
  padding: 0.9rem 1rem;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.landing-form-embed-light input[type="submit"],
.landing-form-embed-light .wpcf7-submit {
  background: var(--navy);
  color: var(--white);
  border: none;
  padding: 0.9rem 1rem;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .nav-logo img {
    height: 48px;
    max-width: 207px;
  }

  .footer-logo img {
    height: 48px;
    max-width: 207px;
  }

  .landing-form-embed .wpcf7-acceptance label {
    font-size: 0.78rem;
  }
}

body {
  background: var(--white);
  color: var(--text);
}

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

body.admin-bar .hh-site-header {
  top: 0;
}

.elementor-location-header,
.elementor-location-footer,
.hfe-before-footer-wrap,
.site-below-footer-wrap,
#masthead,
.ast-mobile-header-wrap,
.ast-desktop-header-content {
  display: none !important;
}

.hh-site-main {
  min-height: 100vh;
}

.hh-site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 999;
  background: rgba(11, 31, 58, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(197, 163, 90, 0.2);
}

.hh-header-inner,
.hh-footer-inner {
  width: min(1200px, calc(100% - 3rem));
  margin: 0 auto;
}

.hh-header-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: nowrap;
}

.hh-site-logo,
.hh-footer-logo {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.hh-site-logo img,
.hh-footer-logo img {
  display: block;
  width: auto;
  height: 62px;
  max-width: 253px;
  object-fit: contain;
}

.hh-site-nav {
  position: static !important;
  inset: auto !important;
  z-index: auto !important;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 0;
  width: auto !important;
  padding: 0 !important;
  margin: 0 !important;
  background: transparent !important;
  border: 0 !important;
  backdrop-filter: none !important;
  overflow: visible !important;
}

.hh-menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.32rem;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 1px solid rgba(197, 163, 90, 0.28);
  background: transparent;
  cursor: pointer;
  flex-shrink: 0;
}

.hh-menu-toggle-line {
  display: block;
  width: 20px;
  height: 1px;
  background: var(--gold);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.hh-site-header.is-menu-open .hh-menu-toggle-line:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

.hh-site-header.is-menu-open .hh-menu-toggle-line:nth-child(2) {
  opacity: 0;
}

.hh-site-header.is-menu-open .hh-menu-toggle-line:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

.hh-nav-menu,
.hh-nav-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.hh-nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: nowrap;
  justify-content: center;
}

.hh-nav-menu li {
  position: relative;
  display: flex;
  align-items: center;
}

.hh-nav-menu a {
  display: inline-flex;
  align-items: center;
  color: rgba(250, 250, 248, 0.76);
  text-decoration: none;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.hh-nav-menu a:hover,
.hh-nav-menu .current-menu-item > a,
.hh-nav-menu .current_page_item > a,
.hh-nav-menu .current-menu-ancestor > a {
  color: var(--gold);
}

.hh-header-cta,
.hh-page-content .wp-block-button__link,
.hh-page-content .wp-element-button,
.hh-page-content input[type="submit"],
.hh-page-content button,
.hh-page-content .button,
.hh-post-card-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  background: var(--gold);
  color: var(--navy);
  border: 1px solid var(--gold);
  padding: 0.9rem 1.5rem;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.hh-site-logo,
.hh-header-cta {
  flex-shrink: 0;
}

.hh-header-cta:hover,
.hh-page-content .wp-block-button__link:hover,
.hh-page-content .wp-element-button:hover,
.hh-page-content input[type="submit"]:hover,
.hh-page-content button:hover,
.hh-page-content .button:hover,
.hh-post-card-link:hover {
  background: var(--gold-light);
  color: var(--navy);
}

.hh-page-shell {
  padding: 9rem 1.5rem 4rem;
  background: linear-gradient(180deg, rgba(11, 31, 58, 0.04) 0, rgba(250, 250, 248, 0) 160px), var(--white);
}

.hh-page-card {
  width: min(1100px, 100%);
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid rgba(197, 163, 90, 0.18);
  padding: 3rem;
}

.hh-page-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.hh-page-title {
  font-family: var(--serif);
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  font-weight: 400;
  line-height: 1.12;
  color: var(--navy);
  margin: 0 0 1.6rem;
}

.hh-page-meta {
  color: rgba(26, 22, 18, 0.6);
  font-size: 0.86rem;
  margin-bottom: 1.25rem;
}

.hh-page-content {
  color: var(--text);
}

.hh-page-content > *:first-child {
  margin-top: 0;
}

.hh-page-content h2,
.hh-page-content h3,
.hh-page-content h4,
.hh-page-content h5,
.hh-page-content h6 {
  font-family: var(--serif);
  color: var(--navy);
  font-weight: 400;
  line-height: 1.2;
  margin: 2rem 0 0.9rem;
}

.hh-page-content h2 {
  font-size: clamp(1.7rem, 2.5vw, 2.4rem);
}

.hh-page-content h3 {
  font-size: clamp(1.35rem, 2vw, 1.8rem);
}

.hh-page-content p,
.hh-page-content li,
.hh-page-content blockquote,
.hh-page-content td,
.hh-page-content th,
.hh-page-content label {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text);
}

.hh-page-content p,
.hh-page-content ul,
.hh-page-content ol,
.hh-page-content table,
.hh-page-content blockquote,
.hh-page-content form,
.hh-page-content .wp-block-image,
.hh-page-content .wp-block-columns {
  margin: 0 0 1.2rem;
}

.hh-page-content ul,
.hh-page-content ol {
  padding-left: 1.2rem;
}

.hh-page-content a {
  color: var(--navy);
}

.hh-page-content blockquote {
  background: var(--gray-light);
  border-left: 2px solid var(--gold);
  padding: 1.2rem 1.4rem;
}

.hh-page-content img {
  max-width: 100%;
  height: auto;
}

.hh-page-content input[type="text"],
.hh-page-content input[type="email"],
.hh-page-content input[type="tel"],
.hh-page-content input[type="url"],
.hh-page-content input[type="search"],
.hh-page-content textarea,
.hh-page-content select {
  width: 100%;
  padding: 0.8rem 0.9rem;
  border: 1px solid rgba(197, 163, 90, 0.22);
  background: var(--gray-light);
  color: var(--navy);
  font-family: var(--sans);
  font-size: 0.95rem;
}

.hh-page-content textarea {
  min-height: 140px;
  resize: vertical;
}

.hh-page-content input:focus,
.hh-page-content textarea:focus,
.hh-page-content select:focus {
  outline: none;
  border-color: var(--gold);
}

.hh-post-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.hh-post-card {
  background: var(--gray-light);
  border: 1px solid rgba(197, 163, 90, 0.16);
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.hh-post-card-media {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: rgba(26, 22, 18, 0.06);
}

.hh-post-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hh-post-card-body {
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.hh-article-hero {
  margin: 0 0 1.6rem;
}

.hh-article-hero img {
  display: block;
  width: 100%;
  height: auto;
}

.hh-post-card-meta {
  color: rgba(26, 22, 18, 0.58);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
}

.hh-post-card-title {
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 1.2;
  margin: 0 0 0.8rem;
}

.hh-post-card-title a {
  color: var(--navy);
  text-decoration: none;
}

.hh-post-card-excerpt p:last-child {
  margin-bottom: 0;
}

.navigation.pagination {
  margin-top: 2rem;
}

.navigation.pagination .nav-links {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.navigation.pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.6rem;
  min-height: 2.6rem;
  padding: 0 0.8rem;
  border: 1px solid rgba(197, 163, 90, 0.22);
  color: var(--navy);
  text-decoration: none;
}

.navigation.pagination .current {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.hh-site-footer {
  background: var(--navy);
  border-top: 1px solid rgba(197, 163, 90, 0.15);
  padding: 2.4rem 0;
}

.hh-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.hh-footer-brand {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.hh-footer-copy {
  margin: 0;
  font-size: 0.78rem;
  color: rgba(250, 250, 248, 0.4);
}

.hh-footer-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.hh-footer-links a {
  color: rgba(250, 250, 248, 0.72);
  font-size: 0.8rem;
  text-decoration: none;
}

.hh-footer-links a:hover {
  color: var(--gold);
}

@media (max-width: 1024px) {
  .hh-header-inner,
  .hh-footer-inner {
    width: min(100%, calc(100% - 2rem));
  }

  .hh-site-header {
    overflow: visible;
  }

  .hh-header-inner {
    min-height: 76px;
    padding: 0.75rem 0;
    gap: 1rem;
    align-items: center;
  }

  .hh-site-logo img {
    height: 50px;
    max-width: min(190px, 100%);
  }

  .hh-menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .hh-header-cta {
    display: none;
  }

  .hh-site-nav {
    position: absolute !important;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    display: none;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    background: rgba(11, 31, 58, 0.98) !important;
    border-top: 1px solid rgba(197, 163, 90, 0.14) !important;
    border-bottom: 1px solid rgba(197, 163, 90, 0.2) !important;
    backdrop-filter: blur(12px) !important;
  }

  .hh-site-header.is-menu-open .hh-site-nav {
    display: block;
  }

  .hh-nav-menu {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
    padding: 0.85rem 1rem 1.1rem;
  }

  .hh-nav-menu li {
    display: block;
    width: 100%;
    border-bottom: 1px solid rgba(197, 163, 90, 0.12);
  }

  .hh-nav-menu li:last-child {
    border-bottom: 0;
  }

  .hh-nav-menu a {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 0.95rem 0;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
  }

  .hh-page-card {
    padding: 2rem;
  }
}

@media (max-width: 900px) {
  body.admin-bar .hh-site-header {
    top: 0;
  }

  .coverage-map {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .coverage-map-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .coverage-map-copy {
    position: static;
  }

  .coverage-map-frame--interactive {
    min-height: 380px;
  }

  .coverage-map-tooltip {
    display: none;
  }

  .coverage-map-links {
    gap: 0.6rem;
  }

  .coverage-map-link {
    font-size: 0.74rem;
    padding: 0.6rem 0.7rem;
  }

  .hh-post-grid {
    grid-template-columns: 1fr;
  }

  .hh-footer-inner,
  .hh-footer-brand {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .hero--home .hero-shell {
    padding: 2.4rem 0.7rem 1.5rem;
  }

  .hero--home .hero-map-frame {
    min-height: 290px;
  }

  .hh-page-shell {
    padding-top: 8.5rem;
  }

  .hh-page-card {
    padding: 1.4rem;
  }

  .hh-site-logo img,
  .hh-footer-logo img {
    height: 44px;
    max-width: 170px;
  }

  .hh-header-inner,
  .hh-footer-inner {
    width: min(100%, calc(100% - 1.5rem));
  }

  .hh-menu-toggle {
    width: 46px;
    height: 46px;
  }

  .coverage-map {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .coverage-map-frame--interactive {
    min-height: 280px;
  }

  .coverage-map-link {
    font-size: 0.72rem;
  }
}

/* ── Metodología orbital ── */
.hh-orbit-hint {
  text-align: right;
  font-family: var(--font-serif, 'Cormorant Garamond', Georgia, serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--gold);
  margin-top: 0.4rem;
  margin-left: auto;
  max-width: 100%;
}
.hh-orbit-wrap {
  position: relative;
  width: 760px;
  height: 700px;
  margin: 2.25rem auto 0;
  max-width: 100%;
}
.hh-orbit-lines {
  position: absolute;
  top: 0; left: 0;
  width: 760px;
  height: 700px;
  pointer-events: none;
}
.hh-orbit-lines line {
  stroke: rgba(28, 43, 74, 0.22);
  stroke-width: 1;
  transition: stroke 0.3s ease, stroke-width 0.3s ease;
}
.hh-orbit-lines line.is-active {
  stroke: var(--gold);
  stroke-width: 1.5;
}
.hh-orbit-hub {
  position: absolute;
  width: 190px; height: 190px;
  left: 285px; top: 255px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}
.hh-orbit-hub-k {
  font-family: var(--font-serif, 'Cormorant Garamond', Georgia, serif);
  font-weight: 700;
  font-size: 1.875rem;
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
}
.hh-orbit-hub-v {
  font-family: var(--font-sans, 'DM Sans', system-ui, sans-serif);
  font-weight: 700;
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.hh-orbit-node {
  position: absolute;
  width: 112px; height: 112px;
  border-radius: 50%;
  background: var(--gray-light, #F7F5F0);
  border: 1px solid rgba(28, 43, 74, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: default;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
  z-index: 2;
}
.hh-orbit-node:hover {
  background: var(--navy);
  border-color: var(--navy);
  transform: scale(1.06);
}
.hh-orbit-node svg {
  width: 30px; height: 30px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.4;
  transition: stroke 0.3s ease;
}
.hh-orbit-node:hover svg { stroke: #E4D2A8; }
.hh-orbit-label {
  position: absolute;
  width: 195px;
  font-size: 0.97rem;
  font-weight: 500;
  color: var(--navy);
  pointer-events: none;
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  line-height: 1.15;
}
.hh-orbit-num {
  font-family: var(--font-sans, 'DM Sans', system-ui, sans-serif);
  font-weight: 700;
  font-size: 1rem;
  color: var(--gold);
  font-style: normal;
}
.hh-orbit-txt {
  font-family: var(--font-serif, 'Cormorant Garamond', Georgia, serif);
  font-size: 1.3rem;
  font-weight: 600;
  font-style: italic;
  color: var(--navy);
}
.hh-orbit-tooltip {
  position: absolute;
  width: 230px;
  background: var(--white, #fff);
  border: 1px solid #E4D2A8;
  border-radius: 10px;
  box-shadow: 0 12px 28px rgba(28, 43, 74, 0.16);
  padding: 14px 16px;
  opacity: 0;
  transform: translateY(4px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 5;
}
.hh-orbit-tooltip.is-active {
  opacity: 1;
  transform: translateY(0);
}
.hh-orbit-tooltip-name {
  font-family: var(--font-serif, 'Cormorant Garamond', Georgia, serif);
  font-size: 1.15rem;
  font-weight: 600;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 6px;
}
.hh-orbit-tooltip-desc {
  font-family: var(--font-sans, 'DM Sans', system-ui, sans-serif);
  font-size: 0.84rem;
  line-height: 1.55;
  color: var(--gray-mid, #6B7280);
}
.hh-orbit-detail {
  max-width: 560px;
  margin: 2.75rem auto 0;
  text-align: center;
  min-height: 7.5rem;
  height: 7.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
.hh-orbit-detail-name {
  font-family: var(--font-serif, 'Cormorant Garamond', Georgia, serif);
  font-size: 1.35rem;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 6px;
}
.hh-orbit-detail-desc {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--gray-mid, #6B7280);
  max-width: 100%;
  overflow: hidden;
}
.hh-orbit-fallback {
  display: none;
  flex-direction: column;
  margin-top: 1.5rem;
}
.hh-orbit-fallback.is-visible { display: flex; }
.hh-orbit-fallback-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 4px;
  border-bottom: 1px solid rgba(28, 43, 74, 0.22);
}
.hh-orbit-fallback-ic {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid #E4D2A8;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hh-orbit-fallback-ic svg {
  width: 20px; height: 20px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.4;
}
.hh-orbit-fallback-t {
  font-family: var(--font-serif, 'Cormorant Garamond', Georgia, serif);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--navy);
}
.hh-orbit-fallback-d {
  font-size: 0.84rem;
  line-height: 1.55;
  color: var(--gray-mid, #6B7280);
  margin-top: 4px;
}
@media (max-width: 820px) {
  .hh-orbit-wrap,
  .hh-orbit-detail,
  .hh-orbit-hint { display: none !important; }
  .hh-orbit-fallback { display: flex !important; }
}
@media (prefers-reduced-motion: reduce) {
  .hh-orbit-wrap,
  .hh-orbit-detail,
  .hh-orbit-hint { display: none !important; }
  .hh-orbit-fallback { display: flex !important; }
  .hh-orbit-node { transition: none; }
  .hh-orbit-node:hover { transform: none; }
}
@media (max-width: 900px) {
  #servicios { padding-bottom: 2rem; }
  #metodologia { padding-top: 2rem; }
}




/* Client review refinements 2026-08-31 */
.services-bento {
  width: 100%;
}

.service-bento-row {
  width: min(75%, 100%);
}

.service-bento-row--from-left {
  justify-self: start;
}

.service-bento-row--from-right {
  justify-self: end;
}

.hh-orbit-hint {
  text-align: left;
  margin-left: 0;
  margin-right: auto;
  max-width: 34rem;
  font-size: 0.92rem;
}

.hh-orbit-wrap {
  transform: scale(0.86);
  transform-origin: top center;
  margin-top: 1.5rem;
  margin-bottom: -5.5rem;
}

@media (max-width: 900px) {
  .services-bento,
  .service-bento-row {
    width: 100%;
    justify-self: stretch;
  }

  .hh-orbit-wrap {
    transform: none;
    margin-bottom: 0;
  }
}
/* End client review refinements 2026-08-31 */

/* Client expertise/methodology refinements 2026-09-01 */
.expertise-sub {
  margin: 0.15rem 0 3.2rem;
  font-family: var(--serif);
  font-size: 1.08rem;
  font-style: italic;
  color: rgba(26,22,18,0.56);
}
.expertise-rows {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 0;
  margin-top: 2rem;
}
.expertise-row-item { border-bottom: 1px solid rgba(11,31,58,0.16); }
.expertise-row-item:nth-child(-n+2) { border-top: 1px solid rgba(11,31,58,0.16); }
.expertise-row-item:nth-child(odd) { border-right: 1px solid rgba(11,31,58,0.16); padding-right: clamp(1.5rem, 4vw, 3.25rem); }
.expertise-row-item:nth-child(even) { padding-left: clamp(1.5rem, 4vw, 3.25rem); }
.expertise-row-head {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
  margin: 0.5rem 0;
  padding: 1.25rem 1rem;
  border: 0;
  border-radius: 14px;
  background: transparent;
  color: var(--navy);
  text-align: left;
  cursor: pointer;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.expertise-row-num {
  width: 1.6rem;
  flex-shrink: 0;
  color: var(--gold);
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  opacity: 0.55;
}
.expertise-row-icon { width: 26px; height: 26px; flex-shrink: 0; stroke: currentColor; fill: none; stroke-width: 1.4; }
.expertise-row-name {
  flex: 1;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2vw, 1.55rem);
  font-style: italic;
  font-weight: 700;
  line-height: 1.1;
  color: var(--navy);
}
.expertise-row-arrow { width: 14px; height: 14px; flex-shrink: 0; stroke: var(--gold); fill: none; stroke-width: 1.6; transition: transform 0.35s cubic-bezier(0.22, 0.61, 0.36, 1); }
.expertise-row-body { display: grid; grid-template-rows: 0fr; overflow: hidden; opacity: 0; transition: grid-template-rows 0.42s cubic-bezier(0.22, 0.61, 0.36, 1), opacity 0.3s ease; }
.expertise-row-copy { min-height: 0; overflow: hidden; padding: 0.85rem 0.25rem 1.6rem 3.75rem; color: var(--gray-mid); font-size: 0.9rem; line-height: 1.75; }
.expertise-row-item.is-active .expertise-row-head,
.expertise-row-head:focus-visible { background: var(--navy); box-shadow: 0 14px 28px -18px rgba(11,31,58,0.55); outline: none; }
.expertise-row-item.is-active .expertise-row-num,
.expertise-row-item.is-active .expertise-row-icon,
.expertise-row-head:focus-visible .expertise-row-num,
.expertise-row-head:focus-visible .expertise-row-icon { color: var(--gold-light); opacity: 1; }
.expertise-row-item.is-active .expertise-row-name,
.expertise-row-head:focus-visible .expertise-row-name { color: var(--white); }
.expertise-row-item.is-active .expertise-row-arrow,
.expertise-row-head:focus-visible .expertise-row-arrow { stroke: var(--gold-light); transform: rotate(90deg); }
.expertise-row-item.is-active .expertise-row-body { grid-template-rows: 1fr; opacity: 1; }
.method { padding-bottom: 3.2rem; }
.hh-orbit-detail { display: none !important; }
.team { padding-top: 4.4rem; }
@media (max-width: 900px) {
  .expertise-rows { grid-template-columns: 1fr; }
  .expertise-row-item:nth-child(-n+2) { border-top: 0; }
  .expertise-row-item:first-child { border-top: 1px solid rgba(11,31,58,0.16); }
  .expertise-row-item:nth-child(odd) { border-right: 0; padding-right: 0.25rem; }
  .expertise-row-item:nth-child(even) { padding-left: 0.25rem; }
  .expertise-row-copy { padding-left: 3rem; }
  .method, .team { padding-top: 4rem; padding-bottom: 4rem; }
}
/* End client expertise/methodology refinements 2026-09-01 */
/* Compact expertise viewport fit 2026-09-01 */
.specs {
  padding-top: clamp(4rem, 8vh, 6rem);
  padding-bottom: clamp(3.4rem, 7vh, 5rem);
}
.specs .section-title {
  font-size: clamp(2.45rem, 6vh, 4.15rem);
  margin-bottom: 0.65rem;
}
.expertise-sub { margin-bottom: clamp(1.35rem, 3vh, 2.35rem); }
.expertise-rows { margin-top: 1rem; }
.expertise-row-head {
  min-height: clamp(4.6rem, 10.5vh, 6.4rem);
  margin: 0.28rem 0;
  padding: clamp(0.58rem, 1.45vh, 0.95rem) 0.95rem;
}
.expertise-row-name { font-size: clamp(1.14rem, 2.85vh, 1.45rem); }
.expertise-row-icon {
  width: clamp(20px, 2.8vh, 24px);
  height: clamp(20px, 2.8vh, 24px);
}
.expertise-row-copy {
  padding-top: 0.55rem;
  padding-bottom: 1.05rem;
  font-size: clamp(0.82rem, 1.7vh, 0.9rem);
  line-height: 1.58;
}
@media (min-width: 901px) and (max-height: 780px) {
  .specs {
    padding-top: 3.25rem;
    padding-bottom: 3rem;
  }
  .specs .section-eyebrow { margin-bottom: 0.75rem; }
  .specs .section-title { font-size: clamp(2.3rem, 5.8vh, 3.1rem); }
  .expertise-sub {
    margin-bottom: 1rem;
    font-size: 1rem;
  }
  .expertise-row-head {
    min-height: 4.15rem;
    padding-top: 0.45rem;
    padding-bottom: 0.45rem;
  }
  .expertise-row-name { font-size: 1.28rem; }
}
/* End compact expertise viewport fit 2026-09-01 */

/* Country hero and service typography refinements 2026-09-02 */
.hero--country .hero-content {
  max-width: min(1120px, calc(100% - 3rem));
}

.hero--country h1 {
  max-width: 19.5ch;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(2.9rem, 4.5vw, 4.1rem);
  line-height: 1.02;
  letter-spacing: -0.018em;
}

.service-title,
body.page-id-1419 h2.qodef-m-title,
body.page-id-1419 .elementor-heading-title,
body.page-id-1528 h2.qodef-m-title,
body.page-id-1528 .elementor-heading-title {
  font-family: var(--serif) !important;
  font-style: italic !important;
  font-weight: 700 !important;
  letter-spacing: normal !important;
}

.service-title {
  font-size: clamp(1.35rem, 2vw, 1.55rem);
  line-height: 1.12;
}

body.page-id-1419 h2.qodef-m-title,
body.page-id-1419 .elementor-heading-title,
body.page-id-1528 h2.qodef-m-title,
body.page-id-1528 .elementor-heading-title {
  color: var(--navy);
}

body.page-id-1419 h2.qodef-m-title,
body.page-id-1528 h2.qodef-m-title {
  font-size: clamp(1.8rem, 3.3vw, 3.1rem) !important;
}

body.page-id-1419 .elementor-heading-title,
body.page-id-1528 .elementor-heading-title {
  font-size: clamp(1.65rem, 2.8vw, 2.5rem) !important;
}

@media (max-width: 900px) {
  .hero--country .hero-content {
    max-width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .hero--country h1 {
    max-width: min(18.8ch, calc(100vw - 2rem));
    font-size: clamp(2.05rem, 8.6vw, 2.35rem);
    line-height: 1;
    letter-spacing: -0.022em;
  }

  .hh-orbit-fallback-d {
    text-align: justify;
  }

  .team-bio {
    text-align: left;
  }
}
/* End country hero and service typography refinements 2026-09-02 */

/* Servicios: bloque centrado y columnas fluidas en escritorio 2026-09-08 */
@media (min-width: 901px) {
  .services-bento {
    width: min(100%, 78.1rem);
    margin-left: auto;
    margin-right: auto;
  }

  .service-bento-row,
  .service-bento-row--from-left,
  .service-bento-row--from-right {
    width: 100%;
    max-width: 100%;
    justify-self: stretch;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
  }

  .service-cell {
    min-width: 0;
    min-height: 0;
    box-sizing: border-box;
  }

  .service-cell--media {
    grid-column: 1;
    grid-row: 1;
    width: auto;
    max-width: 100%;
    min-width: 0;
    height: 100%;
    min-height: 0;
  }

  .service-cell--copy {
    grid-column: 2;
    grid-row: 1;
    width: auto;
    max-width: 100%;
    min-width: 0;
    height: 100%;
  }

  .service-copy-inner,
  .service-body {
    max-width: 100%;
  }

  .service-bento-row--image-right {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
  }

  .service-bento-row--image-right .service-cell--copy {
    grid-column: 2;
    grid-row: 1;
  }

  .service-bento-row--image-right .service-cell--media {
    grid-column: 3;
    grid-row: 1;
    width: auto;
    max-width: 100%;
  }
}


/* SMP Geo SEO: el header fijo tapaba el contenido de las URLs rewrite */
.smp-rewrite-main {
  margin-top: 150px;
}
