/* ═══════════════════════════════════
     TOKENS
  ═══════════════════════════════════ */
  :root {
    --ink:       #09181F;
    --p0:        #0B2030;
    --p1:        #0E2A3D;
    --p2:        #122F45;
    --white:     #F6F4F0;
    --off:       #ECEAE5;
    --sand:      #C4B08A;
    --sand2:     #D9CEBA;
    --copper:    #B8521A;
    --copper2:   #8F3D0F;
    --copper3:   #D4682A;
    --grey:      #5E6874;
    --grey2:     #E8E6E1;
    --bd:        rgba(196,176,138,.18);
    --bdl:       rgba(94,104,116,.13);
    --fh: 'Barlow Condensed', sans-serif;
    --fb: 'Barlow', sans-serif;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    font-family: var(--fb);
    background: var(--white);
    color: var(--ink);
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
  }
  a   { text-decoration: none; color: inherit; }
  p   { max-width: 64ch; }
  img { display: block; max-width: 100%; }

  /* ═══════════════════════════════════
     TYPE
  ═══════════════════════════════════ */
  h1,h2,h3,h4 { font-family: var(--fh); line-height: 1.05; letter-spacing: .01em; }
  h1 { font-size: clamp(2.8rem,6.5vw,5rem);   font-weight: 800; text-transform: uppercase; }
  h2 { font-size: clamp(1.95rem,4vw,3.1rem);  font-weight: 700; text-transform: uppercase; }
  h3 { font-size: .9rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; }

  .ey {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: var(--fb); font-size: .67rem; font-weight: 600;
    letter-spacing: .22em; text-transform: uppercase; color: var(--copper);
    margin-bottom: .85rem;
  }
  .ey::before {
    content: ''; display: block;
    width: 18px; height: 1.5px; background: var(--copper); flex-shrink: 0;
  }

  .rule { display: block; width: 40px; height: 2.5px; background: var(--copper); margin: 16px 0 28px; }

  /* ═══════════════════════════════════
     LAYOUT
  ═══════════════════════════════════ */
  .w  { width: 100%; max-width: 1160px; margin: 0 auto; padding: 0 32px; }
  section { padding: 108px 0; display: block; }

  /* ═══════════════════════════════════
     BUTTONS
  ═══════════════════════════════════ */
  .btn {
    display: inline-flex; align-items: center; gap: 9px;
    font-family: var(--fb); font-size: .79rem; font-weight: 600;
    letter-spacing: .13em; text-transform: uppercase;
    padding: 15px 34px; border: none; cursor: pointer; border-radius: 0;
    white-space: nowrap;
    transition: background .2s, color .2s, box-shadow .2s, transform .15s;
  }
  .btn:hover   { transform: translateY(-1px); }
  .btn:active  { transform: translateY(0); }
  .btn svg     { width: 13px; height: 13px; flex-shrink: 0; transition: transform .2s; }
  .btn:hover svg { transform: translateX(3px); }

  .bc  { background: var(--copper); color: var(--white); }
  .bc:hover  { background: var(--copper2); box-shadow: 0 6px 24px rgba(184,82,26,.4); }

  .bow { background: transparent; color: var(--white); border: 1.5px solid rgba(246,244,240,.38); }
  .bow:hover { border-color: var(--white); background: rgba(246,244,240,.07); }

  .boc { background: transparent; color: var(--copper); border: 1.5px solid var(--copper); padding: 12px 26px; }
  .boc:hover { background: var(--copper); color: var(--white); }

  /* ═══════════════════════════════════
     NAV
  ═══════════════════════════════════ */
  #nav {
    position: fixed; inset: 0 0 auto 0; z-index: 200;
    transition: background .35s, box-shadow .35s;
  }
  #nav.solid {
    background: var(--p0);
    box-shadow: 0 1px 0 rgba(255,255,255,.05), 0 4px 28px rgba(0,0,0,.5);
  }
  .nb {
    max-width: 1160px; margin: 0 auto; padding: 0 32px;
    height: 72px; display: flex; align-items: center; justify-content: space-between;
  }
  .brand {
    display: flex; align-items: center; gap: 13px;
    color: var(--white); flex-shrink: 0;
  }
  .bico { width: 42px; height: 42px; flex-shrink: 0; }
  .bname {
    font-family: var(--fh); font-size: 1.4rem; font-weight: 700;
    letter-spacing: .1em; text-transform: uppercase; color: var(--white); display: block;
  }
  .bsub {
    font-size: .57rem; font-weight: 500; letter-spacing: .16em;
    text-transform: uppercase; color: var(--sand); display: block; margin-top: 2px;
  }
  .nlinks { display: flex; list-style: none; gap: 34px; align-items: center; }
  .nlinks a {
    font-size: .72rem; font-weight: 600; letter-spacing: .13em;
    text-transform: uppercase; color: rgba(246,244,240,.82);
    transition: color .2s; padding: 4px 0; position: relative;
  }
  .nlinks a::after {
    content: ''; position: absolute; bottom: -2px; left: 0; right: 100%;
    height: 1.5px; background: var(--copper); transition: right .25s;
  }
  .nlinks a:hover { color: var(--white); }
  .nlinks a:hover::after { right: 0; }
  .ncta { margin-left: 8px; }

  .ham {
    display: none; flex-direction: column; gap: 5px;
    cursor: pointer; padding: 6px; background: none; border: none;
  }
  .ham span {
    display: block; width: 26px; height: 2px;
    background: var(--white); transition: all .3s; transform-origin: center;
  }
  .ham.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .ham.open span:nth-child(2) { opacity: 0; }
  .ham.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  #drawer {
    display: none; position: fixed; top: 72px; left: 0; right: 0;
    background: var(--p0); border-top: 1px solid var(--bd); z-index: 199; padding: 8px 0 20px;
  }
  #drawer.open { display: block; }
  #drawer a {
    display: block; padding: 13px 32px; font-size: .84rem; font-weight: 600;
    letter-spacing: .1em; text-transform: uppercase; color: rgba(246,244,240,.85);
    border-bottom: 1px solid rgba(255,255,255,.05); transition: color .2s, background .2s;
  }
  #drawer a:last-child { border-bottom: none; margin: 12px 32px 0; width: calc(100% - 64px); text-align: center; justify-content: center; }
  #drawer a:hover { color: var(--white); background: rgba(255,255,255,.04); }

  /* ═══════════════════════════════════
     HERO
  ═══════════════════════════════════ */
  #hero {
    position: relative; min-height: 100vh;
    display: flex; flex-direction: column; justify-content: flex-end;
    overflow: hidden; background: var(--ink);
  }
  .hbg {
    position: absolute; inset: 0;
    background-size: cover;
    background-position: center;
  }
  /* Overlay sits on top of hero image */
  .hbg::after {
    content: '';
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse 80% 65% at 70% 15%, rgba(184,82,26,.12) 0%, transparent 55%),
      radial-gradient(ellipse 50% 40% at 15% 80%, rgba(196,176,138,.04) 0%, transparent 50%),
      linear-gradient(168deg, rgba(13,31,45,.65) 0%, rgba(9,21,32,.58) 35%, rgba(6,13,22,.68) 70%, rgba(4,11,18,.72) 100%);
  }
  .hmtn {
    position: absolute; bottom: 0; left: 0; right: 0; pointer-events: none;
  }
  .hcon {
    position: relative; z-index: 2;
    padding: 148px 32px 0; max-width: 1160px; margin: 0 auto; width: 100%;
  }
  .hkick {
    display: inline-flex; align-items: center; gap: 12px;
    font-size: .67rem; font-weight: 600; letter-spacing: .24em;
    text-transform: uppercase; color: var(--sand); margin-bottom: 22px;
  }
  .hkick::before {
    content: ''; display: block;
    width: 6px; height: 6px; border-radius: 50%; background: var(--copper); flex-shrink: 0;
  }
  .hh1    { color: var(--white); max-width: 860px; }
  .hac    { color: var(--sand); }
  .hdiv   {
    display: flex; align-items: center; gap: 16px; margin: 26px 0;
  }
  .hdivl  { width: 52px; height: 2px; background: var(--copper); flex-shrink: 0; }
  .hdivt  {
    font-size: .69rem; font-weight: 500; letter-spacing: .2em;
    text-transform: uppercase; color: rgba(196,176,138,.5);
  }
  .hfrase {
    font-size: clamp(1rem,1.6vw,1.18rem); font-weight: 500;
    color: var(--sand); max-width: 560px; line-height: 1.6; margin-bottom: 14px;
    letter-spacing: .01em;
  }
  .hsub   {
    font-size: clamp(.88rem,1.3vw,1rem); font-weight: 300;
    color: rgba(246,244,240,.78); max-width: 560px; line-height: 1.82; margin-bottom: 42px;
  }
  .hsub strong { color: rgba(246,244,240,.85); font-weight: 500; }
  .hbtns  { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 80px; }

  .hbar   {
    position: relative; z-index: 2;
    border-top: 1px solid rgba(255,255,255,.07);
    background: rgba(9,24,31,.65); backdrop-filter: blur(12px);
  }
  .hbari  {
    max-width: 1160px; margin: 0 auto; padding: 0 32px;
    display: grid; grid-template-columns: repeat(3,1fr);
  }
  .hstat  {
    padding: 26px 32px; border-right: 1px solid rgba(255,255,255,.07);
  }
  .hstat:first-child { padding-left: 0; }
  .hstat:last-child  { border-right: none; }
  .sv { font-family: var(--fh); font-size: 1.65rem; font-weight: 700; color: var(--sand); letter-spacing: .04em; line-height: 1; display: block; }
  .sl { font-size: .66rem; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; color: rgba(246,244,240,.58); display: block; margin-top: 5px; }

  /* ═══════════════════════════════════
     NOSOTROS
  ═══════════════════════════════════ */
  #nosotros { background: var(--white); }
  .nos-g { display: grid; grid-template-columns: 5fr 6fr; gap: 88px; align-items: start; }

  .nos-vis {
    position: relative; background: var(--p0);
    aspect-ratio: 3/4; overflow: hidden;
  }
  .nos-vis::before {
    content: ''; position: absolute; inset: 0;
    background:
      radial-gradient(ellipse 70% 55% at 38% 32%, rgba(184,82,26,.17) 0%, transparent 58%),
      linear-gradient(155deg, #0E2A3D 0%, #091824 55%, #050D14 100%);
  }
  .nos-vis svg { position: absolute; inset: 0; width: 100%; height: 100%; }
  .nos-vis-cap {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 40px 28px 22px;
    background: linear-gradient(to top, rgba(9,24,31,.9) 0%, transparent 100%);
    font-size: .63rem; font-weight: 600; letter-spacing: .18em;
    text-transform: uppercase; color: var(--sand); opacity: .72;
  }

  .nos-r  { padding-top: 4px; }
  .nos-r p { color: var(--grey); margin-bottom: 18px; font-size: .96rem; }
  .nos-r p.lead { font-size: 1.06rem; color: var(--ink); font-weight: 500; line-height: 1.72; }
  .nos-cq {
    margin-top: 34px; padding: 20px 22px;
    border-left: 3px solid var(--copper); background: var(--off);
  }
  .nos-cq p { font-size: .9rem; color: var(--ink); font-weight: 500; margin: 0; max-width: none; line-height: 1.65; }

  /* ═══════════════════════════════════
     SERVICIOS
  ═══════════════════════════════════ */
  #servicios { background: var(--p0); color: var(--white); }

  .srv-hd {
    display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
    align-items: end; margin-bottom: 60px; padding-bottom: 44px;
    border-bottom: 1px solid var(--bd);
  }
  .srv-hd-r p { color: rgba(246,244,240,.75); font-size: .96rem; max-width: none; }

  .srv-g {
    display: grid; grid-template-columns: repeat(3,1fr);
    gap: 1px; background: rgba(255,255,255,.06);
  }
  .sc {
    background: var(--p0); padding: 34px 28px 38px;
    position: relative; overflow: hidden;
    transition: background .25s;
  }
  .sc::before {
    content: ''; position: absolute; top: 0; left: 0;
    width: 100%; height: 3px; background: var(--copper);
    transform: scaleX(0); transform-origin: left; transition: transform .28s;
  }
  .sc:hover { background: var(--p1); }
  .sc:hover::before { transform: scaleX(1); }

  .scn {
    font-family: var(--fh); font-size: 4rem; font-weight: 800;
    color: rgba(255,255,255,.12); position: absolute;
    top: 14px; right: 18px; line-height: 1; user-select: none;
    transition: color .3s;
  }
  .sc:hover .scn { color: rgba(184,82,26,.22); }

  .sico { width: 34px; height: 34px; color: var(--copper); margin-bottom: 18px; }
  .sc h3 { color: var(--white); font-size: .86rem; margin-bottom: 10px; line-height: 1.3; font-weight: 700; }
  .sc p  { font-size: .85rem; color: rgba(246,244,240,.82); line-height: 1.72; max-width: none; font-weight: 400; }

  .sc-wide {
    grid-column: 1 / -1;
    display: grid; grid-template-columns: 44px 1fr 1fr;
    gap: 0 40px; padding: 34px 38px; align-items: start;
  }
  .sc-wide .scn { position: static; font-size: 2.8rem; line-height: 1.1; margin-top: 10px; }
  .sc-wide p.sub { color: rgba(246,244,240,.68); font-size: .85rem; font-weight: 400; line-height: 1.75; max-width: none; padding-top: 56px; }

  /* ═══════════════════════════════════
     DIFERENCIAL
  ═══════════════════════════════════ */
  #diferencial { background: var(--white); }

  .dif-l { display: grid; grid-template-columns: 5fr 7fr; gap: 96px; align-items: start; }
  .dif-sticky { position: sticky; top: 92px; }
  .dif-sticky p { color: var(--grey); margin-top: 14px; font-size: .98rem; line-height: 1.8; }

  .dif-rows { display: flex; flex-direction: column; }
  .dr {
    padding: 34px 0; border-bottom: 1px solid var(--bdl);
    display: grid; grid-template-columns: 50px 1fr; gap: 22px; align-items: start;
  }
  .dr:first-child { border-top: 1px solid var(--bdl); }
  .di { font-family: var(--fh); font-size: .67rem; font-weight: 700; letter-spacing: .16em; color: var(--copper); padding-top: 3px; }
  .dr h3 { font-size: .88rem; color: var(--ink); margin-bottom: 9px; letter-spacing: .06em; }
  .dr p  { font-size: .88rem; color: var(--grey); max-width: none; line-height: 1.72; font-weight: 400; }

  /* ═══════════════════════════════════
     CLIENTES
  ═══════════════════════════════════ */
  #clientes { background: var(--off); }

  .cli-h  { margin-bottom: 52px; }
  .cli-h p { color: var(--ink); margin-top: 12px; opacity: .7; }

  .cli-g { display: grid; grid-template-columns: repeat(2,1fr); gap: 1px; background: rgba(255,255,255,.06); margin-bottom: 1px; }
  .cc {
    background: var(--p0); padding: 34px 30px;
    position: relative; transition: background .2s;
  }
  .cc:hover { background: var(--p1); }
  .cc::before {
    content: ''; position: absolute;
    top: 0; left: 0; right: 0; height: 2px;
    background: var(--copper); opacity: 0; transition: opacity .2s;
  }
  .cc:hover::before { opacity: 1; }
  .ccn { font-family: var(--fh); font-size: .63rem; font-weight: 700; letter-spacing: .2em; color: var(--copper); margin-bottom: 12px; display: block; }
  .cc h3 { font-size: .88rem; color: var(--white); margin-bottom: 10px; font-weight: 700; }
  .cc p  { font-size: .87rem; color: rgba(246,244,240,.82); max-width: none; line-height: 1.7; }

  .cbar {
    background: var(--p2); padding: 38px 44px;
    display: flex; align-items: center; justify-content: space-between; gap: 28px;
  }
  .cbar p { font-size: 1.02rem; font-weight: 500; color: rgba(246,244,240,.85); max-width: 52ch; line-height: 1.6; }
  .cbar p strong { color: var(--white); }

  /* ═══════════════════════════════════
     ZONA
  ═══════════════════════════════════ */
  #zona { background: var(--ink); color: var(--white); padding: 0; overflow: hidden; }

  .zona-l { display: grid; grid-template-columns: 1fr 1fr; min-height: 680px; }

  .zona-p {
    padding: 96px 60px 96px 32px;
    max-width: 620px; margin-left: auto;
    display: flex; flex-direction: column; justify-content: center;
  }
  .zona-p p { color: rgba(246,244,240,.78); font-size: .96rem; margin-top: 18px; line-height: 1.8; max-width: none; }

  .zona-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 30px; }
  .zt {
    font-size: .63rem; font-weight: 700; letter-spacing: .18em;
    text-transform: uppercase; padding: 6px 12px;
    border: 1px solid rgba(196,176,138,.2); color: var(--sand);
    background: rgba(196,176,138,.04);
  }
  .zona-hl {
    margin-top: 36px; padding: 22px;
    border-left: 3px solid var(--copper); background: rgba(184,82,26,.07);
  }
  .zona-hl p { font-size: .87rem; color: rgba(246,244,240,.82); margin: 0; font-weight: 400; }

  .zona-map {
    position: relative; background: var(--p1); overflow: hidden;
    display: flex; align-items: center; justify-content: center;
  }
  .zona-map::before {
    content: ''; position: absolute; inset: 0;
    background:
      radial-gradient(ellipse 60% 55% at 52% 42%, rgba(184,82,26,.22) 0%, transparent 60%),
      radial-gradient(ellipse 45% 38% at 25% 68%, rgba(196,176,138,.07) 0%, transparent 50%),
      linear-gradient(140deg, #0E2A3D 0%, #091824 100%);
  }
  .zona-svg { position: relative; z-index: 1; width: 86%; max-width: 420px; }

  /* ═══════════════════════════════════
     CONTACTO
  ═══════════════════════════════════ */
  #contacto { background: var(--p0); color: var(--white); }

  .ctc-g { display: grid; grid-template-columns: 4fr 6fr; gap: 92px; align-items: start; }

  .ctc-i > p { color: rgba(246,244,240,.78); margin: 16px 0 40px; font-size: .96rem; line-height: 1.8; }

  .ctc-rows { display: flex; flex-direction: column; }
  .ci {
    display: flex; align-items: flex-start; gap: 15px;
    padding: 19px 0; border-bottom: 1px solid var(--bd);
  }
  .ci:first-child { border-top: 1px solid var(--bd); }
  .ci-ico {
    width: 38px; height: 38px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    border: 1px solid rgba(184,82,26,.3); color: var(--copper);
  }
  .ci-ico svg { width: 15px; height: 15px; }
  .cilbl { font-size: .61rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: rgba(246,244,240,.58); display: block; margin-bottom: 3px; }
  .cival { font-size: .9rem; color: rgba(246,244,240,.75); }
  .cival a { color: var(--sand2); transition: color .2s; }
  .cival a:hover { color: var(--white); }

  .fnote { font-size: .78rem; color: rgba(246,244,240,.72); letter-spacing: .04em; margin-bottom: 26px; }

  .frow { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
  .fg   { margin-bottom: 13px; }
  .fg label {
    display: block; font-size: .61rem; font-weight: 700;
    letter-spacing: .16em; text-transform: uppercase;
    color: rgba(246,244,240,.6); margin-bottom: 7px;
  }
  .fg input,
  .fg select,
  .fg textarea {
    width: 100%; background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.18); color: var(--white);
    font-family: var(--fb); font-size: .9rem; font-weight: 400;
    padding: 12px 15px; outline: none; border-radius: 0;
    transition: border-color .2s, background .2s; appearance: none;
  }
  .fg input:focus,
  .fg select:focus,
  .fg textarea:focus { border-color: var(--copper); background: rgba(184,82,26,.07); }
  .fg input::placeholder,
  .fg textarea::placeholder { color: rgba(246,244,240,.35); }
  .fg textarea { resize: vertical; min-height: 122px; }
  .fg select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C4B08A' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 14px center; cursor: pointer;
  }
  .fg select option { background: var(--p0); }

  .ffoot { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-top: 6px; }
  .frn { font-size: .69rem; color: rgba(246,244,240,.5); }

  /* ═══════════════════════════════════
     FOOTER
  ═══════════════════════════════════ */
  footer { background: var(--ink); color: rgba(246,244,240,.38); }

  .ft {
    padding: 68px 0 52px; display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 52px;
    border-bottom: 1px solid rgba(255,255,255,.06);
  }
  .flk { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
  .flk .bname { font-size: 1.2rem; color: var(--white); }
  .fbc p { font-size: .82rem; line-height: 1.75; max-width: 28ch; }
  .fdiv { width: 30px; height: 2px; background: var(--copper); margin: 18px 0; opacity: .45; }
  .fadr { font-size: .76rem; line-height: 1.8; color: rgba(246,244,240,.52); font-style: normal; }
  .fc h5 {
    font-family: var(--fh); font-size: .63rem; font-weight: 700;
    letter-spacing: .2em; text-transform: uppercase; color: var(--white); margin-bottom: 18px;
  }
  .fc ul { list-style: none; }
  .fc li { margin-bottom: 10px; }
  .fc a { font-size: .81rem; color: rgba(246,244,240,.58); transition: color .2s; }
  .fc a:hover { color: var(--sand); }
  .fsoc {
    display: inline-flex; align-items: center; gap: 9px;
    font-size: .71rem; font-weight: 600; letter-spacing: .1em;
    text-transform: uppercase; color: rgba(246,244,240,.62);
    padding: 11px 15px; border: 1px solid rgba(255,255,255,.08);
    margin-top: 4px; transition: color .2s, border-color .2s;
  }
  .fsoc svg { width: 15px; height: 15px; }
  .fsoc:hover { color: var(--sand); border-color: rgba(196,176,138,.22); }

  .fb {
    padding: 20px 0; display: flex; align-items: center;
    justify-content: space-between; gap: 14px; flex-wrap: wrap;
  }
  .fb p { font-size: .71rem; }
  .fcrumb { display: flex; gap: 0; font-size: .66rem; letter-spacing: .08em; color: rgba(246,244,240,.22); }
  .fcrumb span { padding: 0 12px; border-right: 1px solid rgba(255,255,255,.1); }
  .fcrumb span:last-child { border-right: none; }

  /* ═══════════════════════════════════
     FADE-IN
  ═══════════════════════════════════ */
  .fi { opacity: 0; transform: translateY(20px); transition: opacity .58s ease, transform .58s ease; }
  .fi.in { opacity: 1; transform: translateY(0); }
  .d1 { transition-delay: .08s; }
  .d2 { transition-delay: .16s; }
  .d3 { transition-delay: .24s; }

  /* ═══════════════════════════════════
     RESPONSIVE
  ═══════════════════════════════════ */
  @media (max-width: 1024px) {
    .nos-g    { grid-template-columns: 1fr; gap: 44px; }
    .nos-vis  { aspect-ratio: 16/7; }
    .dif-l    { grid-template-columns: 1fr; gap: 44px; }
    .dif-sticky { position: static; }
    .zona-l   { grid-template-columns: 1fr; }
    .zona-map { min-height: 360px; }
    .zona-p   { padding: 72px 32px; max-width: 100%; margin: 0; }
    .ft       { grid-template-columns: 1fr 1fr; gap: 36px; }
  }
  @media (max-width: 860px) {
    sec { padding: 80px 0; }
    .w  { padding: 0 24px; }
    .nlinks, .ncta { display: none; }
    .ham  { display: flex; }
    .srv-hd { grid-template-columns: 1fr; gap: 20px; }
    .srv-g  { grid-template-columns: repeat(2,1fr); }
    .ctc-g  { grid-template-columns: 1fr; gap: 52px; }
    .cbar   { flex-direction: column; align-items: flex-start; padding: 28px 24px; }
    .hbari  { grid-template-columns: 1fr; }
    .hstat  { border-right: none; border-bottom: 1px solid rgba(255,255,255,.07); padding: 16px 0; }
    .hstat:last-child { border-bottom: none; }
  }
  @media (max-width: 580px) {
    sec     { padding: 60px 0; }
    .w      { padding: 0 20px; }
    .srv-g  { grid-template-columns: 1fr; }
    .cli-g  { grid-template-columns: 1fr; }
    .frow   { grid-template-columns: 1fr; }
    .hbtns  { flex-direction: column; }
    .hbtns .btn { width: 100%; justify-content: center; }
    .hcon   { padding-top: 108px; }
    .hbtns  { margin-bottom: 44px; }
    .ft     { grid-template-columns: 1fr; gap: 28px; }
    .fb     { flex-direction: column; align-items: flex-start; gap: 8px; }
    .nos-vis { display: none; }
    .zona-p { padding: 56px 20px; }
    .sc-wide { grid-template-columns: 1fr; gap: 16px; }
    .sc-wide p.sub { padding-top: 0; }
    .ffoot  { flex-direction: column; align-items: flex-start; }
    .ffoot .btn { width: 100%; justify-content: center; }
  }
  /* Contact action buttons */
  .ctc-actions { display: flex; flex-direction: column; gap: 2px; margin-bottom: 0; }

  .ctc-action-btn {
    display: flex; align-items: center; gap: 16px;
    background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.09);
    color: var(--white); padding: 16px 20px; cursor: pointer;
    font-family: var(--fb); text-align: left; width: 100%;
    transition: background .2s, border-color .2s;
    text-decoration: none;
  }
  .ctc-action-btn:hover { background: rgba(184,82,26,.1); border-color: rgba(184,82,26,.4); }

  .cta-ico {
    width: 38px; height: 38px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    border: 1px solid rgba(184,82,26,.3); color: var(--copper);
  }
  .cta-ico svg { width: 16px; height: 16px; }

  .cta-body { flex: 1; display: flex; flex-direction: column; gap: 2px; }
  .cta-body strong { font-size: .82rem; font-weight: 600; letter-spacing: .06em; color: var(--white); }
  .cta-body span   { font-size: .76rem; color: rgba(246,244,240,.65); font-weight: 400; }

  .cta-arrow { width: 14px; height: 14px; color: rgba(246,244,240,.55); flex-shrink: 0; }

  .ctc-note {
    font-size: .78rem; color: rgba(246,244,240,.65); letter-spacing: .06em;
    margin: 20px 0 28px; max-width: none;
    border-left: 2px solid rgba(184,82,26,.7); padding-left: 12px;
  }

  .ctc-form-block { border-top: 1px solid var(--bd); padding-top: 28px; }

  /* Team grid */
  .team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: rgba(255,255,255,.06);
    margin-top: 0;
  }
  .team-card {
    background: var(--p0);
    padding: 32px 28px;
    transition: background .25s;
    position: relative;
  }
  .team-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 3px;
    background: var(--copper);
    transform: scaleX(0); transform-origin: left;
    transition: transform .28s;
  }
  .team-card:hover { background: var(--p1); }
  .team-card:hover::before { transform: scaleX(1); }

  .team-photo {
    width: 100%;
    aspect-ratio: 4/5;
    background-color: rgba(184,82,26,.12);
    background-size: cover;
    background-position: top center;
    margin-bottom: 20px;
  }
  .team-photo span { display: none; }
  .team-name {
    font-size: .95rem; color: var(--white);
    margin-bottom: 4px; letter-spacing: .03em;
  }
  .team-role {
    display: block;
    font-size: .67rem; font-weight: 600;
    letter-spacing: .14em; text-transform: uppercase;
    color: var(--copper); margin-bottom: 12px;
  }
  .team-bio {
    font-size: .83rem; color: rgba(246,244,240,.70);
    line-height: 1.7; max-width: none; font-weight: 300;
  }

  /* Logos / clients grid */
  .logos-section { }
  .logos-label {
    font-family: var(--fh);
    font-size: .67rem; font-weight: 700;
    letter-spacing: .2em; text-transform: uppercase;
    color: var(--grey); margin-bottom: 20px;
  }
  .logos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--bdl);
  }
  .logo-item {
    background: var(--white);
    padding: 18px 20px;
    font-size: .82rem; font-weight: 600;
    letter-spacing: .05em; color: var(--grey);
    display: flex; align-items: center; justify-content: center;
    text-align: center;
    transition: background .2s, color .2s;
    min-height: 56px;
  }
  .logo-item:hover { background: var(--off); color: var(--ink); }

  @media (max-width: 860px) {
    .team-grid  { grid-template-columns: repeat(2,1fr); }
    .logos-grid { grid-template-columns: repeat(2,1fr); }
  }
  @media (max-width: 580px) {
    .team-grid  { grid-template-columns: 1fr; }
    .logos-grid { grid-template-columns: repeat(2,1fr); }
  }