:root{
      --sand:#f3f1e8;
      --sand-strong:#e7e3d3;
      --paper:#fbfaf4;
      --ink:#263126;
      --ink-deep:#182218;
      --ink-soft:#586557;
      --ink-muted:#7d8877;
      --forest:#27452a;
      --forest-deep:#17311d;
      --brand-green:#8ebc61;
      --brand-green-soft:#a6cd7d;
      --line-soft:rgba(38,49,38,.10);
      --line-strong:rgba(39,69,42,.20);
      --shadow-soft:0 18px 45px rgba(24,34,24,.07);
      --shadow-strong:0 30px 90px rgba(24,42,25,.18);
      --radius:2rem;
      --container:1320px;
    }

    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:'Manrope',sans-serif;
      color:var(--ink);
      background:
        radial-gradient(circle at top left, rgba(142,188,97,.18), transparent 22%),
        radial-gradient(circle at 85% 12%, rgba(39,69,42,.08), transparent 16%),
        linear-gradient(180deg,#fbfaf4 0%,#f3f1e8 100%);
    }

    body::after{
      content:"";
      position:fixed;
      inset:0;
      z-index:9998;
      pointer-events:none;
      opacity:.055;
      mix-blend-mode:multiply;
      background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
    }

    img{max-width:100%;display:block}
    a{text-decoration:none;color:inherit}
    button,a{font:inherit}
    .container{width:min(var(--container),calc(100% - 2rem));margin:0 auto}

    .display{
      font-family:'Satoshi',sans-serif;
      font-weight:700;
      letter-spacing:-.065em;
      line-height:.96;
    }
    .display span{opacity:.55;font-weight:650}

    .topbar{
      position:fixed;
      top:20px;
      left:50%;
      transform:translateX(-50%);
      width:min(var(--container),calc(100% - 2rem));
      z-index:999;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:1.5rem;
      padding:1rem 1.4rem;
      border-radius:999px;
      border:1px solid rgba(255,255,255,.12);
      background:rgba(8,18,9,.34);
      backdrop-filter:blur(18px);
      -webkit-backdrop-filter:blur(18px);
      box-shadow:0 18px 40px rgba(0,0,0,.12);
      color:#fff;
      transition:background-color .35s ease,border-color .35s ease,box-shadow .35s ease;
    }

    .topbar.scrolled{
      background:rgba(14,20,14,.92);
      border-color:rgba(255,255,255,.10);
      box-shadow:0 18px 48px rgba(0,0,0,.28);
    }

    .brand{display:flex;align-items:center;gap:.85rem}
    .brand-badge{
      width:44px;height:44px;
      display:grid;place-items:center;
      border-radius:999px;
      border:1px solid rgba(255,255,255,.25);
      background:rgba(255,255,255,.10);
      box-shadow:0 0 0 0 rgba(142,188,97,.45);
      animation:pulseRing 2.6s infinite;
    }
    .brand small{
      display:block;
      font-size:.72rem;
      text-transform:uppercase;
      letter-spacing:.34em;
      color:rgba(255,255,255,.60);
    }
    .brand strong{font-size:1.2rem;font-weight:700}

    .nav{display:flex;align-items:center;gap:1.6rem;flex-wrap:wrap;justify-content:center}
    .nav a{
      color:rgba(255,255,255,.82);
      font-size:11px;
      font-weight:700;
      letter-spacing:.28em;
      text-transform:uppercase;
      transition:transform .25s ease,color .25s ease;
    }
    .nav a:hover{transform:translateY(-2px);color:white}
    .nav a.active{color:#fff;}


    .cta-btn{
      position:relative;
      overflow:hidden;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:.6rem;
      padding:1rem 1.6rem;
      border-radius:999px;
      background:var(--brand-green);
      color:var(--ink-deep);
      font-size:11px;
      font-weight:800;
      letter-spacing:.28em;
      text-transform:uppercase;
      transition:transform .25s ease,background-color .25s ease;
      white-space:nowrap;
    }
    .cta-btn:hover{transform:translateY(-2px) scale(1.02);background:var(--brand-green-soft)}
    .section-link{
      display:inline-flex;
      align-items:center;
      gap:.7rem;
      border:0;
      background:transparent;
      color:var(--forest-deep);
      font-family:'Satoshi',sans-serif;
      font-size:.95rem;
      font-weight:800;
      letter-spacing:.18em;
      text-transform:uppercase;
      cursor:pointer;
      white-space:nowrap;
      transition:opacity .25s ease,transform .25s ease;
    }
    .section-link span{font-size:1.35rem;transition:transform .25s ease}
    .section-link:hover{opacity:.68;transform:translateX(4px)}
    .section-link:hover span{transform:translate(3px,-3px)}

    /* =========================================================
       CUSTOM CURSOR — PREMIUM EDITORIAL
    ========================================================= */
    @media (pointer:fine) and (min-width: 900px){
      body.custom-cursor-enabled,
      body.custom-cursor-enabled a,
      body.custom-cursor-enabled button,
      body.custom-cursor-enabled [role="button"]{
        cursor:none;
      }

      .custom-cursor,
      .custom-cursor-dot{
        position:fixed;
        left:0;
        top:0;
        pointer-events:none;
        z-index:10000;
        opacity:0;
        transform:translate3d(-50%,-50%,0);
        transition:opacity .25s ease, width .25s ease, height .25s ease, background-color .25s ease, border-color .25s ease;
        mix-blend-mode:normal;
      }

      .custom-cursor{
        width:34px;
        height:34px;
        border-radius:999px;
        border:1px solid rgba(251,250,244,.72);
        background:rgba(23,49,29,.12);
        backdrop-filter:blur(4px);
        -webkit-backdrop-filter:blur(4px);
        box-shadow:0 10px 30px rgba(24,34,24,.14);
      }

      .custom-cursor-dot{
        width:7px;
        height:7px;
        border-radius:999px;
        background:#8ebc61;
        box-shadow:0 0 0 4px rgba(251,250,244,.16);
      }

      body.cursor-ready .custom-cursor,
      body.cursor-ready .custom-cursor-dot{
        opacity:1;
      }

      body.cursor-hover .custom-cursor{
        width:54px;
        height:54px;
        border-color:rgba(142,188,97,.72);
        background:rgba(251,250,244,.14);
      }

      body.cursor-hover .custom-cursor-dot{
        width:9px;
        height:9px;
        background:#fbfaf4;
        box-shadow:0 0 0 5px rgba(142,188,97,.18);
      }

      body.cursor-hidden .custom-cursor,
      body.cursor-hidden .custom-cursor-dot{
        opacity:0;
      }
    }

    /* HERO */
    .about-hero{
      position:relative;
      min-height:92vh;
      overflow:hidden;
      color:#fbfaf4;
      isolation:isolate;
      display:flex;
      align-items:flex-end;
      background:#071107;
    }
    .about-hero::before{
      content:"";
      position:absolute;
      inset:0;
      z-index:-2;
      background:
        linear-gradient(90deg,rgba(5,12,5,.88) 0%,rgba(5,12,5,.52) 48%,rgba(5,12,5,.16) 100%),
        linear-gradient(180deg,rgba(5,12,5,.06),rgba(5,12,5,.72)),
        url('https://acostalands.com/wp-content/uploads/2026/05/Service-turf-home.webp');
      background-size:cover;
      background-position:center;
      transform:scale(1.02);
    }
    .about-hero::after{
      content:"";
      position:absolute;
      inset:0;
      z-index:-1;
      opacity:.12;
      background-image:
        linear-gradient(rgba(255,255,255,.08) 1px,transparent 1px),
        linear-gradient(90deg,rgba(255,255,255,.08) 1px,transparent 1px);
      background-size:120px 120px;
    }
    .about-hero-inner{padding:10rem 0 5rem;width:100%}
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:.65rem;
      padding:.85rem 1.1rem;
      border:1px solid rgba(255,255,255,.16);
      border-radius:999px;
      background:rgba(255,255,255,.08);
      backdrop-filter:blur(10px);
      font-size:11px;
      font-weight:700;
      letter-spacing:.28em;
      text-transform:uppercase;
      color:rgba(255,255,255,.72);
    }
    .about-hero-title{
      margin:1.2rem 0 0;
      max-width:1120px;
      font-size:clamp(4rem,8.5vw,9.2rem);
      line-height:.86;
    }
    .about-hero-copy{
      margin:1.7rem 0 0;
      max-width:680px;
      color:rgba(255,255,255,.78);
      font-size:1.08rem;
      line-height:1.75;
    }

    .hero-bottom-row{
      margin-top:3rem;
      display:flex;
      align-items:flex-end;
      justify-content:space-between;
      gap:2rem;
      flex-wrap:wrap;
    }
    .hero-stat-row{display:flex;gap:1rem;flex-wrap:wrap}
    .hero-stat{
      min-width:160px;
      padding:1rem 1.2rem;
      border-radius:1.4rem;
      border:1px solid rgba(255,255,255,.14);
      background:rgba(255,255,255,.08);
      backdrop-filter:blur(12px);
    }
    .hero-stat strong{
      display:block;
      font-family:'Satoshi',sans-serif;
      font-size:2.1rem;
      letter-spacing:-.05em;
      color:#fff;
    }
    .hero-stat span{
      display:block;
      margin-top:.2rem;
      color:rgba(255,255,255,.66);
      font-size:.86rem;
      font-weight:700;
    }

    /* LOGO MARQUEE */
    .brand-strip{
      overflow:hidden;
      padding:1rem 0;
      border-top:1px solid var(--line-soft);
      border-bottom:1px solid var(--line-soft);
      background:var(--paper);
    }
    .brand-track{
      width:max-content;
      display:flex;
      gap:.85rem;
      animation:marqueeLeft 25s linear infinite;
    }
    .brand-pill{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      min-width:210px;
      padding:1rem 1.2rem;
      border-radius:999px;
      background:white;
      border:1px solid var(--line-strong);
      box-shadow:0 10px 20px rgba(24,34,24,.04);
      color:var(--forest-deep);
      font-size:11px;
      font-weight:900;
      letter-spacing:.22em;
      text-transform:uppercase;
      white-space:nowrap;
    }

    .section{padding:clamp(4.5rem,7vw,7rem) 0}
    .section-muted{background:var(--paper)}
    .section-dark{background:var(--forest-deep);color:#fbfaf4}
    .section-head{
      display:flex;
      justify-content:space-between;
      align-items:flex-start;
      gap:2rem;
      margin-bottom:clamp(2.5rem,4vw,4rem);
    }
    .kicker{
      color:var(--ink-muted);
      font-size:11px;
      font-weight:900;
      letter-spacing:.32em;
      text-transform:uppercase;
      margin-bottom:.9rem;
    }
    .section-title{
      margin:0;
      max-width:950px;
      color:var(--forest-deep);
      font-size:clamp(2.7rem,4.8vw,5.35rem);
      line-height:.96;
      letter-spacing:-.065em;
    }
    .section-dark .section-title{color:#fbfaf4}
    .section-dark .section-title span{opacity:.55}
    .section-copy{
      max-width:680px;
      color:rgba(38,49,38,.66);
      font-size:1.05rem;
      line-height:1.9;
    }
    .section-dark .section-copy{color:rgba(255,255,255,.70)}

    /* INTRO */
    .intro-grid{
      display:grid;
      grid-template-columns:minmax(0,1.05fr) minmax(360px,.75fr);
      gap:clamp(3rem,6vw,6rem);
      align-items:start;
    }
    .intro-large{
      margin:0;
      color:var(--forest-deep);
      font-size:clamp(2.5rem,5vw,5.4rem);
      line-height:.96;
      letter-spacing:-.065em;
    }
    .intro-copy{
      margin:0;
      color:rgba(38,49,38,.68);
      font-size:1.08rem;
      line-height:1.9;
    }

    /* VALUES */
    .values-grid{
      display:grid;
      grid-template-columns:repeat(4,minmax(0,1fr));
      gap:1rem;
    }
    .value-card{
      min-height:300px;
      padding:1.45rem;
      border-radius:1.8rem;
      border:1px solid var(--line-soft);
      background:rgba(255,255,255,.55);
      box-shadow:var(--shadow-soft);
      display:flex;
      flex-direction:column;
      justify-content:space-between;
      transition:transform .45s cubic-bezier(.22,1,.36,1),box-shadow .45s cubic-bezier(.22,1,.36,1);
    }
    .value-card:hover{transform:translateY(-7px);box-shadow:0 28px 70px rgba(24,34,24,.12)}
    .value-index{
      color:var(--brand-green);
      font-size:11px;
      font-weight:900;
      letter-spacing:.28em;
    }
    .value-card h3{
      margin:0;
      color:var(--forest-deep);
      font-family:'Satoshi',sans-serif;
      font-size:clamp(1.45rem,2vw,2rem);
      line-height:1;
      letter-spacing:-.05em;
    }
    .value-card p{
      margin:1rem 0 0;
      color:rgba(38,49,38,.62);
      line-height:1.75;
      font-size:.96rem;
    }

    /* DIFFERENT */
    .different-grid{
      display:grid;
      grid-template-columns:minmax(0,.95fr) minmax(0,1fr);
      gap:clamp(2rem,5vw,5rem);
      align-items:center;
    }
    .different-photo{
      position:relative;
      overflow:hidden;
      min-height:640px;
      border-radius:2rem;
      background:url('https://images.unsplash.com/photo-1621905252507-b35492cc74b4?auto=format&fit=crop&w=1400&q=85') center/cover;
      box-shadow:var(--shadow-strong);
    }
    .different-photo::after{
      content:"";
      position:absolute;
      inset:0;
      background:linear-gradient(180deg,rgba(0,0,0,.04),rgba(0,0,0,.44));
    }
    .different-badge{
      position:absolute;
      left:1.4rem;
      bottom:1.4rem;
      right:1.4rem;
      z-index:2;
      padding:1.3rem;
      border-radius:1.4rem;
      color:#fff;
      background:rgba(255,255,255,.13);
      border:1px solid rgba(255,255,255,.18);
      backdrop-filter:blur(15px);
    }
    .different-badge strong{
      display:block;
      font-family:'Satoshi',sans-serif;
      font-size:2.2rem;
      letter-spacing:-.05em;
    }
    .different-list{
      display:grid;
      gap:1rem;
      margin-top:2rem;
    }
    .different-item{
      display:grid;
      grid-template-columns:54px 1fr;
      gap:1rem;
      padding:1.2rem;
      border-radius:1.5rem;
      background:rgba(255,255,255,.56);
      border:1px solid var(--line-soft);
    }
    .different-icon{
      width:54px;height:54px;
      display:grid;place-items:center;
      border-radius:1rem;
      background:#dfeae0;
      color:var(--forest-deep);
      font-weight:900;
    }
    .different-item h3{
      margin:0;
      color:var(--forest-deep);
      font-family:'Satoshi',sans-serif;
      font-size:1.35rem;
      letter-spacing:-.04em;
    }
    .different-item p{margin:.45rem 0 0;color:rgba(38,49,38,.62);line-height:1.65}

    /* OWNER */
    .owner-section{
      display:grid;
      grid-template-columns:minmax(0,1fr) minmax(360px,.7fr);
      gap:2rem;
      align-items:stretch;
    }
    .owner-copy{
      padding:clamp(2rem,4vw,3.5rem);
      border-radius:2rem;
      background:rgba(255,255,255,.06);
      border:1px solid rgba(255,255,255,.10);
    }
    .owner-copy h2{
      margin:0;
      color:#fbfaf4;
      font-size:clamp(2.7rem,4.8vw,5.35rem);
      line-height:.96;
      letter-spacing:-.065em;
    }
    .owner-copy p{
      color:rgba(255,255,255,.70);
      font-size:1.05rem;
      line-height:1.85;
      max-width:720px;
    }
    .owner-card{
      padding:1.5rem;
      border-radius:2rem;
      background:#fbfaf4;
      color:var(--forest-deep);
      display:flex;
      flex-direction:column;
      justify-content:space-between;
      min-height:420px;
    }
    .owner-card-top{
      min-height:260px;
      border-radius:1.5rem;
      background:
        linear-gradient(180deg,rgba(0,0,0,.05),rgba(0,0,0,.28)),
        url('https://images.unsplash.com/photo-1503387762-592deb58ef4e?auto=format&fit=crop&w=1200&q=85') center/cover;
    }
    .owner-card h3{
      margin:1.3rem 0 0;
      font-family:'Satoshi',sans-serif;
      font-size:2rem;
      letter-spacing:-.05em;
    }
    .owner-card p{margin:.6rem 0 0;color:rgba(38,49,38,.66);line-height:1.7}

    /* GALLERY */
    .gallery-grid{
      display:grid;
      grid-template-columns:1.1fr .9fr .9fr;
      gap:1rem;
    }
    .gallery-tile{
      min-height:330px;
      border-radius:1.8rem;
      overflow:hidden;
      background-size:cover;
      background-position:center;
      position:relative;
      box-shadow:0 24px 55px rgba(24,34,24,.08);
    }
    .gallery-tile.large{grid-row:span 2;min-height:680px}
    .gallery-tile::after{
      content:"";
      position:absolute;
      inset:0;
      background:linear-gradient(180deg,rgba(0,0,0,.02),rgba(0,0,0,.28));
    }

    /* CTA */
    .final-cta{
      position:relative;
      overflow:hidden;
      min-height:560px;
      display:flex;
      align-items:center;
      color:#fbfaf4;
      background:
        linear-gradient(90deg,rgba(5,12,5,.78),rgba(5,12,5,.28)),
        url('https://images.unsplash.com/photo-1600566752355-35792bedcfea?auto=format&fit=crop&w=2200&q=85') center/cover;
    }
    .final-cta-title{
      margin:0;
      max-width:900px;
      font-size:clamp(2.8rem,5.5vw,6.2rem);
      line-height:.95;
    }
    .final-cta p{
      max-width:620px;
      color:rgba(255,255,255,.76);
      line-height:1.8;
      font-size:1.05rem;
    }

    /* FOOTER */
    .site-footer{
      background:#fbfaf4;
      color:var(--forest-deep);
      padding:3.2rem 0 1.4rem;
      border-top:1px solid var(--line-soft);
    }
    .footer-inner{display:grid;gap:2.2rem}
    .footer-top{
      display:grid;
      grid-template-columns:minmax(0,1.2fr) minmax(420px,.9fr);
      gap:2.8rem;
      align-items:start;
    }
    .footer-brand-block{display:grid;gap:1rem}
    .footer-brand-line{
      display:grid;
      grid-template-columns:auto 1fr;
      align-items:center;
      gap:2rem;
    }
    .footer-logo{
      display:inline-flex;
      align-items:center;
      gap:.75rem;
      padding-right:2rem;
      border-right:2px solid rgba(24,34,24,.62);
      color:var(--forest-deep);
    }
    .footer-logo-mark{width:42px;height:42px;display:grid;place-items:center}
    .footer-logo .display{
      font-size:clamp(2rem,3.6vw,3.7rem);
      line-height:1;
      letter-spacing:-.075em;
      white-space:nowrap;
    }
    .footer-intro{
      max-width:410px;
      margin:0;
      color:rgba(38,49,38,.58);
      font-size:1.05rem;
      line-height:1.75;
    }
    .footer-socials{display:flex;flex-wrap:wrap;gap:.75rem}
    .footer-socials a{
      width:44px;height:44px;
      display:grid;place-items:center;
      border-radius:999px;
      background:#dfeae0;
      color:var(--forest-deep);
      transition:transform .25s ease,background-color .25s ease;
      font-weight:900;
    }
    .footer-socials a:hover{transform:translateY(-3px);background:var(--brand-green)}
    .footer-inline-row{
      display:flex;
      align-items:center;
      flex-wrap:wrap;
      gap:1.25rem;
      margin-top:1.2rem;
    }
    .footer-inline-info{
      display:flex;
      align-items:center;
      flex-wrap:wrap;
      gap:.9rem;
      color:rgba(38,49,38,.72);
      font-size:1rem;
      font-weight:700;
      line-height:1.5;
    }
    .footer-links-grid{
      display:grid;
      grid-template-columns:repeat(3,minmax(0,1fr));
      gap:1.6rem;
    }
    .footer-links-grid h3{
      margin:0 0 1.5rem;
      color:var(--forest-deep);
      font-size:.94rem;
      font-weight:900;
      letter-spacing:-.03em;
      text-transform:uppercase;
    }
    .footer-links-grid a{
      display:block;
      margin:.9rem 0;
      color:rgba(38,49,38,.78);
      font-size:.98rem;
      font-weight:600;
      line-height:1.35;
      transition:opacity .25s ease,transform .25s ease;
    }
    .footer-links-grid a:hover{opacity:.62;transform:translateX(4px)}
    .footer-bottom{
      display:flex;
      justify-content:space-between;
      align-items:center;
      gap:1rem;
      padding-top:1.2rem;
      border-top:1px solid rgba(24,34,24,.55);
      color:rgba(38,49,38,.64);
      font-size:.85rem;
      font-weight:700;
      text-transform:uppercase;
    }
    .footer-bottom p{margin:0}
    .footer-bottom div{display:flex;align-items:center;gap:.9rem;flex-wrap:wrap}

    .reveal{
      opacity:0;
      transform:translate3d(0,18px,0);
      filter:blur(6px);
      transition:opacity 1.2s cubic-bezier(.22,1,.36,1),transform 1.2s cubic-bezier(.22,1,.36,1),filter 1.2s cubic-bezier(.22,1,.36,1);
      will-change:opacity,transform,filter;
    }
    .reveal.visible{opacity:1;transform:translate3d(0,0,0);filter:blur(0)}



    @keyframes pulseRing{
      0%{box-shadow:0 0 0 0 rgba(142,188,97,.45)}
      70%{box-shadow:0 0 0 18px rgba(142,188,97,0)}
      100%{box-shadow:0 0 0 0 rgba(142,188,97,0)}
    }
    @keyframes marqueeLeft{from{transform:translateX(0)}to{transform:translateX(-50%)}}

    @media (max-width:1100px){
      .nav{display:none}
      .intro-grid,.different-grid,.owner-section,.footer-top,.footer-brand-line{grid-template-columns:1fr}
      .values-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
      .gallery-grid{grid-template-columns:1fr 1fr}
      .footer-logo{border-right:0;padding-right:0}
      .footer-links-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
      .different-photo{min-height:520px}
    }
    @media (max-width:700px){
      .topbar{top:12px;border-radius:1.5rem;padding:.9rem 1rem}
      .brand small{font-size:.58rem}
      .brand strong{font-size:1rem}
      .cta-btn{padding:.85rem 1rem;letter-spacing:.16em}
      .about-hero{min-height:78vh}
      .about-hero-inner{padding:7rem 0 3rem}
      .about-hero-title{font-size:clamp(3.1rem,15vw,5.2rem)}
      .values-grid,.gallery-grid,.footer-links-grid{grid-template-columns:1fr}
      .gallery-tile.large{min-height:420px}
      .gallery-tile{min-height:260px}
      .section-head{flex-direction:column}
      .footer-bottom{align-items:flex-start;flex-direction:column}
      .footer-inline-row{align-items:flex-start;flex-direction:column}
      .footer-inline-info{gap:.55rem;font-size:.92rem}
    }
  
/* =========================================================
   ABOUT PAGE — FIRST STRUCTURE REFERENCE STYLE
========================================================= */

.about-page-hero{
  position:relative;
  min-height:420px;
  display:flex;
  align-items:flex-end;
  overflow:hidden;
  color:#fbfaf4;
  background:
    linear-gradient(90deg, rgba(5,12,5,.78), rgba(5,12,5,.34)),
    linear-gradient(180deg, rgba(5,12,5,.10), rgba(5,12,5,.46)),
    url('https://acostalands.com/wp-content/uploads/2026/05/About-us-portada.webp');
  background-size:cover;
  background-position:center 48%;
}

.about-page-hero::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 16% 40%, rgba(142,188,97,.22), transparent 26%),
    rgba(0,0,0,.04);
  pointer-events:none;
}

.about-page-hero-content{
  position:relative;
  z-index:1;
  padding:8rem 0 3.3rem;
}

.breadcrumb{
  display:flex;
  align-items:center;
  gap:.9rem;
  color:rgba(255,255,255,.76);
  font-size:.95rem;
  font-weight:600;
  margin-bottom:1.6rem;
}

.breadcrumb span{
  opacity:.55;
}

.about-page-hero h1{
  margin:0;
  color:#fbfaf4;
  font-size:clamp(3.4rem,6.5vw,6.8rem);
  line-height:.9;
  letter-spacing:-.065em;
}

.about-intro-section{
  background:#fbfaf4;
  padding:clamp(4.5rem,6.5vw,6.5rem) 0;
}

.about-intro-grid{
  display:grid;
  grid-template-columns:minmax(260px,.82fr) minmax(0,1fr) minmax(0,1fr);
  gap:clamp(2rem,5vw,4.5rem);
  align-items:start;
}

.about-intro-title{
  margin:0;
  color:var(--forest-deep);
  font-size:clamp(1.9rem,3.1vw,3rem);
  line-height:1.02;
  letter-spacing:-.045em;
}

.about-intro-title span{
  display:block;
  opacity:.55;
}

.about-intro-copy p{
  margin:0;
  color:rgba(38,49,38,.58);
  font-size:1.08rem;
  line-height:1.85;
}

.about-media-grid{
  display:grid;
  grid-template-columns:minmax(280px,.78fr) minmax(0,1.55fr);
  gap:2rem;
  margin-top:clamp(3.5rem,5vw,5rem);
  align-items:stretch;
}

.about-video-card,
.about-project-preview{
  min-height:360px;
  border-radius:1.8rem;
  overflow:hidden;
  position:relative;
  background:#dfeae0;
  box-shadow:0 28px 75px rgba(24,34,24,.12);
}

.about-video-card iframe{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  border:0;
}

.about-project-preview{
  background:
    linear-gradient(180deg, rgba(0,0,0,.02), rgba(0,0,0,.42)),
    url('https://acostalands.com/wp-content/uploads/2026/06/paver-bothell-4.webp');
  background-size:cover;
  background-position:center;
}

.about-project-link{
  position:absolute;
  right:1.8rem;
  bottom:1.5rem;
  z-index:2;
  display:inline-flex;
  align-items:center;
  gap:.6rem;
  color:#fbfaf4;
  font-size:1.15rem;
  font-weight:900;
  border-bottom:2px solid rgba(255,255,255,.78);
  padding-bottom:.25rem;
  transition:opacity .25s ease, transform .25s ease;
}

.about-project-link span{
  transition:transform .25s ease;
}

.about-project-link:hover{
  opacity:.75;
  transform:translateX(4px);
}

.about-project-link:hover span{
  transform:translate(3px,-3px);
}

@media(max-width:980px){
  .about-intro-grid,
  .about-media-grid{
    grid-template-columns:1fr;
  }

  .about-page-hero{
    min-height:360px;
  }
}

  
/* =========================================================
   ABOUT PAGE — PURPOSE IN EVERY DETAIL SECTION
========================================================= */

.about-purpose-section{
  background:#314a32;
  color:#fbfaf4;
  padding:clamp(2.8rem,4vw,4.2rem) 0 clamp(3rem,4vw,4.5rem);
  overflow:hidden;
}

.about-purpose-head{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(260px,340px);
  gap:2rem;
  align-items:start;
  margin-bottom:clamp(1.6rem,2.5vw,2.5rem);
}

.about-purpose-title{
  margin:0;
  color:#fbfaf4;
  font-size:clamp(2.8rem,5.4vw,5.8rem);
  line-height:.90;
  letter-spacing:-.07em;
  text-transform:uppercase;
}

.about-purpose-title span{
  display:block;
  opacity:.58;
  font-weight:650;
}

.about-purpose-btn{
  display:inline-flex;
  align-items:center;
  justify-content:flex-end;
  gap:.6rem;
  width:auto;
  min-height:auto;
  padding:0;
  background:transparent;
  color:#fbfaf4;
  font-weight:900;
  border:none;
  margin-top:.65rem;
  text-transform:uppercase;
  letter-spacing:.16em;
  font-size:.95rem;
  transition:opacity .25s ease, transform .25s ease;
}

.about-purpose-btn span{
  transition:transform .25s ease;
  font-size:1.2rem;
}

.about-purpose-btn:hover{
  opacity:.72;
  transform:translateX(4px);
}

.about-purpose-btn:hover span{
  transform:translate(3px,-3px);
}

.about-purpose-grid{
  display:grid;
  grid-template-columns:minmax(300px,430px) minmax(0,1fr);
  gap:clamp(2rem,3vw,3rem);
  align-items:center;
}

.about-purpose-photo{
  margin:0;
  min-height:500px;
  border-radius:1.8rem;
  overflow:hidden;
  background:
    linear-gradient(180deg,rgba(0,0,0,.02),rgba(0,0,0,.16)),
    url('https://acostalands.com/wp-content/uploads/2026/05/Built-about-us.webp');
  background-size:cover;
  background-position:center;
  box-shadow:0 34px 90px rgba(0,0,0,.16);
}

.about-purpose-points{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:clamp(3.2rem,6vw,5.2rem) clamp(3rem,6vw,6rem);
}

.about-purpose-point{
  max-width:450px;
}

.about-purpose-icon{
  width:58px;
  height:58px;
  display:grid;
  place-items:center;
  background:#e7eee4;
  color:#314a32;
  margin-bottom:1.45rem;
}

.about-purpose-icon svg{
  width:25px;
  height:25px;
}

.about-purpose-point h3{
  margin:0;
  color:#fbfaf4;
  font-family:'Satoshi',sans-serif;
  font-size:clamp(1.55rem,2.4vw,2.15rem);
  line-height:1.05;
  letter-spacing:-.055em;
}

.about-purpose-point p{
  margin:1rem 0 0;
  color:rgba(255,255,255,.84);
  font-size:1.05rem;
  line-height:1.72;
}

@media(max-width:1100px){
  .about-purpose-head,
  .about-purpose-grid{
    grid-template-columns:1fr;
  }

  .about-purpose-btn{
    width:max-content;
    min-width:260px;
  }

  .about-purpose-photo{
    min-height:460px;
  }
}

@media(max-width:720px){
  .about-purpose-section{
    padding:4rem 0;
  }

  .about-purpose-title{
    font-size:clamp(3rem,14vw,5.2rem);
  }

  .about-purpose-points{
    grid-template-columns:1fr;
    gap:2.5rem;
  }

  .about-purpose-btn{
    width:100%;
  }
}

  
/* =========================================================
   ABOUT PAGE — OUR TEAM SLIDER
========================================================= */

.about-team-section{
  background:#fbfaf4;
  color:var(--forest-deep);
  padding:clamp(3rem,5vw,4.8rem) 0;
  overflow:hidden;
}

.about-team-head{
  display:grid;
  grid-template-columns:minmax(0,1fr) auto;
  gap:2rem;
  align-items:start;
  margin-bottom:clamp(1.4rem,2.5vw,2.2rem);
}

.about-team-title{
  margin:0;
  color:var(--forest-deep);
  font-size:clamp(2.6rem,5vw,5.4rem);
  line-height:.9;
  letter-spacing:-.07em;
  text-transform:uppercase;
}

.about-team-title span{
  display:block;
  opacity:.38;
  font-weight:650;
}

.about-team-tag{
  color:var(--forest-deep);
  font-weight:800;
  letter-spacing:.22em;
  text-transform:uppercase;
  white-space:nowrap;
  margin-top:.75rem;
}

.about-team-controls{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:2rem;
  margin-bottom:1rem;
}

.team-arrow{
  width:46px;
  height:46px;
  border:0;
  background:transparent;
  color:var(--forest-deep);
  display:grid;
  place-items:center;
  cursor:pointer;
  font-size:2rem;
  line-height:1;
  transition:opacity .25s ease, transform .25s ease;
}

.team-arrow:hover{
  opacity:.65;
}

.team-arrow.prev:hover{
  transform:translateX(-3px);
}

.team-arrow.next:hover{
  transform:translateX(3px);
}

.team-count{
  color:var(--forest-deep);
  font-weight:900;
  letter-spacing:.08em;
}

.team-slider-window{
  overflow:hidden;
  width:100%;
}

.team-slider-track{
  display:flex;
  gap:1.6rem;
  transition:transform .65s cubic-bezier(.22,1,.36,1);
  will-change:transform;
}

.team-card{
  flex:0 0 calc((100% - 4.8rem) / 4);
  min-height:390px;
  position:relative;
  overflow:hidden;
  border-radius:1.45rem;
  background:#dfeae0;
  box-shadow:0 24px 60px rgba(24,34,24,.10);
}

.team-card::before{
  content:"";
  position:absolute;
  inset:0;
  background-image:var(--team-img);
  background-size:cover;
  background-position:center;
  filter:grayscale(1) saturate(.85);
  transform:scale(1.02);
  transition:transform .7s cubic-bezier(.22,1,.36,1), filter .7s cubic-bezier(.22,1,.36,1);
}

.team-card::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg, rgba(49,74,50,.02) 0%, rgba(49,74,50,.42) 58%, rgba(49,74,50,.90) 100%);
}

.team-card:hover::before{
  transform:scale(1.07);
  filter:grayscale(.35) saturate(1.05);
}

.team-info{
  position:absolute;
  left:1.2rem;
  right:1.2rem;
  bottom:1.2rem;
  z-index:2;
  color:#fbfaf4;
}

.team-info h3{
  margin:0;
  font-family:'Satoshi',sans-serif;
  font-size:1.35rem;
  line-height:1;
  letter-spacing:-.045em;
}

.team-info p{
  margin:.45rem 0 0;
  font-size:1rem;
  line-height:1.35;
  color:rgba(255,255,255,.88);
}

@media(max-width:1100px){
  .team-card{
    flex-basis:calc((100% - 1.6rem) / 2);
  }
}

@media(max-width:720px){
  .about-team-head{
    grid-template-columns:1fr;
  }

  .about-team-title{
    font-size:clamp(3rem,14vw,5rem);
  }

  .about-team-controls{
    justify-content:flex-start;
  }

  .team-card{
    flex-basis:86%;
    min-height:420px;
  }
}

  
/* =========================================================
   ABOUT PAGE — OUR WORK GALLERY SECTION
========================================================= */

.about-work-section{
  background:#fbfaf4;
  color:var(--forest-deep);
  padding:clamp(4rem,6.5vw,6.6rem) 0;
  overflow:hidden;
}

.about-work-grid{
  display:grid;
  grid-template-columns:minmax(230px,.75fr) minmax(250px,1fr) minmax(250px,1fr) minmax(250px,1fr);
  gap:1.6rem;
  align-items:end;
}

.about-work-copy{
  align-self:end;
  padding-bottom:.5rem;
}

.about-work-kicker{
  display:inline-flex;
  align-items:center;
  gap:.7rem;
  color:var(--forest-deep);
  font-weight:800;
  letter-spacing:.14em;
  text-transform:uppercase;
  margin-bottom:clamp(2rem,4vw,4rem);
}

.about-work-title{
  margin:0;
  color:var(--forest-deep);
  font-size:clamp(3rem,6vw,6.8rem);
  line-height:.9;
  letter-spacing:-.07em;
  text-transform:uppercase;
}

.about-work-title span{
  display:block;
  opacity:.38;
  font-weight:650;
}

.work-column{
  display:grid;
  gap:1.6rem;
}

.work-tile{
  position:relative;
  display:block;
  overflow:hidden;
  min-height:280px;
  background:#dfeae0;
  isolation:isolate;
  cursor:pointer;
}

.work-tile.tall{
  min-height:650px;
}

.work-tile.medium{
  min-height:370px;
}

.work-tile.short{
  min-height:270px;
}

.work-tile img{
  width:100%;
  height:100%;
  position:absolute;
  inset:0;
  object-fit:cover;
  transform:scale(1.01);
  transition:transform .7s cubic-bezier(.22,1,.36,1), filter .7s cubic-bezier(.22,1,.36,1);
}

.work-tile::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:1;
  background:rgba(49,74,50,.08);
  transition:background .45s ease;
}

.work-tile:hover img{
  transform:scale(1.07);
  filter:saturate(.9) contrast(.95);
}

.work-tile:hover::before{
  background:rgba(49,74,50,.46);
}

.work-orb{
  position:absolute;
  left:50%;
  top:50%;
  z-index:2;
  width:150px;
  height:150px;
  border-radius:999px;
  display:grid;
  place-items:center;
  text-align:center;
  transform:translate(-50%,-50%) scale(.78);
  opacity:0;
  color:#fbfaf4;
  background:rgba(255,255,255,.18);
  border:1px solid rgba(255,255,255,.46);
  backdrop-filter:blur(16px);
  -webkit-backdrop-filter:blur(16px);
  box-shadow:0 22px 70px rgba(0,0,0,.18);
  transition:opacity .35s ease, transform .45s cubic-bezier(.22,1,.36,1);
}

.work-tile:hover .work-orb{
  opacity:1;
  transform:translate(-50%,-50%) scale(1);
}

.work-orb strong{
  display:block;
  font-family:'Satoshi',sans-serif;
  font-size:1.05rem;
  line-height:1.05;
  letter-spacing:-.03em;
}

.work-orb span{
  display:block;
  margin-top:.6rem;
  font-size:1rem;
  color:rgba(255,255,255,.82);
}

.work-tile.rounded{
  border-radius:1.4rem;
}

@media(max-width:1100px){
  .about-work-grid{
    grid-template-columns:1fr 1fr;
    align-items:start;
  }

  .about-work-copy{
    grid-column:1 / -1;
  }

  .work-tile.tall{
    min-height:470px;
  }
}

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

  .work-tile,
  .work-tile.tall,
  .work-tile.medium,
  .work-tile.short{
    min-height:320px;
  }

  .about-work-title{
    font-size:clamp(3rem,14vw,5.2rem);
  }
}

  
/* =========================================================
   ABOUT PAGE — LOGO MARQUEE SECTION
========================================================= */

.about-logo-strip{
  background:#dfeae0;
  padding:clamp(2.4rem,4vw,3.4rem) 0;
  overflow:hidden;
}

.logo-marquee{
  width:100%;
  overflow:hidden;
  position:relative;
}

.logo-track{
  width:max-content;
  display:flex;
  align-items:center;
  gap:clamp(3rem,6vw,6rem);
  animation:logoMarquee 28s linear infinite;
}

.logo-item{
  display:inline-flex;
  align-items:center;
  gap:.7rem;
  color:#314a32;
  opacity:.88;
  white-space:nowrap;
  font-weight:900;
  font-size:1.18rem;
  letter-spacing:-.04em;
}

.logo-item svg{
  width:42px;
  height:42px;
  flex:0 0 auto;
}

.logo-item span{
  font-family:'Satoshi',sans-serif;
}

@keyframes logoMarquee{
  from{transform:translateX(0)}
  to{transform:translateX(-50%)}
}

@media(max-width:720px){
  .about-logo-strip{
    padding:2rem 0;
  }

  .logo-track{
    gap:2.4rem;
    animation-duration:22s;
  }

  .logo-item{
    font-size:1rem;
  }

  .logo-item svg{
    width:34px;
    height:34px;
  }
}

  
/* =========================================================
   ABOUT PAGE — FINAL IMAGE CTA ABOVE FOOTER
========================================================= */

.about-final-visual{
  position:relative;
  background:#fbfaf4;
  padding:clamp(3rem,5vw,5rem) 0 0;
  overflow:hidden;
}

.about-final-visual::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  height:46%;
  background:#314a32;
  z-index:0;
}

.final-visual-card{
  position:relative;
  z-index:1;
  min-height:520px;
  border-radius:1.8rem;
  overflow:hidden;
  color:#fbfaf4;
  background:
    linear-gradient(180deg,rgba(0,0,0,.02),rgba(0,0,0,.48)),
    url('https://acostalands.com/wp-content/uploads/2026/05/Service-turf-home.webp');
  background-size:cover;
  background-position:center;
  box-shadow:0 28px 90px rgba(24,34,24,.16);
}

.final-visual-tags{
  position:absolute;
  left:2rem;
  top:2rem;
  z-index:2;
  display:flex;
  flex-wrap:wrap;
  gap:.6rem;
  max-width:420px;
}

.final-visual-tags a{
  min-width:128px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:.85rem 1.1rem;
  border:1px solid rgba(255,255,255,.72);
  border-radius:999px;
  color:#fbfaf4;
  font-weight:900;
  text-decoration:none;
  backdrop-filter:blur(8px);
  -webkit-backdrop-filter:blur(8px);
  transition:all .25s ease;
}

.final-visual-tags a:hover{
  background:rgba(255,255,255,.12);
  transform:translateY(-2px);
}

.final-visual-arrow{
  position:absolute;
  right:2rem;
  top:2rem;
  z-index:2;
  width:78px;
  height:78px;
  border-radius:999px;
  display:grid;
  place-items:center;
  background:#fbfaf4;
  color:#314a32;
  font-size:2.2rem;
  transition:transform .25s ease, opacity .25s ease;
}

.final-visual-arrow:hover{
  transform:translate(3px,-3px);
  opacity:.9;
}

.final-visual-title{
  position:absolute;
  left:2rem;
  right:2rem;
  bottom:2.2rem;
  z-index:2;
  margin:0;
  max-width:1080px;
  color:#fbfaf4;
  font-size:clamp(3rem,6.3vw,7rem);
  line-height:1;
  letter-spacing:-.07em;
  text-transform:uppercase;
}

/* footer tone adjusted only for About page */
.site-footer{
  background:#314a32;
  color:#fbfaf4;
  padding-top:clamp(4.2rem,7vw,6.8rem);
  border-top:0;
}

.site-footer .footer-logo,
.site-footer .footer-links-grid h3{
  color:#fbfaf4;
}

.site-footer .footer-logo{
  border-right-color:rgba(255,255,255,.55);
}

.site-footer .footer-intro,
.site-footer .footer-links-grid a,
.site-footer .footer-inline-info,
.site-footer .footer-bottom{
  color:rgba(255,255,255,.72);
}

.site-footer .footer-bottom{
  border-top-color:rgba(255,255,255,.32);
}

.site-footer .footer-socials a{
  background:rgba(255,255,255,.12);
  color:#fbfaf4;
}

.site-footer .footer-socials a:hover{
  background:var(--brand-green);
  color:#17311d;
}

@media(max-width:900px){
  .final-visual-card{
    min-height:440px;
  }

  .final-visual-tags{
    left:1.2rem;
    top:1.2rem;
  }

  .final-visual-tags span{
    min-width:auto;
    padding:.7rem 1rem;
    font-size:.85rem;
  }

  .final-visual-arrow{
    right:1.2rem;
    top:1.2rem;
    width:62px;
    height:62px;
    font-size:1.8rem;
  }

  .final-visual-title{
    left:1.2rem;
    right:1.2rem;
    bottom:1.4rem;
  }
}

  

/* =========================================================
   RESPONSIVE NAVIGATION — ACOSTA LANDSTONE
========================================================= */
.brand-logo{
  display:block;
  width:auto;
  object-fit:contain;
}

.brand-logo-full{
  height:52px;
}

.brand-logo-symbol{
  display:none;
  height:44px;
}

.mobile-menu-toggle{
  display:none;
  width:48px;
  height:48px;
  border:1px solid rgba(255,255,255,.14);
  border-radius:999px;
  background:rgba(255,255,255,.08);
  color:#fff;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:5px;
  cursor:pointer;
  position:relative;
  z-index:1002;
}

.mobile-menu-toggle span{
  width:20px;
  height:2px;
  border-radius:999px;
  background:#fff;
  transition:transform .25s ease, opacity .25s ease;
}

.mobile-menu{
  position:fixed;
  inset:0;
  z-index:1001;
  background:#071107;
  color:#fff;
  display:none;
  opacity:0;
  pointer-events:none;
  transition:opacity .28s ease;
}

.mobile-menu.is-open{
  display:block;
  opacity:1;
  pointer-events:auto;
}

.mobile-menu-inner{
  min-height:100vh;
  width:min(100%, 760px);
  margin:0 auto;
  padding:1.35rem 1.25rem 2.4rem;
  display:flex;
  flex-direction:column;
}

.mobile-menu-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1rem;
  padding-bottom:2.4rem;
}

.mobile-menu-brand img{
  height:58px;
  width:auto;
  object-fit:contain;
}

.mobile-menu-close{
  width:48px;
  height:48px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.16);
  background:rgba(255,255,255,.08);
  color:#fff;
  font-size:2rem;
  line-height:1;
  display:grid;
  place-items:center;
  cursor:pointer;
}

.mobile-menu-nav{
  display:flex;
  flex-direction:column;
  gap:.2rem;
  margin:auto 0;
}

.mobile-menu-nav a{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:1rem 0;
  color:#fbfaf4;
  font-family:'Satoshi', sans-serif;
  font-size:clamp(2.2rem, 10vw, 4.6rem);
  font-weight:800;
  letter-spacing:-.07em;
  line-height:.95;
  border-bottom:1px solid rgba(255,255,255,.10);
}

.mobile-menu-nav a:not(.mobile-quote-btn)::after{
  content:"↗";
  font-size:1.1rem;
  opacity:.45;
  letter-spacing:0;
}

.mobile-menu-nav .mobile-quote-btn{
  justify-content:center;
  margin-top:1.25rem;
  padding:1.15rem 1.4rem;
  border:0;
  border-radius:999px;
  background:var(--brand-green);
  color:var(--ink-deep);
  font-family:'Manrope', sans-serif;
  font-size:12px;
  font-weight:900;
  letter-spacing:.28em;
  text-transform:uppercase;
}

.mobile-menu-socials{
  display:flex;
  flex-wrap:wrap;
  gap:.65rem;
  padding-top:2rem;
}

.mobile-menu-socials a{
  padding:.75rem .95rem;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.06);
  color:rgba(255,255,255,.78);
  font-size:.75rem;
  font-weight:900;
  letter-spacing:.16em;
  text-transform:uppercase;
}

body.mobile-menu-open{
  overflow:hidden;
}

body.mobile-menu-open .mobile-menu-toggle span:nth-child(1){
  transform:translateY(7px) rotate(45deg);
}

body.mobile-menu-open .mobile-menu-toggle span:nth-child(2){
  opacity:0;
}

body.mobile-menu-open .mobile-menu-toggle span:nth-child(3){
  transform:translateY(-7px) rotate(-45deg);
}

@media (max-width:1180px){
  .topbar{
    width:calc(100% - 1.25rem);
    top:.75rem;
    padding:.72rem .85rem;
    border-radius:999px;
    gap:.75rem;
    background:rgba(8,18,9,.92);
    backdrop-filter:none;
    -webkit-backdrop-filter:none;
  }

  .brand-logo-full{
    display:none;
  }

  .brand-logo-symbol{
    display:block;
    height:44px;
  }

  .nav,
  .desktop-quote-btn{
    display:none !important;
  }

  .mobile-menu-toggle{
    display:flex;
  }
}

@media (max-width:640px){
  .topbar{
    width:calc(100% - 1rem);
    padding:.65rem .75rem;
  }

  .brand-logo-symbol{
    height:40px;
  }

  .mobile-menu-brand img{
    height:54px;
  }

  .mobile-menu-inner{
    padding:1rem 1rem 2rem;
  }

  .mobile-menu-nav a{
    font-size:clamp(2.05rem, 12vw, 3.8rem);
  }
}

/* =========================================================
   RESPONSIVE PREMIUM POLISH — ACOSTA LANDSTONE
   Cleaner mobile/tablet spacing, form, menu and footer
========================================================= */
@media (max-width:1180px){
  :root{ --mobile-side: clamp(1.25rem, 5vw, 3rem); }

  body{
    overflow-x:clip;
  }

  .container,
  .photo-cta-content{
    width:calc(100% - (var(--mobile-side) * 2)) !important;
    max-width:760px !important;
  }

  .topbar{
    width:calc(100% - 1.5rem) !important;
    max-width:760px !important;
    background:rgba(8,18,9,.96) !important;
    border-color:rgba(255,255,255,.14) !important;
    box-shadow:0 18px 42px rgba(0,0,0,.22) !important;
  }

  .mobile-menu{
    background:#17311d !important;
  }

  .mobile-menu-inner{
    width:100% !important;
    max-width:720px !important;
    min-height:100dvh !important;
    padding:1.15rem var(--mobile-side) 2.2rem !important;
    justify-content:space-between !important;
  }

  .mobile-menu-top{
    padding-bottom:1.6rem !important;
  }

  .mobile-menu-brand img{
    height:50px !important;
  }

  .mobile-menu-close,
  .mobile-menu-toggle{
    background:rgba(255,255,255,.10) !important;
    border-color:rgba(255,255,255,.20) !important;
  }

  .mobile-menu-nav{
    margin:1.2rem 0 !important;
    gap:.45rem !important;
    align-items:stretch !important;
  }

  .mobile-menu-nav a{
    justify-content:center !important;
    text-align:center !important;
    padding:.78rem 0 !important;
    font-family:'Satoshi', sans-serif !important;
    font-size:clamp(1.65rem, 6.8vw, 3.1rem) !important;
    font-weight:700 !important;
    letter-spacing:-.045em !important;
    line-height:1.05 !important;
    border-bottom:1px solid rgba(255,255,255,.10) !important;
  }

  .mobile-menu-nav a:not(.mobile-quote-btn)::after{
    display:none !important;
  }

  .mobile-menu-nav .mobile-quote-btn{
    width:min(100%, 360px) !important;
    margin:1.35rem auto 0 !important;
    padding:1.05rem 1.4rem !important;
    font-size:11px !important;
    font-weight:800 !important;
    letter-spacing:.24em !important;
  }

  .mobile-menu-socials{
    justify-content:center !important;
    padding-top:1.4rem !important;
    gap:.55rem !important;
  }

  .mobile-menu-socials a{
    font-size:.68rem !important;
    font-weight:800 !important;
    letter-spacing:.12em !important;
    padding:.68rem .82rem !important;
    background:rgba(255,255,255,.08) !important;
  }


}

@media (max-width:640px){
  :root{ --mobile-side: clamp(1.35rem, 6vw, 1.9rem); }

  .container,
  .photo-cta-content{
    width:calc(100% - (var(--mobile-side) * 2)) !important;
    max-width:480px !important;
  }

  .topbar{
    width:calc(100% - 1rem) !important;
    padding:.62rem .72rem !important;
  }

  .brand-logo-symbol{
    height:38px !important;
  }

  .mobile-menu-inner{
    padding:1rem var(--mobile-side) 2rem !important;
  }

  .mobile-menu-nav a{
    font-size:clamp(1.55rem, 8.4vw, 2.55rem) !important;
    padding:.68rem 0 !important;
    letter-spacing:-.038em !important;
  }

  .mobile-menu-socials a{
    font-size:.62rem !important;
    padding:.62rem .72rem !important;
  }


}

/* =========================================================
   ABOUT PAGE FINAL POLISH — ACOSTA LANDSTONE
   Footer, purpose icons and gallery radius
========================================================= */

/* Purpose cards: icon + text aligned together */
.about-purpose-point{
  display:grid;
  grid-template-columns:64px minmax(0,1fr);
  column-gap:1.2rem;
  align-items:start;
  max-width:520px;
}

.about-purpose-icon{
  grid-row:1 / span 2;
  margin-bottom:0 !important;
  border-radius:.95rem;
}

.about-purpose-point h3{
  align-self:end;
}

.about-purpose-point p{
  grid-column:2;
}

/* Our Work: all image boxes rounded */
.work-tile,
.work-tile.tall,
.work-tile.medium,
.work-tile.short{
  border-radius:1.55rem !important;
}

/* About footer: same Home distribution, green tone */
.site-footer{
  background:#314a32 !important;
  color:#fbfaf4 !important;
  padding:clamp(4.2rem,7vw,6.8rem) 0 1.4rem !important;
  border-top:0 !important;
}

.site-footer .footer-logo,
.site-footer .footer-links-grid h3{
  color:#fbfaf4 !important;
}

.site-footer .footer-logo{
  border-right-color:rgba(255,255,255,.55) !important;
}

.site-footer .footer-intro,
.site-footer .footer-links-grid a,
.site-footer .footer-inline-info,
.site-footer .footer-inline-info a,
.site-footer .footer-inline-info span,
.site-footer .footer-bottom,
.site-footer .footer-bottom a{
  color:rgba(255,255,255,.74) !important;
}

.site-footer .footer-bottom{
  border-top-color:rgba(255,255,255,.32) !important;
}

.site-footer .footer-socials a{
  background:rgba(255,255,255,.12) !important;
  color:#fbfaf4 !important;
}

.site-footer .footer-socials a:hover{
  background:var(--brand-green) !important;
  color:#17311d !important;
}

.site-footer .footer-socials svg{
  width:19px;
  height:19px;
}

@media (max-width:1180px){
  .footer-top,
  .footer-brand-line{
    grid-template-columns:1fr !important;
  }

  .footer-logo{
    border-right:0 !important;
    padding-right:0 !important;
  }
}

@media (max-width:720px){
  .about-purpose-points{
    gap:2.2rem !important;
  }

  .about-purpose-point{
    grid-template-columns:58px minmax(0,1fr);
    column-gap:1rem;
  }

  .about-purpose-icon{
    width:58px;
    height:58px;
  }

  .footer-brand-block,
  .footer-brand-line{
    justify-items:center !important;
    text-align:center !important;
  }

  .footer-logo img{
    height:68px !important;
  }

  .footer-intro{
    margin:0 auto !important;
    text-align:center !important;
  }

  .footer-inline-row{
    align-items:center !important;
    justify-content:center !important;
    flex-direction:column !important;
  }

  .footer-socials,
  .footer-inline-info{
    justify-content:center !important;
    text-align:center !important;
  }

  .footer-inline-info span:nth-of-type(1),
  .footer-inline-info span:nth-of-type(2){
    display:none !important;
  }

  .footer-links-grid{
    grid-template-columns:repeat(2,minmax(0,1fr)) !important;
    gap:1.6rem 1.25rem !important;
    text-align:center !important;
  }

  .footer-bottom{
    display:flex !important;
    flex-direction:column !important;
    align-items:center !important;
    justify-content:center !important;
    text-align:center !important;
    gap:.9rem !important;
  }

  .footer-bottom p{
    margin:0 !important;
    text-align:center !important;
  }

  .footer-bottom > div{
    display:flex !important;
    justify-content:center !important;
    align-items:center !important;
    flex-wrap:wrap !important;
    gap:.75rem !important;
  }
}

@media (max-width:390px){
  .footer-links-grid{
    grid-template-columns:1fr !important;
  }
}

  

/* =========================================================
   ACOSTA GLOBAL HEADER + LOGO + MOBILE MENU
   Copied/synced from approved index.html
========================================================= */
.topbar{
  position:fixed;
  top:20px;
  left:50%;
  transform:translateX(-50%);
  width:min(var(--container, 1320px),calc(100% - 2rem));
  z-index:999;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1.5rem;
  padding:1rem 1.4rem;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(8,18,9,.34);
  backdrop-filter:blur(18px);
  -webkit-backdrop-filter:blur(18px);
  box-shadow:0 18px 40px rgba(0,0,0,.12);
  color:#fff;
  transition:background-color .35s ease,border-color .35s ease,box-shadow .35s ease;
}

.topbar.scrolled{
  background:rgba(14,20,14,.92);
  border-color:rgba(255,255,255,.10);
  box-shadow:0 18px 48px rgba(0,0,0,.28);
}

.brand{
  display:flex;
  align-items:center;
  gap:.85rem;
  flex:0 0 auto;
  min-width:0;
}

.brand-logo{
  display:block;
  width:auto;
  object-fit:contain;
}

.brand-logo-full{
  height:52px;
  max-width:280px;
}

.brand-logo-symbol{
  display:none;
  height:44px;
}

.nav{
  display:flex;
  align-items:center;
  gap:1.6rem;
  flex-wrap:wrap;
  justify-content:center;
}

.nav a{
  color:rgba(255,255,255,.82);
  font-size:11px;
  font-weight:700;
  letter-spacing:.28em;
  text-transform:uppercase;
  transition:transform .25s ease,color .25s ease;
}

.nav a:hover,
.nav a.active{
  transform:translateY(-2px);
  color:white;
}

.cta-btn.desktop-quote-btn{
  position:relative;
  overflow:hidden;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.6rem;
  padding:1rem 1.6rem;
  border-radius:999px;
  background:var(--brand-green, #8ebc61);
  color:var(--ink-deep, #182218);
  font-size:11px;
  font-weight:800;
  letter-spacing:.28em;
  text-transform:uppercase;
  transition:transform .25s ease,background-color .25s ease;
  white-space:nowrap;
}

.cta-btn.desktop-quote-btn:hover{
  transform:translateY(-2px) scale(1.02);
  background:var(--brand-green-soft, #a6cd7d);
}

.mobile-menu-toggle{
  display:none;
  width:48px;
  height:48px;
  border:1px solid rgba(255,255,255,.14);
  border-radius:999px;
  background:rgba(255,255,255,.08);
  color:#fff;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:5px;
  cursor:pointer;
  position:relative;
  z-index:1002;
  padding:0;
}

.mobile-menu-toggle span{
  width:20px;
  height:2px;
  border-radius:999px;
  background:#fff;
  transition:transform .25s ease, opacity .25s ease;
}

.mobile-menu{
  position:fixed;
  inset:0;
  z-index:1001;
  background:#17311d;
  color:#fff;
  display:none;
  opacity:0;
  pointer-events:none;
  transition:opacity .28s ease;
}

.mobile-menu.is-open{
  display:block;
  opacity:1;
  pointer-events:auto;
}

.mobile-menu-inner{
  min-height:100vh;
  min-height:100dvh;
  width:100%;
  max-width:720px;
  margin:0 auto;
  padding:1.15rem clamp(1.25rem, 5vw, 3rem) 2.2rem;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}

.mobile-menu-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1rem;
  padding-bottom:1.6rem;
}

.mobile-menu-brand img{
  height:50px;
  width:auto;
  object-fit:contain;
}

.mobile-menu-close{
  width:48px;
  height:48px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.20);
  background:rgba(255,255,255,.10);
  color:#fff;
  font-size:2rem;
  line-height:1;
  display:grid;
  place-items:center;
  cursor:pointer;
  padding:0;
}

.mobile-menu-nav{
  display:flex;
  flex-direction:column;
  align-items:stretch;
  gap:.45rem;
  margin:1.2rem 0;
}

.mobile-menu-nav a{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:1rem 0;
  color:#fbfaf4;
  font-family:'Satoshi', sans-serif;
  font-size:clamp(2.2rem, 10vw, 4.6rem);
  font-weight:800;
  letter-spacing:-.07em;
  line-height:.95;
  border-bottom:1px solid rgba(255,255,255,.10);
}

.mobile-menu-nav a:not(.mobile-quote-btn)::after{
  content:"↗";
  font-size:1.1rem;
  opacity:.45;
  letter-spacing:0;
}

.mobile-menu-nav .mobile-quote-btn{
  justify-content:center;
  margin-top:1.25rem;
  padding:1.15rem 1.4rem;
  border:0;
  border-radius:999px;
  background:var(--brand-green, #8ebc61);
  color:var(--ink-deep, #182218);
  font-family:'Manrope', sans-serif;
  font-size:12px;
  font-weight:900;
  letter-spacing:.28em;
  text-transform:uppercase;
}

.mobile-menu-socials{
  display:flex;
  flex-wrap:wrap;
  gap:.65rem;
  padding-top:2rem;
  justify-content:center;
}

.mobile-menu-socials a{
  padding:.75rem .95rem;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.06);
  color:rgba(255,255,255,.78);
  font-size:.75rem;
  font-weight:900;
  letter-spacing:.16em;
  text-transform:uppercase;
}

body.mobile-menu-open{
  overflow:hidden;
}

body.mobile-menu-open .mobile-menu-toggle span:nth-child(1){
  transform:translateY(7px) rotate(45deg);
}

body.mobile-menu-open .mobile-menu-toggle span:nth-child(2){
  opacity:0;
}

body.mobile-menu-open .mobile-menu-toggle span:nth-child(3){
  transform:translateY(-7px) rotate(-45deg);
}

@media (max-width:1180px){
  .topbar{
    width:calc(100% - 1.5rem) !important;
    max-width:760px !important;
    top:.75rem !important;
    padding:.72rem .85rem !important;
    border-radius:999px !important;
    gap:.75rem !important;
    background:rgba(8,18,9,.96) !important;
    border-color:rgba(255,255,255,.14) !important;
    box-shadow:0 18px 42px rgba(0,0,0,.22) !important;
    backdrop-filter:none !important;
    -webkit-backdrop-filter:none !important;
  }

  .brand-logo-full{
    display:none !important;
  }

  .brand-logo-symbol{
    display:block !important;
    height:44px !important;
  }

  .nav,
  .desktop-quote-btn{
    display:none !important;
  }

  .mobile-menu-toggle{
    display:flex !important;
    background:rgba(255,255,255,.10) !important;
    border-color:rgba(255,255,255,.20) !important;
  }
}

@media (max-width:640px){
  .topbar{
    width:calc(100% - 1rem) !important;
    top:12px !important;
    padding:.65rem .75rem !important;
  }

  .brand-logo-symbol{
    height:40px !important;
  }

  .mobile-menu-brand img{
    height:54px !important;
  }

  .mobile-menu-inner{
    padding:1rem 1rem 2rem !important;
  }

  .mobile-menu-nav a{
    font-size:clamp(2.05rem, 12vw, 3.8rem) !important;
  }
}



/* === ACOSTA INDEX FOOTER OVERRIDE START === */
/* =========================================================
   FOOTER COPIED FROM APPROVED INDEX
========================================================= */
/* =========================================================
   FOOTER — PREMIUM EDITORIAL
========================================================= */
.site-footer{
  background:#fbfaf4;
  color:var(--forest-deep);
  padding:3.2rem 0 1.4rem;
  border-top:1px solid var(--line-soft);
}

.footer-inner{
  display:grid;
  gap:2.2rem;
}

.footer-top{
  display:grid;
  grid-template-columns:minmax(0,1.2fr) minmax(420px,.9fr);
  gap:2.8rem;
  align-items:start;
}

.footer-brand-block{
  display:grid;
  gap:1rem;
}

.footer-brand-line{
  display:grid;
  grid-template-columns:auto 1fr;
  align-items:center;
  gap:2rem;
}

.footer-logo{
  display:inline-flex;
  align-items:center;
  gap:.75rem;
  padding-right:2rem;
  border-right:2px solid rgba(24,34,24,.62);
  color:var(--forest-deep);
}

.footer-logo-mark{
  width:42px;
  height:42px;
  display:grid;
  place-items:center;
}

.footer-logo-mark svg{
  width:34px;
  height:34px;
}

.footer-logo .display{
  font-size:clamp(2rem,3.6vw,3.7rem);
  line-height:1;
  letter-spacing:-.075em;
  white-space:nowrap;
}

.footer-intro{
  max-width:410px;
  margin:0;
  color:rgba(38,49,38,.58);
  font-size:1.05rem;
  line-height:1.75;
}

.footer-socials{
  display:flex;
  flex-wrap:wrap;
  gap:.75rem;
}

.footer-socials a{
  width:44px;
  height:44px;
  display:grid;
  place-items:center;
  border-radius:999px;
  background:#dfeae0;
  color:var(--forest-deep);
  transition:transform .25s ease, background-color .25s ease;
}

.footer-socials a:hover{
  transform:translateY(-3px);
  background:var(--brand-green);
}

.footer-socials svg{
  width:19px;
  height:19px;
}

.footer-inline-row{
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:1.25rem;
  margin-top:1.2rem;
}

.footer-inline-info{
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:.9rem;
  color:rgba(38,49,38,.72);
  font-size:1rem;
  font-weight:700;
  line-height:1.5;
}

.footer-inline-info a,
.footer-inline-info span{
  color:rgba(38,49,38,.72);
  white-space:nowrap;
}

.footer-inline-info a:hover{
  opacity:.65;
}


.footer-links-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:1.6rem;
}

.footer-links-grid h3{
  margin:0 0 1.5rem;
  color:var(--forest-deep);
  font-size:.94rem;
  font-weight:900;
  letter-spacing:-.03em;
  text-transform:uppercase;
}

.footer-links-grid a{
  display:block;
  margin:.9rem 0;
  color:rgba(38,49,38,.78);
  font-size:.98rem;
  font-weight:600;
  line-height:1.35;
  transition:opacity .25s ease, transform .25s ease;
}

.footer-links-grid a:hover{
  opacity:.62;
  transform:translateX(4px);
}

.footer-bottom{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:1rem;
  padding-top:1.2rem;
  border-top:1px solid rgba(24,34,24,.55);
  color:rgba(38,49,38,.64);
  font-size:.85rem;
  font-weight:700;
  text-transform:uppercase;
}

.footer-bottom p{margin:0;}
.footer-bottom div{display:flex;align-items:center;gap:.9rem;flex-wrap:wrap;}
.footer-bottom a{transition:opacity .25s ease;color:rgba(38,49,38,.64);}
.footer-bottom a:hover{opacity:.6;}

@media (max-width:1100px){
  .footer-top,
  .footer-brand-line{
    grid-template-columns:1fr;
  }

  .footer-logo{
    border-right:0;
    padding-right:0;
  }

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

@media (max-width:640px){
  .site-footer{padding:4rem 0 1.5rem;}
  .footer-links-grid{grid-template-columns:1fr;gap:1.5rem;}
  .footer-bottom{align-items:flex-start;flex-direction:column;}
  .footer-inline-row{align-items:flex-start;flex-direction:column;}
  .footer-inline-info{gap:.55rem;font-size:.92rem;}
}

.site-footer .footer-logo img{
  height:72px;
  width:auto;
  max-width:100%;
  object-fit:contain;
  display:block;
}

@media (max-width:640px){
  .site-footer .footer-logo img{
    height:58px;
    margin:0 auto;
  }
}
/* === ACOSTA INDEX FOOTER OVERRIDE END === */



/* =========================================================
   FOOTER RESPONSIVE MATCH — APPROVED INDEX ORDER
   Keeps footer centered and ordered like index on tablet/mobile
========================================================= */
@media (max-width:1180px){
  .site-footer{
    padding:3.5rem 0 1.4rem !important;
  }

  .site-footer .container.footer-inner{
    width:calc(100% - (clamp(1.25rem, 5vw, 3rem) * 2)) !important;
    max-width:760px !important;
    margin-left:auto !important;
    margin-right:auto !important;
  }

  .footer-top{
    grid-template-columns:1fr !important;
    gap:2.4rem !important;
  }

  .footer-brand-block,
  .footer-brand-line,
  .footer-inline-row{
    justify-items:center !important;
    text-align:center !important;
  }

  .footer-brand-line{
    grid-template-columns:1fr !important;
    gap:1.05rem !important;
  }

  .footer-logo{
    padding-right:0 !important;
    border-right:0 !important;
    justify-content:center !important;
  }

  .footer-logo img{
    height:68px !important;
    width:auto !important;
    max-width:100% !important;
    margin:0 auto !important;
    object-fit:contain !important;
  }

  .footer-intro{
    margin:0 auto !important;
    max-width:430px !important;
    font-size:1rem !important;
    line-height:1.65 !important;
    text-align:center !important;
  }

  .footer-inline-row{
    align-items:center !important;
    flex-direction:column !important;
    gap:1.15rem !important;
  }

  .footer-socials{
    justify-content:center !important;
  }

  .footer-inline-info{
    justify-content:center !important;
    text-align:center !important;
    gap:.55rem !important;
    max-width:520px !important;
    margin:0 auto !important;
  }

  .footer-links-grid{
    grid-template-columns:repeat(2, minmax(0,1fr)) !important;
    gap:1.8rem 2rem !important;
    max-width:560px !important;
    margin:0 auto !important;
    text-align:center !important;
  }

  .footer-links-grid h3{
    margin-bottom:.95rem !important;
    font-size:.86rem !important;
  }

  .footer-links-grid a{
    margin:.72rem 0 !important;
    font-size:.94rem !important;
  }

  .footer-links-grid a:hover{
    transform:none !important;
  }

  .footer-bottom{
    justify-content:center !important;
    align-items:center !important;
    text-align:center !important;
    flex-direction:column !important;
    gap:.75rem !important;
  }

  .footer-bottom div{
    justify-content:center !important;
  }
}

@media (max-width:640px){
  .site-footer{
    padding:4rem 0 1.5rem !important;
  }

  .site-footer .container.footer-inner{
    width:calc(100% - (clamp(1.35rem, 6vw, 1.9rem) * 2)) !important;
    max-width:480px !important;
  }

  .footer-logo img{
    height:62px !important;
  }

  .footer-intro{
    font-size:.98rem !important;
  }

  .footer-socials a{
    width:42px !important;
    height:42px !important;
  }

  .footer-inline-info{
    font-size:.92rem !important;
    line-height:1.7 !important;
  }

  .footer-inline-info span:nth-of-type(1),
  .footer-inline-info span:nth-of-type(2){
    display:none !important;
  }

  .footer-links-grid{
    grid-template-columns:repeat(2, minmax(0,1fr)) !important;
    gap:1.6rem 1.25rem !important;
  }

  .footer-links-grid a{
    font-size:.92rem !important;
  }

  .footer-bottom{
    display:flex !important;
    flex-direction:column !important;
    align-items:center !important;
    justify-content:center !important;
    text-align:center !important;
    gap:.9rem !important;
  }

  .footer-bottom p{
    margin:0 !important;
    text-align:center !important;
  }

  .footer-bottom > div{
    display:flex !important;
    justify-content:center !important;
    align-items:center !important;
    flex-wrap:wrap !important;
    gap:.75rem !important;
  }
}

@media (max-width:390px){
  .footer-links-grid{
    grid-template-columns:1fr !important;
  }
}



/* === ACOSTA FINAL MENU SIZE LOCK — MATCH APPROVED INDEX START === */
.topbar{
  position:fixed !important;
  top:20px !important;
  left:50% !important;
  transform:translateX(-50%) !important;
  width:min(var(--container),calc(100% - 2rem)) !important;
  max-width:var(--container) !important;
  z-index:9999 !important;
  display:flex !important;
  align-items:center !important;
  justify-content:space-between !important;
  gap:1.5rem !important;
  padding:1rem 1.4rem !important;
  border-radius:999px !important;
  border:1px solid rgba(255,255,255,.12) !important;
  background:rgba(8,18,9,.34) !important;
  backdrop-filter:blur(18px) !important;
  -webkit-backdrop-filter:blur(18px) !important;
  box-shadow:0 18px 40px rgba(0,0,0,.12) !important;
  color:#fff !important;
  transition:background-color .35s ease,border-color .35s ease,box-shadow .35s ease !important;
}

.topbar.scrolled{
  background:rgba(8, 31, 8, 0.92) !important;
  border-color:rgba(255,255,255,.10) !important;
  box-shadow:0 18px 48px rgba(0,0,0,.28) !important;
}

.brand{
  display:inline-flex !important;
  align-items:center !important;
  justify-content:flex-start !important;
  gap:.85rem !important;
  line-height:1 !important;
  flex:0 0 auto !important;
  min-width:0 !important;
}

.brand-logo{
  display:block !important;
  width:auto !important;
  max-width:none !important;
  object-fit:contain !important;
  flex:0 0 auto !important;
}

.brand-logo-full{
  display:block !important;
  height:52px !important;
  width:auto !important;
}

.brand-logo-symbol{
  display:none !important;
  height:44px !important;
  width:auto !important;
}

.nav{
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  gap:1.6rem !important;
  flex-wrap:wrap !important;
  min-width:0 !important;
}

.nav a{
  color:rgba(255,255,255,.82) !important;
  font-size:11px !important;
  font-weight:700 !important;
  letter-spacing:.28em !important;
  text-transform:uppercase !important;
  line-height:1.2 !important;
  white-space:nowrap !important;
  transform:none;
}

.nav a:hover,
.nav a.active{
  color:#fff !important;
  transform:translateY(-2px) !important;
}

.desktop-quote-btn{
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  gap:.6rem !important;
  padding:1rem 1.6rem !important;
  border-radius:999px !important;
  background:var(--brand-green, #8ebc61) !important;
  color:var(--ink-deep, #182218) !important;
  font-size:11px !important;
  font-weight:800 !important;
  letter-spacing:.28em !important;
  text-transform:uppercase !important;
  white-space:nowrap !important;
}

.mobile-menu-toggle{
  display:none !important;
  width:48px !important;
  height:48px !important;
  min-width:48px !important;
  min-height:48px !important;
  border:1px solid rgba(255,255,255,.14) !important;
  border-radius:999px !important;
  background:rgba(255,255,255,.08) !important;
  color:#fff !important;
  align-items:center !important;
  justify-content:center !important;
  flex-direction:column !important;
  gap:5px !important;
  cursor:pointer !important;
  position:relative !important;
  z-index:1002 !important;
  padding:0 !important;
}

.mobile-menu-toggle span{
  width:20px !important;
  height:2px !important;
  border-radius:999px !important;
  background:#fff !important;
  transition:transform .25s ease, opacity .25s ease !important;
}

.mobile-menu{
  position:fixed !important;
  inset:0 !important;
  z-index:1001 !important;
  background:#17311d !important;
  color:#fff !important;
  display:none;
  opacity:0;
  pointer-events:none;
  transition:opacity .28s ease !important;
}

.mobile-menu.is-open{
  display:block !important;
  opacity:1 !important;
  pointer-events:auto !important;
}

.mobile-menu-inner{
  width:100% !important;
  max-width:720px !important;
  min-height:100dvh !important;
  margin:0 auto !important;
  padding:1.15rem clamp(1.25rem, 5vw, 3rem) 2.2rem !important;
  display:flex !important;
  flex-direction:column !important;
  justify-content:space-between !important;
}

.mobile-menu-top{
  display:flex !important;
  align-items:center !important;
  justify-content:space-between !important;
  gap:1rem !important;
  padding-bottom:1.6rem !important;
}

.mobile-menu-brand img{
  height:50px !important;
  width:auto !important;
  object-fit:contain !important;
}

.mobile-menu-close{
  width:48px !important;
  height:48px !important;
  min-width:48px !important;
  min-height:48px !important;
  border-radius:999px !important;
  border:1px solid rgba(255,255,255,.20) !important;
  background:rgba(255,255,255,.10) !important;
  color:#fff !important;
  font-size:2rem !important;
  line-height:1 !important;
  display:grid !important;
  place-items:center !important;
  cursor:pointer !important;
  padding:0 !important;
}

.mobile-menu-nav{
  display:flex !important;
  flex-direction:column !important;
  align-items:stretch !important;
  gap:.45rem !important;
  margin:1.2rem 0 !important;
}

.mobile-menu-nav a{
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  text-align:center !important;
  padding:.78rem 0 !important;
  color:#fbfaf4 !important;
  font-family:'Satoshi', sans-serif !important;
  font-size:clamp(1.65rem, 6.8vw, 3.1rem) !important;
  font-weight:700 !important;
  letter-spacing:-.045em !important;
  line-height:1.05 !important;
  border-bottom:1px solid rgba(255,255,255,.10) !important;
}

.mobile-menu-nav a:not(.mobile-quote-btn)::after{
  display:none !important;
  content:none !important;
}

.mobile-menu-nav .mobile-quote-btn{
  width:min(100%, 360px) !important;
  justify-content:center !important;
  margin:1.35rem auto 0 !important;
  padding:1.05rem 1.4rem !important;
  border:0 !important;
  border-radius:999px !important;
  background:var(--brand-green, #8ebc61) !important;
  color:var(--ink-deep, #182218) !important;
  font-family:'Manrope', sans-serif !important;
  font-size:11px !important;
  font-weight:800 !important;
  letter-spacing:.24em !important;
  text-transform:uppercase !important;
}

.mobile-menu-socials{
  display:flex !important;
  flex-wrap:wrap !important;
  justify-content:center !important;
  gap:.55rem !important;
  padding-top:1.4rem !important;
}

.mobile-menu-socials a{
  padding:.68rem .82rem !important;
  border-radius:999px !important;
  border:1px solid rgba(255,255,255,.14) !important;
  background:rgba(255,255,255,.08) !important;
  color:rgba(255,255,255,.78) !important;
  font-size:.68rem !important;
  font-weight:800 !important;
  letter-spacing:.12em !important;
  text-transform:uppercase !important;
}

body.mobile-menu-open{
  overflow:hidden !important;
}

body.mobile-menu-open .mobile-menu-toggle span:nth-child(1){
  transform:translateY(7px) rotate(45deg) !important;
}

body.mobile-menu-open .mobile-menu-toggle span:nth-child(2){
  opacity:0 !important;
}

body.mobile-menu-open .mobile-menu-toggle span:nth-child(3){
  transform:translateY(-7px) rotate(-45deg) !important;
}

@media (max-width:1180px){
  .topbar{
    width:calc(100% - 1.5rem) !important;
    max-width:760px !important;
    top:.75rem !important;
    padding:.72rem .85rem !important;
    border-radius:999px !important;
    gap:.75rem !important;
    background:rgba(8,18,9,.96) !important;
    border-color:rgba(255,255,255,.14) !important;
    box-shadow:0 18px 42px rgba(0,0,0,.22) !important;
    backdrop-filter:none !important;
    -webkit-backdrop-filter:none !important;
  }

  .brand-logo-full{
    display:none !important;
  }

  .brand-logo-symbol{
    display:block !important;
    height:44px !important;
  }

  .nav,
  .desktop-quote-btn{
    display:none !important;
  }

  .mobile-menu-toggle{
    display:flex !important;
    background:rgba(255,255,255,.10) !important;
    border-color:rgba(255,255,255,.20) !important;
  }
}

@media (max-width:640px){
  .topbar{
    width:calc(100% - 1rem) !important;
    top:12px !important;
    padding:.62rem .72rem !important;
  }

  .brand-logo-symbol{
    height:38px !important;
  }

  .mobile-menu-brand img{
    height:50px !important;
  }

  .mobile-menu-inner{
    padding:1rem clamp(1.35rem, 6vw, 1.9rem) 2rem !important;
  }

  .mobile-menu-nav a{
    font-size:clamp(1.55rem, 8.4vw, 2.55rem) !important;
    padding:.68rem 0 !important;
    letter-spacing:-.038em !important;
  }

  .mobile-menu-socials a{
    font-size:.62rem !important;
    padding:.62rem .72rem !important;
  }
}
/* === ACOSTA FINAL MENU SIZE LOCK — MATCH APPROVED INDEX END === */





/* =========================================================
   ACOSTA FINAL GLOBAL SPACING LOCK — DESKTOP + TABLET + MOBILE
   Keeps every page away from screen edges and prevents oversized
   editorial elements from creating horizontal scroll.
========================================================= */
html,
body{
  width:100% !important;
  max-width:100% !important;
  overflow-x:clip !important;
}

body{
  overflow-y:visible !important;
}

main,
section,
header,
footer{
  max-width:100% !important;
  overflow-x:clip !important;
  overflow-y:visible !important;
  max-height:none !important;
}

/* Same visual gutter system across the site */
.container,
.hero-inner,
.photo-cta-content,
.footer-inner,
.about-hero-inner,
.service-hero-inner,
.reviews-hero-content,
.contact-hero-content,
.projects-editorial-head,
.projects-showcase,
.service-layout,
.about-premium-grid,
.process-timeline-head,
.process-timeline,
.youtube-showcase-head,
.youtube-slider-shell,
.legal-shell,
.faq-shell,
.quote-shell{
  box-sizing:border-box !important;
  width:min(var(--container, 1320px), calc(100% - clamp(2rem, 5vw, 6rem))) !important;
  max-width:var(--container, 1320px) !important;
  margin-left:auto !important;
  margin-right:auto !important;
}

.topbar{
  box-sizing:border-box !important;
  width:min(var(--container, 1320px), calc(100% - clamp(1.5rem, 4vw, 5rem))) !important;
  max-width:var(--container, 1320px) !important;
}

/* Prevent grid/flex children from forcing overflow */
.hero-grid,
.about-premium-grid,
.service-hero-inner,
.service-layout,
.reviews-hero-content,
.contact-hero-content,
.projects-editorial-head,
.projects-intro-row,
.projects-showcase,
.footer-top,
.footer-bottom,
.process-timeline,
.youtube-showcase-head,
.youtube-track,
.contact-grid,
.about-grid,
.projects-grid,
.services-grid,
.process-grid,
.confidence-grid{
  min-width:0 !important;
  max-width:100% !important;
}

.hero-grid > *,
.about-premium-grid > *,
.service-hero-inner > *,
.service-layout > *,
.reviews-hero-content > *,
.contact-hero-content > *,
.projects-editorial-head > *,
.projects-intro-row > *,
.projects-showcase > *,
.footer-top > *,
.footer-bottom > *,
.process-timeline > *,
.youtube-showcase-head > *,
.youtube-track > *,
.contact-grid > *,
.about-grid > *,
.projects-grid > *,
.services-grid > *,
.process-grid > *,
.confidence-grid > *{
  min-width:0 !important;
  max-width:100% !important;
}

/* Large titles must never push the page sideways */
.hero-title,
.about-hero-title,
.service-hero h1,
.reviews-hero h1,
.projects-editorial-title,
.contact-hero h1,
.contact-title,
.legal-title,
.faq-title,
.quote-title,
.section-title,
.service-title,
.areas-title,
.content-title,
.display{
  max-width:100% !important;
  overflow-wrap:normal !important;
  word-break:normal !important;
}

.hero-copy,
.about-hero-copy,
.service-hero-copy,
.reviews-hero-copy,
.contact-hero-copy,
.section-copy,
.intro-copy,
.footer-intro,
p{
  max-width:100% !important;
}

img,
video,
iframe,
canvas,
svg{
  max-width:100% !important;
}

@media (min-width:1181px){
  .container,
  .hero-inner,
  .photo-cta-content,
  .footer-inner,
  .about-hero-inner,
  .service-hero-inner,
  .reviews-hero-content,
  .contact-hero-content,
  .projects-editorial-head,
  .projects-showcase,
  .service-layout,
  .about-premium-grid,
  .process-timeline-head,
  .process-timeline,
  .youtube-showcase-head,
  .youtube-slider-shell,
  .legal-shell,
  .faq-shell,
  .quote-shell{
    width:min(var(--container, 1320px), calc(100% - 5rem)) !important;
  }

  .topbar{
    width:min(var(--container, 1320px), calc(100% - 3rem)) !important;
  }

  .about-hero-title,
  .service-hero h1,
  .reviews-hero h1,
  .projects-editorial-title,
  .contact-hero h1,
  .contact-title,
  .legal-title,
  .faq-title,
  .quote-title{
    font-size:clamp(4rem, 7vw, 8rem) !important;
    line-height:.9 !important;
  }
}

@media (max-width:1180px){
  .container,
  .hero-inner,
  .photo-cta-content,
  .footer-inner,
  .about-hero-inner,
  .service-hero-inner,
  .reviews-hero-content,
  .contact-hero-content,
  .projects-editorial-head,
  .projects-showcase,
  .service-layout,
  .about-premium-grid,
  .process-timeline-head,
  .process-timeline,
  .youtube-showcase-head,
  .youtube-slider-shell,
  .legal-shell,
  .faq-shell,
  .quote-shell{
    width:min(100% - 48px, 760px) !important;
    max-width:760px !important;
  }

  .topbar{
    width:min(100% - 24px, 760px) !important;
    max-width:760px !important;
  }
}

@media (max-width:768px){
  .container,
  .hero-inner,
  .photo-cta-content,
  .footer-inner,
  .about-hero-inner,
  .service-hero-inner,
  .reviews-hero-content,
  .contact-hero-content,
  .projects-editorial-head,
  .projects-showcase,
  .service-layout,
  .about-premium-grid,
  .process-timeline-head,
  .process-timeline,
  .youtube-showcase-head,
  .youtube-slider-shell,
  .legal-shell,
  .faq-shell,
  .quote-shell{
    width:calc(100% - 40px) !important;
    max-width:560px !important;
  }

  .topbar{
    width:calc(100% - 24px) !important;
  }

  .about-hero-title,
  .service-hero h1,
  .reviews-hero h1,
  .projects-editorial-title,
  .contact-hero h1,
  .contact-title,
  .legal-title,
  .faq-title,
  .quote-title{
    font-size:clamp(2.9rem, 13vw, 4.8rem) !important;
    line-height:.92 !important;
    letter-spacing:-.06em !important;
  }

  .section-title,
  .service-title,
  .areas-title,
  .content-title{
    font-size:clamp(2.35rem, 10vw, 4.1rem) !important;
    line-height:.95 !important;
    letter-spacing:-.055em !important;
  }
}

@media (max-width:480px){
  .container,
  .hero-inner,
  .photo-cta-content,
  .footer-inner,
  .about-hero-inner,
  .service-hero-inner,
  .reviews-hero-content,
  .contact-hero-content,
  .projects-editorial-head,
  .projects-showcase,
  .service-layout,
  .about-premium-grid,
  .process-timeline-head,
  .process-timeline,
  .youtube-showcase-head,
  .youtube-slider-shell,
  .legal-shell,
  .faq-shell,
  .quote-shell{
    width:calc(100% - 32px) !important;
    max-width:440px !important;
  }

  .topbar{
    width:calc(100% - 16px) !important;
  }

  .about-hero-title,
  .service-hero h1,
  .reviews-hero h1,
  .projects-editorial-title,
  .contact-hero h1,
  .contact-title,
  .legal-title,
  .faq-title,
  .quote-title{
    font-size:clamp(2.45rem, 12.5vw, 3.85rem) !important;
    line-height:.94 !important;
  }

  .section-label,
  .kicker,
  .eyebrow{
    letter-spacing:.20em !important;
  }
}


.logo-item{
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  flex:0 0 auto !important;
}
.logo-item img{
  height:55px !important;
  width:auto !important;
  max-width:220px !important;
  object-fit:contain !important;
  display:block !important;
}


/* =========================================================
   ACOSTA FIX — REMOVE DOUBLE VERTICAL SCROLLBAR
   Keeps only the browser/page scrollbar and prevents sections
   from getting trapped inside an internal scroll container.
========================================================= */
html{
  width:100% !important;
  max-width:100% !important;
  min-height:100% !important;
  height:auto !important;
  overflow-x:clip !important;
  overflow-y:auto !important;
}

body{
  width:100% !important;
  max-width:100% !important;
  min-height:100% !important;
  height:auto !important;
  overflow-x:clip !important;
  overflow-y:visible !important;
  position:relative !important;
}

/* Keep the mobile menu behavior correct */
body.mobile-menu-open{
  overflow:hidden !important;
}

/* These page wrappers should never create their own vertical scrollbar */
body:not(.mobile-menu-open) main,
body:not(.mobile-menu-open) .page,
body:not(.mobile-menu-open) .site,
body:not(.mobile-menu-open) .site-content,
body:not(.mobile-menu-open) .entry-content,
body:not(.mobile-menu-open) .wp-site-blocks,
body:not(.mobile-menu-open) .wp-block-group,
body:not(.mobile-menu-open) .about-intro-section,
body:not(.mobile-menu-open) .about-purpose-section,
body:not(.mobile-menu-open) .about-team-section,
body:not(.mobile-menu-open) .about-work-section,
body:not(.mobile-menu-open) .about-logo-strip,
body:not(.mobile-menu-open) .about-final-visual,
body:not(.mobile-menu-open) .site-footer{
  height:auto !important;
  max-height:none !important;
  overflow-y:visible !important;
}

/* Keep horizontal clipping where needed without creating a vertical trap */
body:not(.mobile-menu-open) .about-purpose-section,
body:not(.mobile-menu-open) .about-team-section,
body:not(.mobile-menu-open) .about-work-section,
body:not(.mobile-menu-open) .about-logo-strip,
body:not(.mobile-menu-open) .about-final-visual{
  overflow-x:clip !important;
}

/* Prevent decorative fixed layer from interacting with page scroll */
body::after{
  width:100vw !important;
  height:100vh !important;
}

/* ABOUT — mobile/tablet stability fix
   No cambia diseño. Solo evita saltos por cambios de viewport. */
html,
body{
  overflow-x:clip !important;
}

/* ACOSTA — one vertical page scrollbar only */
html,
body{
  overflow-x:clip !important;
}

body{
  overflow-y:visible !important;
}

main,
section,
header,
footer{
  overflow-x:clip !important;
  overflow-y:visible !important;
  max-height:none !important;
}

/* =========================================================
   ABOUT — OUR WORK responsive layout fix
   Desktop remains unchanged.
========================================================= */

@media (min-width:721px) and (max-width:1100px){
  .about-work-grid{
    grid-template-columns:repeat(2,minmax(0,1fr)) !important;
    grid-auto-rows:280px !important;
    gap:1.2rem !important;
    align-items:stretch !important;
  }

  .about-work-copy{
    grid-column:1 / -1 !important;
    padding-bottom:.4rem !important;
  }

  /* Flatten the two nested columns so every photo participates
     in the same tablet grid instead of creating staggered gaps. */
  .about-work-grid > .work-column{
    display:contents !important;
  }

  .about-work-grid .work-tile,
  .about-work-grid .work-tile.medium,
  .about-work-grid .work-tile.short{
    min-height:0 !important;
    height:100% !important;
  }

  .about-work-grid > .work-tile.tall{
    grid-row:span 2 !important;
    min-height:0 !important;
    height:100% !important;
  }
}

@media (max-width:720px){
  .about-work-grid{
    grid-template-columns:1fr !important;
    grid-auto-rows:auto !important;
    gap:1rem !important;
    align-items:stretch !important;
  }

  .about-work-copy{
    grid-column:auto !important;
    margin-bottom:.5rem !important;
  }

  .about-work-grid > .work-column{
    display:contents !important;
  }

  .about-work-grid .work-tile,
  .about-work-grid .work-tile.medium,
  .about-work-grid .work-tile.short{
    width:100% !important;
    height:auto !important;
    min-height:0 !important;
    aspect-ratio:4 / 3 !important;
  }

  .about-work-grid > .work-tile.tall{
    width:100% !important;
    height:auto !important;
    min-height:0 !important;
    aspect-ratio:4 / 5 !important;
  }
}
