
    :root {
      --orange: #F06B1A;
      --orange-dark: #C95710;
      --dark: #2B2B2E;
      --charcoal: #333333;
      --gray: #6B7280;
      --light: #F7F7F8;
      --border: #E5E7EB;
      --header-h: 90px;
      --container: 1320px;
      --radius: 16px;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      color: var(--charcoal);
      background: #fff;
      font-family: 'Open Sans', Arial, sans-serif;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }
    body.nav-open { overflow: hidden; }
    h1,h2,h3,h4,h5,h6,.ui-font { font-family: 'Montserrat', Arial, sans-serif; }
    a { color: inherit; text-decoration: none; }
    img { display: block; max-width: 100%; }
    button, input, select, textarea { font: inherit; }
    button { cursor: pointer; }

    .container-shell {
      width: min(calc(100% - 48px), var(--container));
      margin-inline: auto;
    }
    .section-pad { padding: 96px 0; }
    .section-pad-sm { padding: 72px 0; }
    .section-header { text-align: center; max-width: 820px; margin: 0 auto 54px; }
    .eyebrow {
      display: inline-block;
      margin-bottom: 12px;
      font: 600 14px/1.2 'Montserrat', sans-serif;
      letter-spacing: 2px;
      color: var(--charcoal);
      text-transform: uppercase;
      position: relative;
      padding-bottom: 12px;
    }
    .eyebrow::after {
      content: '';
      position: absolute;
      width: 44px;
      height: 3px;
      background: var(--orange);
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      border-radius: 99px;
    }
    .section-title {
      margin: 0;
      font: 700 clamp(28px, 3.4vw, 44px)/1.18 'Montserrat', sans-serif;
      color: var(--charcoal);
      letter-spacing: -.4px;
    }
    .title-nowrap { white-space: nowrap; }
    .section-intro {
      margin: 18px auto 0;
      max-width: 760px;
      color: var(--gray);
      font-size: 18px;
      line-height: 1.7;
    }

    .btn {
      min-height: 48px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      border-radius: 6px;
      padding: 14px 25px;
      border: 2px solid transparent;
      font: 700 14px/1.1 'Montserrat', sans-serif;
      letter-spacing: .45px;
      text-transform: uppercase;
      transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, color .2s ease, border-color .2s ease;
      white-space: nowrap;
    }
    .btn:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(0,0,0,.12); }
    .btn:focus-visible, .icon-btn:focus-visible, .tab-btn:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
      outline: 3px solid rgba(240,107,26,.35);
      outline-offset: 3px;
    }
    .btn-primary { background: var(--orange); color: white; }
    .btn-primary:hover { background: var(--orange-dark); }
    .btn-outline { background: transparent; color: var(--charcoal); border-color: var(--charcoal); }
    .btn-outline:hover { background: var(--charcoal); color: #fff; }
    .btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.78); }
    .btn-outline-light:hover { background: #fff; color: var(--dark); }

    /* Header */
    .site-header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 100;
      background: rgba(255,255,255,.98);
      border-bottom: 1px solid rgba(0,0,0,.05);
      transition: box-shadow .25s ease, background .25s ease, height .25s ease;
      backdrop-filter: blur(8px);
    }
    .site-header.scrolled { box-shadow: 0 8px 26px rgba(0,0,0,.09); background: rgba(255,255,255,.94); }
    .header-inner {
      height: var(--header-h);
      display: flex;
      align-items: center;
      gap: 28px;
      transition: height .25s ease;
    }
    .site-header.scrolled .header-inner { height: 76px; }
    .brand-lockup { display: flex; align-items: center; gap: 10px; min-width: 164px; }
    .brand-reference-logo { width:150px; max-width:100%; height:auto; display:block; flex:0 0 auto; }
    .footer-reference-logo { width:190px; height:auto; display:block; padding:10px; background:#fff; border-radius:8px; }
    .brand-mark-wrap { display: flex; align-items: center; gap: 7px; }
    .brand-mark-svg { width:45px; height:45px; color:var(--orange); flex:0 0 auto; display:block; }
    .brand-sdp { color: var(--orange); font: 500 39px/1 'Montserrat', sans-serif; letter-spacing: -3px; }
    .brand-copy { border-left: 1px solid #d8d8d8; padding-left: 11px; line-height: 1.1; }
    .brand-name { font: 600 15px/1.1 'Montserrat', sans-serif; color: #202124; white-space: nowrap; }
    .brand-tag { margin-top: 5px; font: italic 400 11px/1.1 Georgia, serif; color: #777; }
    .desktop-nav { margin-left: auto; display: flex; align-items: center; gap: 26px; }
    .nav-link, .nav-button {
      position: relative; padding: 30px 0 26px; border: 0; background: transparent; color: #242424;
      font: 600 12px/1 'Montserrat', sans-serif; text-transform: uppercase; transition: color .2s ease;
    }
    .nav-link::after, .nav-button::after {
      content: ''; position: absolute; left: 50%; right: 50%; bottom: 18px; height: 2px; background: var(--orange); transition: left .2s ease, right .2s ease;
    }
    .nav-link:hover, .nav-link.active, .nav-button:hover, .nav-button.active { color: var(--orange); }
    .nav-link:hover::after, .nav-link.active::after, .nav-button:hover::after, .nav-button.active::after { left: 0; right: 0; }
    .nav-item { position: relative; }
    .nav-button { display: flex; align-items: center; gap: 4px; }
    .dropdown {
      position: absolute; top: calc(100% - 12px); left: -18px; min-width: 230px; background: #fff; border: 1px solid var(--border); border-radius: 10px;
      padding: 10px; box-shadow: 0 16px 45px rgba(0,0,0,.13); opacity: 0; visibility: hidden; transform: translateY(8px); transition: .18s ease;
    }
    .nav-item:hover .dropdown, .nav-item:focus-within .dropdown, .nav-item.open .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
    .dropdown a { display: block; padding: 11px 12px; border-radius: 7px; font: 500 13px/1.25 'Montserrat', sans-serif; color: #333; }
    .dropdown a:hover { background: var(--light); color: var(--orange-dark); }
    .header-cta { margin-left: 4px; padding: 13px 17px; min-height: 44px; font-size: 12px; }
    .mobile-menu-btn { display: none; margin-left: auto; width: 46px; height: 46px; border-radius: 8px; background: transparent; border: 1px solid var(--border); align-items: center; justify-content: center; }

    .mobile-drawer-backdrop { display:none; position: fixed; inset: 0; background: rgba(0,0,0,.45); z-index: 109; }
    .mobile-drawer {
      position: fixed; top:0; right:0; width:min(88vw,390px); height:100dvh; background:#fff; z-index:110; transform:translateX(100%); transition: transform .28s ease;
      padding: 26px; box-shadow: -20px 0 60px rgba(0,0,0,.2); display:flex; flex-direction:column;
    }
    .mobile-drawer.open { transform:translateX(0); }
    .mobile-drawer-backdrop.open { display:block; }
    .drawer-head { display:flex; align-items:center; justify-content:space-between; padding-bottom:18px; border-bottom:1px solid var(--border); }
    .drawer-close { width:44px; height:44px; border-radius:8px; border:1px solid var(--border); background:#fff; display:grid; place-items:center; }
    .drawer-nav { padding:18px 0; display:flex; flex-direction:column; gap:4px; overflow:auto; }
    .drawer-nav a { min-height:48px; display:flex; align-items:center; padding:0 10px; font:600 16px/1.2 'Montserrat',sans-serif; border-radius:8px; }
    .drawer-nav a:hover { background:var(--light); color:var(--orange-dark); }

    /* Hero */
    .hero {
      margin-top: var(--header-h);
      min-height: 635px;
      position: relative;
      display: flex;
      align-items: center;
      background-color:#e7e7e7;
      background-image: url('../projects/workafella-coworking/workafella-reception-2026.webp');
      background-size: auto 100%;
      background-position: right center;
      background-repeat: no-repeat;
      overflow: hidden;
    }
    .hero::before {
      content: '';
      position: absolute; inset: 0;
      background: linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.96) 31%, rgba(255,255,255,.80) 45%, rgba(255,255,255,.18) 62%, rgba(255,255,255,0) 76%);
      pointer-events: none;
    }
    .hero-inner { position: relative; z-index: 2; width: min(100%, 780px); padding-right: 30px; }
    .hero h1 {
      margin: 0;
      max-width: 760px;
      font: 500 clamp(39px, 4.1vw, 65px)/1.07 'Montserrat', sans-serif;
      letter-spacing: -1.8px;
      text-transform: uppercase;
      color: #353535;
    }
    .hero h1 .accent { color: var(--orange); font-weight: 700; }
    .hero-copy { max-width: 560px; margin: 23px 0 26px; font-size: 16px; line-height: 1.55; color:#333; }
    .hero-actions { display:flex; flex-wrap:wrap; gap:16px; }
    .hero-section { position:relative; }
    .hero-action-rail {
      position:fixed; z-index:95; right:0; top:50%; transform:translateY(-50%); width:96px;
      box-shadow: 0 10px 30px rgba(0,0,0,.16); overflow:hidden; border-radius: 8px 0 0 8px;
    }
    .hero-rail-item {
      min-height: 102px; display:flex; flex-direction:column; justify-content:center; align-items:center; gap:8px; padding:12px 7px;
      background: rgba(43,43,46,.93); color:#fff; text-align:center; border-bottom:1px solid rgba(255,255,255,.18); transition:.2s ease;
      font:600 10px/1.25 'Montserrat',sans-serif; text-transform:uppercase;
    }
    .hero-rail-item:first-child { background: var(--orange); }
    .hero-rail-item:hover { background: var(--orange); }
    .hero-rail-item svg { width:29px; height:29px; stroke-width:1.6; }
    .hero-rail-item .whatsapp-brand-icon { width:30px; height:30px; display:block; }
    .hero-enter { opacity:0; transform:translateY(18px); animation:heroIn .72s cubic-bezier(.2,.7,.2,1) forwards; }
    .hero-enter.delay-1 { animation-delay:.12s; }
    .hero-enter.delay-2 { animation-delay:.24s; }
    @keyframes heroIn { to{opacity:1;transform:none;} }

    /* Services */
    .services-strip { background:#fff; padding: 56px 0 62px; }
    .services-grid { display:grid; grid-template-columns:repeat(8,1fr); gap:0; border-top:1px solid #f2f2f2; align-items:start; }
    .service-item { text-align:center; padding:26px 16px 8px; min-height:158px; position:relative; display:flex; flex-direction:column; align-items:center; }
    .service-item + .service-item::before { content:''; position:absolute; left:0; top:28px; bottom:12px; width:1px; background:var(--border); }
    .service-icon { width:46px; height:46px; margin:0 auto 18px; color:var(--orange); transition:transform .22s ease; flex:0 0 46px; }
    .service-item:hover .service-icon { transform:translateY(-5px); }
    .service-label { width:100%; min-height:34px; height:34px; display:flex; align-items:flex-start; justify-content:center; text-align:center; font:600 12px/1.35 'Montserrat',sans-serif; text-transform:uppercase; color:#222; }
    .service-label span { display:block; white-space:nowrap; line-height:1.35; }

    /* Stats */
    .stats-bar { background: linear-gradient(90deg,#3a3a3d,#2b2b2e); color:#fff; }
    .stats-grid { display:grid; grid-template-columns:repeat(5,1fr); }
    .stat-item { min-height:112px; display:flex; align-items:center; gap:16px; padding:20px 24px; position:relative; }
    .stat-item + .stat-item::before { content:''; position:absolute; left:0; top:23px; bottom:23px; width:1px; background:rgba(255,255,255,.2); }
    .stat-icon { color:var(--orange); width:38px; height:38px; flex:0 0 auto; }
    .stat-value { font:700 25px/1.05 'Montserrat',sans-serif; color:#fff; white-space:nowrap; }
    .stat-value.accent { color:var(--orange); }
    .stat-caption { margin-top:5px; font:500 11px/1.25 'Montserrat',sans-serif; color:#fff; text-transform:uppercase; }

    /* Portfolio */
    .portfolio-section { background:#fff; }
    .tabs-wrap { display:flex; justify-content:center; gap:12px; margin-bottom:30px; overflow-x:auto; scrollbar-width:none; padding:2px 3px 6px; }
    .tabs-wrap::-webkit-scrollbar{display:none;}
    .tab-btn { min-width:96px; padding:10px 18px; border:1px solid var(--border); background:#fff; color:#333; border-radius:4px; font:600 11px/1 'Montserrat',sans-serif; text-transform:uppercase; transition:.2s ease; }
    .tab-btn.active, .tab-btn:hover { background:var(--orange); color:#fff; border-color:var(--orange); }
    .carousel-shell { position:relative; }
    .portfolio-track {
      display:grid; grid-auto-flow:column; grid-auto-columns:calc((100% - 48px)/5); gap:12px; overflow-x:auto; scroll-snap-type:x mandatory; scrollbar-width:none; padding:3px 2px 18px;
      scroll-behavior:smooth; touch-action:pan-x; -webkit-overflow-scrolling:touch;
    }
    .portfolio-track::-webkit-scrollbar { display:none; }
    .portfolio-card { display:block; color:inherit; scroll-snap-align:start; border:1px solid var(--border); background:#fff; transition:transform .25s ease, box-shadow .25s ease, opacity .18s ease; min-width:0; }
    .portfolio-card:hover { transform:translateY(-5px); box-shadow:0 16px 35px rgba(0,0,0,.10); }
    .portfolio-card:focus-visible { outline:3px solid var(--orange); outline-offset:3px; }
    .portfolio-card.filtering-out { opacity:0; transform:scale(.985); }
    .portfolio-card.hidden-filter { display:none; }
    .portfolio-image { aspect-ratio:4/3; overflow:hidden; background:#ddd; }
    .portfolio-image img { width:100%; height:100%; object-fit:cover; transition:transform .4s ease; }
    .portfolio-card:hover img { transform:scale(1.045); }
    .portfolio-meta { padding:13px 12px 15px; }
    .portfolio-name { font:700 11px/1.3 'Montserrat',sans-serif; text-transform:uppercase; }
    .portfolio-location { margin-top:5px; font-size:10px; line-height:1.4; color:#444; text-transform:uppercase; }
    .portfolio-size { margin-top:4px; font-size:10px; color:#777; text-transform:uppercase; }
    .carousel-arrow { position:absolute; top:50%; transform:translateY(-65%); width:46px; height:46px; border-radius:50%; background:#fff; border:1px solid #ddd; display:grid; place-items:center; z-index:3; box-shadow:0 6px 20px rgba(0,0,0,.1); }
    .carousel-arrow:hover { color:var(--orange); border-color:var(--orange); }
    .carousel-arrow.prev { left:-58px; }
    .carousel-arrow.next { right:-58px; }
    .portfolio-footer { text-align:center; margin-top:22px; }

    /* Feature row */
    .feature-combo { background:var(--light); }
    .feature-grid { display:grid; grid-template-columns:1.05fr 2.5fr 1.05fr; gap:16px; align-items:stretch; }
    .feature-card { border-radius:8px; overflow:hidden; min-height:0; height:100%; box-shadow:0 2px 0 rgba(0,0,0,.02); align-self:stretch; }
    .estimate-card { background:#fff; border:1px solid #ddd; display:flex; flex-direction:column; }
    .estimate-head { background:var(--orange); color:#fff; padding:18px 22px 15px; }
    .estimate-head h3 { margin:0 0 6px; font:700 19px/1.18 'Montserrat',sans-serif; text-transform:uppercase; }
    .estimate-head p { margin:0; font-size:13px; line-height:1.45; }
    .estimate-form { padding:16px 20px 17px; display:grid; gap:8px; flex:1; align-content:start; }
    .field { display:grid; gap:3px; }
    .field label { font-size:10.5px; color:#555; }
    .field select, .field input, .field textarea { width:100%; min-height:34px; border:1px solid #ddd; border-radius:3px; padding:6px 9px; background:#fff; color:#444; font-size:11.5px; }
    .form-message { margin:4px 0 0; min-height:18px; font-size:12px; line-height:1.4; color:#26733a; }
    .estimate-form .btn { width:100%; min-height:38px; padding:9px 18px; font-size:11.5px; }
    .process-card { background:linear-gradient(140deg,#404043,#29292c); color:#fff; padding:27px 28px 25px; display:flex; flex-direction:column; justify-content:space-between; }
    .process-card h3 { text-align:center; margin:0 0 28px; font:700 20px/1.2 'Montserrat',sans-serif; text-transform:uppercase; }
    .process-grid { display:grid; grid-template-columns:repeat(5,1fr); row-gap:48px; column-gap:12px; }
    .process-step { position:relative; text-align:center; min-width:0; }
    .process-step:not(:nth-child(5)):not(:nth-child(10))::after { content:'→'; position:absolute; top:12px; right:-17px; width:22px; text-align:center; color:rgba(255,255,255,.45); font-size:22px; line-height:1; }
    .step-number { width:43px; height:43px; border:1px solid rgba(255,255,255,.7); border-radius:50%; margin:0 auto 11px; display:grid; place-items:center; font:600 14px/1 'Montserrat',sans-serif; }
    .step-label { font:500 10px/1.3 'Montserrat',sans-serif; text-transform:uppercase; }
    .process-btn-wrap { text-align:center; margin-top:28px; }
    .process-btn-wrap .btn { min-height:40px; padding:10px 28px; font-size:11px; color:#fff; border-color:var(--orange); }
    .why-card { background:#fff; border:1px solid #ddd; padding:27px 22px; display:flex; flex-direction:column; }
    .why-card h3 { margin:0 0 23px; font:600 20px/1.15 'Montserrat',sans-serif; text-transform:uppercase; }
    .why-list { list-style:none; padding:0; margin:0; display:grid; gap:16px; }
    .why-list li { display:flex; align-items:flex-start; gap:9px; font-size:12px; line-height:1.35; }
    .why-list svg { color:var(--orange); width:16px; height:16px; flex:0 0 auto; margin-top:1px; stroke-width:3; }
    .why-card .btn { margin-top:32px; min-height:40px; padding:10px 24px; font-size:11px; color:var(--orange-dark); border-color:var(--orange); align-self:flex-start; }
    .why-card .btn:hover { color:white; background:var(--orange); }

    /* Safe image rendering: preserve layout even if a remote placeholder fails. */
    .safe-img { display:block; max-width:100%; object-fit:cover; background:#e7e7e7; color:transparent; font-size:0; text-indent:-9999px; }
    .safe-img.img-failed { background:#e7e7e7; }
    .portfolio-image, .blog-img, .team-photo, .founder-photo, .compare, .compare .after-wrap { background:#e7e7e7; }

    /* Testimonials */
    .testimonials { background:#fff; }
    .testimonial-carousel { position:relative; }
    .testimonial-viewport { overflow:hidden; }
    .testimonial-track { display:flex; transition:transform .55s cubic-bezier(.2,.7,.2,1); }
    .testimonial-slide { flex:0 0 33.333%; padding:0 10px; }
    .testimonial-card { background:#fff; border:1px solid #efefef; border-radius:12px; padding:26px; min-height:260px; box-shadow:0 8px 30px rgba(0,0,0,.04); transition:.25s ease; display:flex; flex-direction:column; }
    .testimonial-card:hover { transform:translateY(-5px); box-shadow:0 16px 35px rgba(0,0,0,.10); }
    .quote-mark { color:var(--orange); font:800 44px/1 Georgia,serif; height:30px; }
    .quote-text { font-size:15px; line-height:1.7; color:#333; margin:8px 0 22px; flex:1; }
    .reviewer { display:flex; align-items:center; justify-content:space-between; gap:16px; }
    .reviewer-info strong { display:block; font:600 13px/1.3 'Montserrat',sans-serif; }
    .reviewer-info span { display:block; margin-top:5px; font-size:11px; color:#777; }
    .avatar-initial { width:58px; height:58px; border-radius:50%; border:4px solid #eee; display:grid; place-items:center; flex:0 0 58px; font:700 14px/1 'Montserrat',sans-serif; letter-spacing:.3px; }
    .avatar-pm { background:#FFF0E6; color:#9A4A16; }
    .avatar-rs { background:#EAF2FF; color:#355C98; }
    .avatar-np { background:#F4ECFF; color:#6D4A96; }
    .avatar-am { background:#EAF7EE; color:#39764A; }
    .test-arrow { position:absolute; top:50%; transform:translateY(-50%); width:44px; height:44px; border-radius:50%; border:1px solid #ddd; background:#fff; display:grid; place-items:center; z-index:3; }
    .test-arrow.prev { left:-58px; }
    .test-arrow.next { right:-58px; }
    .testimonial-dots { display:flex; justify-content:center; gap:7px; margin-top:22px; }
    .dot { width:9px; height:9px; border-radius:50%; border:0; padding:0; background:#bdbdbd; }
    .dot.active { background:var(--orange); transform:scale(1.15); }

    /* Before after */
    .before-after { background:linear-gradient(90deg,#343436,#29292b); color:#fff; }
    .before-after .section-title, .before-after .eyebrow { color:#fff; }
    .compare-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:16px; }
    .compare { position:relative; aspect-ratio:1.55/1; overflow:hidden; background:#1c1c1e; border:1px solid rgba(255,255,255,.35); user-select:none; touch-action:none; cursor:ew-resize; }
    .compare img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; pointer-events:none; }
    .compare .before-img { filter:grayscale(.75) brightness(.82) contrast(.94); }
    .compare .after-wrap { position:absolute; inset:0; clip-path:inset(0 0 0 50%); }
    .compare .divider { position:absolute; top:0; bottom:0; left:50%; width:2px; background:#fff; transform:translateX(-1px); box-shadow:0 0 0 1px rgba(0,0,0,.08); }
    .compare .handle { position:absolute; left:50%; top:50%; transform:translate(-50%,-50%); width:38px; height:38px; border-radius:50%; background:#fff; color:#333; display:flex; align-items:center; justify-content:center; box-shadow:0 6px 20px rgba(0,0,0,.25); font-size:15px; font-weight:700; line-height:1; padding:0; }
    .compare-label { position:absolute; top:10px; padding:4px 7px; background:rgba(0,0,0,.5); color:#fff; font:600 9px/1 'Montserrat',sans-serif; text-transform:uppercase; letter-spacing:.6px; border-radius:3px; }
    .compare-label.before { left:10px; }
    .compare-label.after { right:10px; }
    .compare-more { text-align:center; margin-top:34px; }

    /* Team */
    .team-section { background:var(--light); }
    .founder-card { display:grid; grid-template-columns: .8fr 1.35fr; background:#fff; border:1px solid var(--border); border-radius:18px; overflow:hidden; box-shadow:0 12px 40px rgba(0,0,0,.06); margin-bottom:28px; }
    .founder-photo { min-height:440px; background:#ddd; }
    .founder-photo img { width:100%; height:100%; object-fit:cover; }
    .founder-copy { padding:45px 48px; display:flex; flex-direction:column; justify-content:center; }
    .founder-copy h3 { margin:0; font:700 30px/1.15 'Montserrat',sans-serif; }
    .role { margin-top:8px; color:var(--orange-dark); font:600 14px/1.3 'Montserrat',sans-serif; }
    .bio { margin:22px 0 0; color:#555; font-size:16px; line-height:1.75; }
    .pull-quote { margin-top:24px; padding:18px 20px; border-left:4px solid var(--orange); background:#fff7f1; color:#474747; font-style:italic; line-height:1.65; }
    .team-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:28px; }
    .team-card { background:#fff; border:1px solid var(--border); border-radius:16px; overflow:hidden; transition:.3s ease; box-shadow:0 7px 25px rgba(0,0,0,.04); }
    .team-card:hover { transform:translateY(-7px); box-shadow:0 18px 42px rgba(0,0,0,.10); }
    .team-photo { aspect-ratio:4/5; overflow:hidden; background:#ddd; }
    .team-photo img { width:100%; height:100%; object-fit:cover; transition:transform .45s ease; }
    .team-card:hover img { transform:scale(1.04); }
    .team-copy { padding:24px; }
    .team-copy h4 { margin:0; font:700 19px/1.3 'Montserrat',sans-serif; }
    .team-copy p { margin:14px 0 0; color:#666; font-size:14px; line-height:1.7; }
    .team-closing { margin-top:34px; padding:26px 32px; background:#fff1e7; border:1px solid #f9d9c2; border-radius:14px; text-align:center; font:500 16px/1.7 'Montserrat',sans-serif; color:#444; }

    /* Blog */
    .blog-section { background:#fff; }
    .blog-grid { display:grid; grid-template-columns:repeat(5,1fr); gap:14px; align-items:stretch; }
    .blog-card { border:1px solid var(--border); background:#fff; transition:.28s ease; overflow:hidden; }
    .blog-card:hover { transform:translateY(-5px); box-shadow:0 16px 38px rgba(0,0,0,.10); }
    .blog-img { aspect-ratio:8/5; overflow:hidden; background:#e7e7e7; }
    .blog-img img { width:100%; height:100%; object-fit:cover; transition:transform .4s ease; }
    .blog-card:hover img { transform:scale(1.05); }
    .blog-body { padding:15px; }
    .blog-title { margin:0; font:600 13px/1.45 'Montserrat',sans-serif; }
    .blog-date { margin-top:16px; color:#777; font-size:11px; }
    .blog-cta { background:var(--orange); color:#fff; padding:26px 24px; display:flex; flex-direction:column; justify-content:center; min-height:100%; }
    .blog-cta h3 { margin:0; font:700 21px/1.25 'Montserrat',sans-serif; text-transform:uppercase; }
    .blog-cta p { margin:16px 0 24px; font-size:13px; line-height:1.55; }
    .blog-cta .btn { background:var(--dark); color:#fff; align-self:flex-start; border-color:var(--dark); padding:12px 16px; min-height:42px; font-size:11px; }

    /* Feature strip */
    .value-strip { background:#fafafa; border-top:1px solid #eee; border-bottom:1px solid #eee; }
    .value-grid { display:grid; grid-template-columns:repeat(4,1fr); }
    .value-item { display:flex; gap:14px; align-items:center; padding:28px 26px; position:relative; }
    .value-item + .value-item::before { content:''; position:absolute; left:0; top:24px; bottom:24px; width:1px; background:#ddd; }
    .value-icon { width:38px; height:38px; color:#6b6b6b; flex:0 0 auto; }
    .value-title { font:600 12px/1.25 'Montserrat',sans-serif; text-transform:uppercase; }
    .value-copy { margin-top:4px; font-size:11px; line-height:1.4; color:#555; }

    /* Footer */
    .site-footer { background:var(--dark); color:#e8e8e8; padding-top:70px; }
    .footer-grid { display:grid; grid-template-columns:1.35fr .8fr .95fr 1.2fr 1.15fr; gap:36px; }
    .footer-logo .brand-name { color:#fff; }
    .footer-logo .brand-tag { color:#bbb; }
    .footer-desc { margin-top:20px; font-size:13px; line-height:1.7; color:#c8c8c8; }
    .footer-title { margin:0 0 18px; font:600 14px/1.2 'Montserrat',sans-serif; text-transform:uppercase; color:#fff; }
    .footer-links { list-style:none; padding:0; margin:0; display:grid; gap:10px; }
    .footer-links a { color:#d3d3d3; font-size:12px; }
    .footer-links a:hover { color:var(--orange); }
    .socials { display:flex; gap:9px; margin-top:20px; }
    .socials a { width:36px; height:36px; border-radius:50%; background:rgba(255,255,255,.07); display:grid; place-items:center; transition:.2s ease; }
    .socials a:hover { background:var(--orange); transform:translateY(-2px); }
    .contact-list { display:grid; gap:12px; }
    .contact-row { display:flex; gap:10px; align-items:flex-start; color:#d5d5d5; font-size:12px; line-height:1.5; }
    .contact-row svg { width:16px; height:16px; color:var(--orange); flex:0 0 auto; margin-top:2px; }
    .footer-form { display:grid; gap:10px; }
    .footer-form input, .footer-form select { min-height:38px; background:#fff; color:#333; border:0; border-radius:2px; padding:8px 10px; font-size:12px; }
    .footer-form .btn { min-height:39px; padding:10px 16px; font-size:11px; width:100%; }
    .footer-message { min-height:16px; margin:0; color:#b8efc6; font-size:11px; }
    .footer-bottom { margin-top:55px; border-top:1px solid rgba(255,255,255,.14); min-height:64px; display:flex; align-items:center; justify-content:space-between; gap:20px; color:#bdbdbd; font-size:11px; }
    .footer-bottom a:hover { color:var(--orange); }

    /* Floating WhatsApp */
    .whatsapp-fab { position:fixed; right:22px; bottom:22px; z-index:90; width:60px; height:60px; border-radius:50%; display:grid; place-items:center; background:#25D366; color:#fff; box-shadow:0 10px 28px rgba(0,0,0,.28); animation:fabPulse 2.8s ease-in-out 1.2s 3; transition:.2s ease; }
    .whatsapp-fab:hover { transform:scale(1.08); }
    .whatsapp-fab svg { width:31px; height:31px; display:block; }
    @keyframes fabPulse { 0%,100%{box-shadow:0 10px 28px rgba(0,0,0,.28)} 50%{box-shadow:0 10px 28px rgba(0,0,0,.28),0 0 0 11px rgba(37,211,102,.15)} }

    /* Reveal */
    .reveal { opacity:0; transform:translateY(24px); transition:opacity .7s ease, transform .7s ease; }
    .reveal.is-visible { opacity:1; transform:none; }

    .sr-only { position:absolute !important; width:1px !important; height:1px !important; padding:0 !important; margin:-1px !important; overflow:hidden !important; clip:rect(0,0,0,0) !important; white-space:nowrap !important; border:0 !important; }

    @media (max-width: 1300px) {
      .container-shell { width:min(calc(100% - 52px),1200px); }
      .brand-lockup { min-width:164px; }
      .brand-name { font-size:13px; }
      .desktop-nav { gap:18px; }
      .nav-link,.nav-button { font-size:11px; }
      .portfolio-track { grid-auto-columns:calc((100% - 36px)/4); }
      .carousel-arrow.prev,.test-arrow.prev { left:-22px; }
      .carousel-arrow.next,.test-arrow.next { right:-22px; }
    }

    @media (max-width: 1050px) {
      :root { --header-h: 78px; }
      .section-pad { padding:82px 0; }
      .desktop-nav, .header-cta { display:none; }
      .mobile-menu-btn { display:flex; }
      .brand-lockup { min-width:auto; }
      .hero { min-height:590px; }
      .hero h1 { font-size:51px; max-width:620px; }
      .services-grid { grid-template-columns:repeat(4,1fr); row-gap:20px; }
      .service-item:nth-child(5)::before { display:none; }
      .stats-grid { grid-template-columns:repeat(3,1fr); }
      .stat-item:nth-child(4)::before { display:none; }
      .portfolio-track { grid-auto-columns:calc((100% - 24px)/3); }
      .feature-grid { grid-template-columns:1fr 1.8fr; align-items:start; }
      .feature-card { height:auto; align-self:start; }
      .why-card { grid-column:1 / -1; min-height:auto; }
      .testimonial-slide { flex-basis:50%; }
      .compare-grid { grid-template-columns:repeat(2,1fr); }
      .team-grid { grid-template-columns:repeat(2,1fr); }
      .team-card:last-child { grid-column:1/-1; max-width:560px; width:100%; justify-self:center; }
      .blog-grid { grid-template-columns:repeat(2,1fr); }
      .blog-cta { min-height:260px; }
      .value-grid { grid-template-columns:repeat(2,1fr); }
      .value-item:nth-child(3)::before { display:none; }
      .footer-grid { grid-template-columns:repeat(2,1fr); }
      .footer-grid > :first-child { grid-column:1/-1; }
    }

    @media (max-width: 767px) {
      .container-shell { width:min(calc(100% - 30px),690px); }
      .section-pad { padding:68px 0; }
      .section-header { margin-bottom:38px; }
      .section-intro { font-size:16px; }
      .brand-reference-logo { width:118px; }
      .footer-reference-logo { width:190px; }
      .brand-mark-svg { width:38px; height:38px; }
      .brand-sdp { font-size:33px; }
      .brand-copy { display:none; }
      .site-header.scrolled .header-inner, .header-inner { height:72px; }
      .hero { margin-top:72px; min-height:560px; background-position:68% center; align-items:flex-end; padding-bottom:44px; }
      .hero::before { background:linear-gradient(0deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.94) 43%, rgba(255,255,255,.55) 68%, rgba(255,255,255,.08) 100%); }
      .hero-inner { padding-right:112px; }
      .hero h1 { font-size:clamp(33px,9.5vw,43px); line-height:1.08; letter-spacing:-1px; }
      .hero-copy { font-size:14px; margin:18px 0 20px; }
      .hero-actions { gap:10px; }
      .hero-actions .btn { padding:12px 14px; min-height:44px; font-size:11px; }
      .hero-action-rail { width:82px; right:0; top:50%; bottom:auto; transform:translateY(-50%); border-radius:8px 0 0 8px; }
      .hero-rail-item { min-height:84px; padding:10px 6px; font-size:10px; }
      .hero-rail-item svg { width:24px; height:24px; }
      .services-strip { padding:48px 0; }
      .services-grid { grid-template-columns:repeat(2,1fr); }
      .service-item:nth-child(odd)::before { display:none; }
      .service-item:nth-child(even)::before { display:block; }
      .stats-grid { grid-template-columns:repeat(2,1fr); }
      .stat-item { min-height:105px; padding:17px 14px; }
      .stat-item:nth-child(odd)::before { display:none; }
      .stat-item:nth-child(even)::before { display:block; }
      .stat-item:last-child { grid-column:1/-1; justify-content:center; }
      .portfolio-track { grid-auto-columns:82%; gap:12px; }
      .carousel-arrow { width:40px; height:40px; }
      .carousel-arrow.prev { left:0; }
      .carousel-arrow.next { right:0; }
      .feature-grid { grid-template-columns:1fr; }
      .feature-card { min-height:auto; }
      .process-card { padding:24px 18px; }
      .process-grid { grid-template-columns:1fr; gap:0; }
      .process-step { display:grid; grid-template-columns:46px 1fr; align-items:center; gap:14px; text-align:left; padding:10px 0 10px; }
      .step-number { margin:0; }
      .process-step:not(:nth-child(5)):not(:nth-child(10))::after { content:'↓'; top:auto; left:20px; right:auto; bottom:-3px; font-size:17px; }
      .testimonial-slide { flex-basis:100%; padding:0; }
      .test-arrow.prev { left:4px; }
      .test-arrow.next { right:4px; }
      .compare-grid { grid-template-columns:1fr; }
      .founder-card { grid-template-columns:1fr; }
      .founder-photo { min-height:350px; }
      .founder-copy { padding:30px 24px; }
      .founder-copy h3 { font-size:25px; }
      .team-grid { grid-template-columns:1fr; }
      .team-card:last-child { grid-column:auto; max-width:none; }
      .blog-grid { grid-template-columns:1fr; }
      .value-grid { grid-template-columns:1fr; }
      .value-item + .value-item::before { left:0; right:0; top:0; bottom:auto; width:auto; height:1px; }
      .footer-grid { grid-template-columns:1fr; }
      .footer-grid > :first-child { grid-column:auto; }
      .footer-bottom { flex-direction:column; justify-content:center; text-align:center; padding:18px 0; }
      .whatsapp-fab { width:53px; height:53px; right:16px; bottom:16px; }
      .section-title.title-nowrap { white-space: nowrap; font-size: clamp(16px, 4.55vw, 24px); letter-spacing: -.55px; }
    }

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

/* ============================================================
   INTERNAL PAGE SYSTEM — shared by every internal page
   ============================================================ */
.internal-page { padding-top: var(--header-h); background:#fff; }
.internal-hero { position:relative; min-height:430px; display:flex; align-items:flex-end; overflow:hidden; background:#222; }
.internal-hero::after { content:''; position:absolute; inset:0; background:linear-gradient(90deg,rgba(22,22,24,.88) 0%,rgba(22,22,24,.68) 42%,rgba(22,22,24,.14) 78%); }
.internal-hero .hero-media { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
.internal-hero .internal-hero-copy { position:relative; z-index:2; color:#fff; padding:92px 0 68px; max-width:900px; }
.breadcrumb { display:flex; flex-wrap:wrap; gap:8px; align-items:center; margin-bottom:20px; color:rgba(255,255,255,.78); font:600 11px/1.2 'Montserrat',sans-serif; text-transform:uppercase; letter-spacing:.8px; }
.breadcrumb a:hover { color:var(--orange); }
.internal-kicker { color:var(--orange); font:700 13px/1.2 'Montserrat',sans-serif; text-transform:uppercase; letter-spacing:2px; }
.internal-hero h1 { margin:11px 0 16px; max-width:900px; font:700 clamp(34px,5vw,62px)/1.06 'Montserrat',sans-serif; letter-spacing:-1.4px; }
.internal-hero p { margin:0; max-width:760px; font-size:17px; line-height:1.72; color:rgba(255,255,255,.9); }
.internal-section { padding:88px 0; }
.internal-section.alt { background:var(--light); }
.internal-section.dark { background:var(--dark); color:#fff; }
.content-grid-2 { display:grid; grid-template-columns:1.08fr .92fr; gap:64px; align-items:center; }
.content-grid-2.top { align-items:start; }
.internal-heading { margin:0 0 18px; font:700 clamp(27px,3.3vw,43px)/1.14 'Montserrat',sans-serif; letter-spacing:-.6px; color:var(--charcoal); }
.dark .internal-heading { color:#fff; }
.internal-lead { margin:0 0 20px; font-size:18px; line-height:1.75; color:#565b64; }
.dark .internal-lead { color:#d4d5d8; }
.internal-copy p { margin:0 0 17px; color:#555b63; font-size:15px; line-height:1.8; }
.internal-copy p:last-child { margin-bottom:0; }
.image-frame { border-radius:16px; overflow:hidden; box-shadow:0 22px 55px rgba(0,0,0,.13); background:#ddd; }
.image-frame img { width:100%; height:100%; object-fit:cover; min-height:360px; }
.info-card-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:18px; margin-top:42px; }
.info-card { background:#fff; border:1px solid var(--border); border-radius:13px; padding:28px 24px; box-shadow:0 8px 25px rgba(0,0,0,.04); transition:.25s ease; }
.info-card:hover { transform:translateY(-5px); box-shadow:0 16px 35px rgba(0,0,0,.1); }
.info-card .card-icon { width:43px; height:43px; color:var(--orange); margin-bottom:17px; }
.info-card h3 { margin:0 0 10px; font:700 16px/1.3 'Montserrat',sans-serif; }
.info-card p { margin:0; color:#62666d; font-size:13px; line-height:1.7; }
.check-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:13px 22px; margin:25px 0 0; padding:0; list-style:none; }
.check-grid li { display:flex; align-items:flex-start; gap:10px; font-size:14px; line-height:1.55; color:#4d5157; }
.check-grid svg { width:18px; height:18px; color:var(--orange); flex:0 0 auto; margin-top:2px; stroke-width:3; }
.split-highlight { background:linear-gradient(135deg,#3d3d40,#242426); color:#fff; border-radius:16px; padding:38px; }
.split-highlight h3 { margin:0 0 14px; font:700 24px/1.2 'Montserrat',sans-serif; }
.split-highlight p { margin:0; color:#e2e2e4; line-height:1.75; }
.stat-mini-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1px; background:#444; border-radius:14px; overflow:hidden; margin-top:35px; }
.stat-mini { background:#2d2d30; padding:26px 20px; text-align:center; }
.stat-mini strong { display:block; color:var(--orange); font:700 26px/1 'Montserrat',sans-serif; }
.stat-mini span { display:block; margin-top:8px; color:#ddd; font-size:11px; text-transform:uppercase; letter-spacing:.6px; }
.cta-band { background:linear-gradient(115deg,#ef6a18,#f4843b); color:#fff; border-radius:18px; padding:44px 46px; display:flex; gap:32px; align-items:center; justify-content:space-between; }
.cta-band h2 { margin:0; font:700 clamp(25px,3vw,38px)/1.16 'Montserrat',sans-serif; }
.cta-band p { margin:9px 0 0; max-width:650px; color:rgba(255,255,255,.92); line-height:1.65; }
.cta-band .btn { flex:0 0 auto; background:#2b2b2e; color:#fff; }

/* Internal sticky utility rail — mirrors the home page rail */
.site-action-rail { position:fixed; right:0; top:50%; transform:translateY(-50%); width:96px; z-index:95; box-shadow:0 10px 30px rgba(0,0,0,.16); overflow:hidden; border-radius:8px 0 0 8px; }
.site-action-rail .hero-rail-item { min-height:102px; }
.whatsapp-brand-icon { width:29px; height:29px; display:block; }

/* Project indexes */
.project-tabs { display:flex; justify-content:center; gap:10px; flex-wrap:wrap; margin-bottom:38px; }
.project-tabs a { border:1px solid #dedede; background:#fff; border-radius:5px; padding:11px 19px; font:600 11px/1 'Montserrat',sans-serif; text-transform:uppercase; }
.project-tabs a:hover,.project-tabs a.active { color:#fff; background:var(--orange); border-color:var(--orange); }
.project-list-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.project-list-card { background:#fff; border:1px solid #e4e4e4; border-radius:12px; overflow:hidden; transition:.28s ease; box-shadow:0 7px 25px rgba(0,0,0,.04); }
.project-list-card:hover { transform:translateY(-6px); box-shadow:0 18px 42px rgba(0,0,0,.12); }
.project-list-image { display:block; aspect-ratio:16/10; overflow:hidden; background:#ddd; }
.project-list-image img { width:100%; height:100%; object-fit:cover; transition:transform .45s ease; }
.project-list-card:hover img { transform:scale(1.05); }
.project-list-copy { padding:22px; }
.project-type-label { color:var(--orange-dark); font:700 10px/1.2 'Montserrat',sans-serif; text-transform:uppercase; letter-spacing:1px; }
.project-list-copy h2,.project-list-copy h3 { margin:8px 0 9px; font:700 19px/1.26 'Montserrat',sans-serif; }
.project-list-copy p { margin:0; color:#686c73; font-size:13px; line-height:1.55; }
.project-list-meta { margin-top:16px; display:flex; flex-wrap:wrap; gap:7px; }
.project-list-meta span { background:#f5f5f5; border:1px solid #e9e9e9; border-radius:99px; padding:6px 9px; font-size:10px; color:#555; }

/* Project details */
.project-hero { min-height:570px; }
.project-hero::after { background:linear-gradient(90deg,rgba(20,20,22,.92),rgba(20,20,22,.65) 48%,rgba(20,20,22,.14) 82%); }
.project-meta-panel { display:grid; grid-template-columns:repeat(5,minmax(0,1fr)); gap:1px; background:#dedede; border:1px solid #dedede; border-radius:12px; overflow:hidden; margin-top:-42px; position:relative; z-index:4; box-shadow:0 16px 38px rgba(0,0,0,.1); }
.project-meta-item { background:#fff; padding:20px 18px; }
.project-meta-item small { display:block; color:#8a8d92; text-transform:uppercase; font:700 9px/1.2 'Montserrat',sans-serif; letter-spacing:.8px; margin-bottom:7px; }
.project-meta-item strong { display:block; font:600 12px/1.4 'Montserrat',sans-serif; color:#303033; }
.project-body-grid { display:grid; grid-template-columns:minmax(0,1fr) 315px; gap:54px; align-items:start; }
.project-content-section { padding:0 0 34px; margin-bottom:34px; border-bottom:1px solid #ededed; }
.project-content-section:last-child { border-bottom:0; }
.project-content-section h2 { margin:0 0 17px; font:700 25px/1.2 'Montserrat',sans-serif; }
.project-content-section h3 { margin:22px 0 11px; font:700 14px/1.2 'Montserrat',sans-serif; text-transform:uppercase; letter-spacing:.7px; color:var(--orange-dark); }
.project-content-section p { margin:0 0 14px; color:#565b62; font-size:15px; line-height:1.78; }
.project-content-section ul { margin:15px 0 0; padding:0; list-style:none; display:grid; gap:9px; }
.project-content-section li { position:relative; padding-left:22px; color:#4f545b; font-size:14px; line-height:1.58; }
.project-content-section li::before { content:'✓'; position:absolute; left:0; top:0; color:var(--orange); font-weight:800; }
.project-sidebar { position:sticky; top:105px; }
.sidebar-card { background:#f7f7f8; border:1px solid #e5e5e7; border-radius:13px; padding:25px; margin-bottom:18px; }
.sidebar-card h3 { margin:0 0 14px; font:700 16px/1.3 'Montserrat',sans-serif; }
.sidebar-card p { margin:0 0 15px; color:#61656b; font-size:13px; line-height:1.65; }
.project-gallery { display:grid; grid-template-columns:repeat(3,1fr); gap:14px; }
.project-gallery a { aspect-ratio:4/3; display:block; overflow:hidden; border-radius:9px; background:#ddd; }
.project-gallery img { width:100%; height:100%; object-fit:cover; transition:.35s ease; }
.project-gallery a:hover img { transform:scale(1.04); }
.project-gallery-group + .project-gallery-group { margin-top:30px; }
.project-gallery-group h3,.project-gallery-group h4 { margin:0 0 14px; color:#303033; font:700 16px/1.3 'Montserrat',sans-serif; letter-spacing:0; text-transform:none; }
.location-tabs { display:flex; flex-wrap:wrap; gap:9px; margin:0 0 26px; }
.location-tab { min-height:42px; border:1px solid #d9d9dc; border-radius:999px; padding:9px 16px; background:#fff; color:#404348; cursor:pointer; font:700 11px/1.2 'Montserrat',sans-serif; transition:.2s ease; }
.location-tab:hover,.location-tab:focus-visible { border-color:var(--orange); color:var(--orange-dark); outline:none; }
.location-tab[aria-selected="true"] { border-color:var(--orange); background:var(--orange); color:#fff; }
.location-panel[hidden] { display:none; }
.location-panel > h3 { margin:0 0 7px; font:700 20px/1.3 'Montserrat',sans-serif; color:#303033; text-transform:none; letter-spacing:0; }
.location-panel > p { margin-bottom:22px; }
.location-jump-links { display:flex; flex-wrap:wrap; gap:9px; margin:0 0 30px; }
.location-jump-links a { border:1px solid #d9d9dc; border-radius:999px; padding:10px 15px; background:#fff; color:#404348; font:700 11px/1.2 'Montserrat',sans-serif; }
.location-jump-links a:hover,.location-jump-links a:focus-visible { border-color:var(--orange); color:var(--orange-dark); outline:none; }
.location-city-section { padding:25px 0 5px; scroll-margin-top:110px; }
.location-city-section + .location-city-section { margin-top:22px; border-top:2px solid #ededed; }
.location-city-heading { display:flex; align-items:center; gap:11px; margin:0 0 20px !important; color:#242427 !important; font:700 23px/1.25 'Montserrat',sans-serif !important; text-transform:none !important; letter-spacing:0 !important; }
.location-city-heading::before { content:''; width:9px; height:28px; border-radius:9px; background:var(--orange); flex:0 0 auto; }
.location-gallery-callout { margin:22px 0 0; padding:20px 22px; display:flex; align-items:center; justify-content:space-between; gap:22px; border:1px solid #ffd0b2; border-left:5px solid var(--orange); border-radius:12px; background:#fff7f2; box-shadow:0 9px 26px rgba(255,103,6,.08); }
.location-gallery-callout small { display:block; margin-bottom:5px; color:var(--orange-dark); font:700 10px/1.2 'Montserrat',sans-serif; letter-spacing:.8px; text-transform:uppercase; }
.location-gallery-callout strong { display:block; color:#303033; font:700 16px/1.4 'Montserrat',sans-serif; }
#location-gallery { scroll-margin-top:110px; }
.project-video-wrap { overflow:hidden; border-radius:12px; background:#111; box-shadow:0 14px 34px rgba(0,0,0,.12); }
.project-video { display:block; width:100%; max-height:720px; background:#111; }
.project-video-note { margin-top:11px !important; color:#777b81 !important; font-size:12px !important; }
.lightbox { position:fixed; inset:0; z-index:200; background:rgba(0,0,0,.92); display:none; align-items:center; justify-content:center; padding:35px; }
.lightbox.open { display:flex; }
.lightbox img { max-width:min(1200px,92vw); max-height:88vh; border-radius:8px; box-shadow:0 20px 70px rgba(0,0,0,.5); }
.lightbox-close { position:absolute; top:20px; right:24px; width:46px; height:46px; border-radius:50%; border:1px solid rgba(255,255,255,.5); background:rgba(0,0,0,.25); color:#fff; font-size:24px; }
.lightbox-nav { position:absolute; top:50%; z-index:2; width:52px; height:52px; display:grid; place-items:center; border:1px solid rgba(255,255,255,.65); border-radius:50%; background:rgba(0,0,0,.48); color:#fff; cursor:pointer; font:400 40px/1 Arial,sans-serif; transform:translateY(-50%); transition:.2s ease; }
.lightbox-nav:hover,.lightbox-nav:focus-visible { background:var(--orange); border-color:var(--orange); outline:none; }
.lightbox-prev { left:22px; }
.lightbox-next { right:22px; }
.lightbox-counter { position:absolute; left:50%; bottom:17px; min-width:70px; padding:7px 12px; border-radius:999px; background:rgba(0,0,0,.55); color:#fff; text-align:center; transform:translateX(-50%); font:600 11px/1.2 'Montserrat',sans-serif; }

/* Process */
.process-page-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:18px; counter-reset:steps; }
.process-page-step { position:relative; background:#fff; border:1px solid #e6e6e6; border-radius:14px; padding:28px 28px 28px 83px; min-height:150px; }
.process-page-step::before { counter-increment:steps; content:counter(steps); position:absolute; left:25px; top:28px; width:42px; height:42px; border-radius:50%; display:grid; place-items:center; border:2px solid var(--orange); color:var(--orange-dark); font:700 14px/1 'Montserrat',sans-serif; }
.process-page-step h3 { margin:0 0 9px; font:700 17px/1.3 'Montserrat',sans-serif; }
.process-page-step p { margin:0; color:#62666d; font-size:13px; line-height:1.7; }

/* Team */
.team-featured { display:grid; grid-template-columns:.85fr 1.15fr; gap:0; border:1px solid #e4e4e4; border-radius:16px; overflow:hidden; box-shadow:0 18px 48px rgba(0,0,0,.08); }
.team-featured .photo { min-height:520px; background:#ddd; }
.team-featured .photo img { width:100%; height:100%; object-fit:cover; }
.team-featured .copy { padding:48px; display:flex; flex-direction:column; justify-content:center; }
.team-featured h2 { margin:0; font:700 33px/1.16 'Montserrat',sans-serif; }
.team-featured .role { color:var(--orange-dark); margin:8px 0 20px; font:600 13px/1.4 'Montserrat',sans-serif; }
.team-featured p { color:#5b6067; font-size:14px; line-height:1.78; }
.team-grid-internal { display:grid; grid-template-columns:repeat(3,1fr); gap:22px; margin-top:34px; }
.team-person { background:#fff; border:1px solid #e5e5e5; border-radius:13px; overflow:hidden; box-shadow:0 8px 26px rgba(0,0,0,.04); }
.team-person .photo { aspect-ratio:4/4.5; overflow:hidden; background:#ddd; }
.team-person .photo img { width:100%; height:100%; object-fit:cover; }
.team-person .copy { padding:23px; }
.team-person h3 { margin:0 0 7px; font:700 18px/1.3 'Montserrat',sans-serif; }
.team-person .role { color:var(--orange-dark); font:600 11px/1.35 'Montserrat',sans-serif; margin-bottom:14px; }
.team-person p { margin:0; color:#61656b; font-size:13px; line-height:1.7; }

/* Blog */
.blog-list-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:23px; }
.blog-list-card { border:1px solid #e5e5e5; border-radius:12px; overflow:hidden; background:#fff; box-shadow:0 7px 24px rgba(0,0,0,.04); }
.blog-list-card img { width:100%; aspect-ratio:16/10; object-fit:cover; }
.blog-list-card .copy { padding:23px; }
.blog-list-card time { color:var(--orange-dark); font:700 10px/1.2 'Montserrat',sans-serif; text-transform:uppercase; letter-spacing:.6px; }
.blog-list-card h2 { margin:9px 0 11px; font:700 18px/1.35 'Montserrat',sans-serif; }
.blog-list-card p { margin:0; color:#666a70; font-size:13px; line-height:1.7; }

/* Contact */
.contact-page-grid { display:grid; grid-template-columns:.85fr 1.15fr; gap:30px; align-items:stretch; }
.contact-details { background:#2f2f32; color:#fff; border-radius:15px; padding:38px; }
.contact-details h2 { margin:0 0 14px; font:700 28px/1.2 'Montserrat',sans-serif; }
.contact-details > p { color:#d4d4d6; line-height:1.7; }
.contact-detail-list { display:grid; gap:18px; margin-top:30px; }
.contact-detail-row { display:flex; align-items:flex-start; gap:13px; }
.contact-detail-row svg { width:22px; height:22px; color:var(--orange); flex:0 0 auto; }
.contact-detail-row strong { display:block; font:700 12px/1.3 'Montserrat',sans-serif; text-transform:uppercase; margin-bottom:5px; }
.contact-detail-row span,.contact-detail-row a { color:#e8e8e8; font-size:13px; line-height:1.55; }
.contact-form-card { border:1px solid #e3e3e3; border-radius:15px; padding:38px; background:#fff; }
.contact-form-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:16px; }
.contact-form-card .field { gap:7px; }
.contact-form-card label { font:600 11px/1.2 'Montserrat',sans-serif; color:#484b50; }
.contact-form-card input,.contact-form-card select,.contact-form-card textarea { width:100%; border:1px solid #dcdcdc; border-radius:5px; min-height:47px; padding:10px 12px; background:#fff; color:#333; }
.contact-form-card textarea { min-height:135px; resize:vertical; }
.contact-form-card .span-2 { grid-column:1/-1; }
.map-frame { width:100%; height:460px; border:0; display:block; border-radius:15px; }
.form-success { display:none; margin-top:14px; color:#278442; font-size:13px; }
.form-success.show { display:block; }

/* Legal */
.legal-copy { max-width:900px; margin:0 auto; }
.legal-copy h2 { margin:34px 0 12px; font:700 23px/1.3 'Montserrat',sans-serif; }
.legal-copy p,.legal-copy li { color:#5b6067; line-height:1.75; font-size:14px; }

@media (max-width:1100px) {
  .info-card-grid { grid-template-columns:repeat(2,1fr); }
  .project-list-grid,.blog-list-grid { grid-template-columns:repeat(2,1fr); }
  .project-meta-panel { grid-template-columns:repeat(3,1fr); }
  .project-body-grid { grid-template-columns:1fr; }
  .project-sidebar { position:static; display:grid; grid-template-columns:repeat(2,1fr); gap:16px; }
  .project-gallery { grid-template-columns:repeat(2,1fr); }
  .team-grid-internal { grid-template-columns:repeat(2,1fr); }
}
@media (max-width:767px) {
  .internal-page { padding-top:72px; }
  .internal-hero { min-height:390px; }
  .internal-hero .internal-hero-copy { padding:70px 0 50px; padding-right:86px; }
  .internal-hero h1 { font-size:34px; }
  .internal-hero p { font-size:14px; }
  .internal-section { padding:64px 0; }
  .content-grid-2,.contact-page-grid,.team-featured { grid-template-columns:1fr; gap:30px; }
  .info-card-grid,.project-list-grid,.blog-list-grid,.process-page-grid,.team-grid-internal { grid-template-columns:1fr; }
  .check-grid { grid-template-columns:1fr; }
  .stat-mini-grid { grid-template-columns:1fr; }
  .cta-band { padding:32px 25px; flex-direction:column; align-items:flex-start; }
  .site-action-rail { width:82px; }
  .site-action-rail .hero-rail-item { min-height:84px; font-size:10px; }
  .project-hero { min-height:490px; }
  .project-meta-panel { grid-template-columns:1fr 1fr; margin-top:-28px; }
  .project-body-grid { gap:35px; }
  .project-sidebar { grid-template-columns:1fr; }
  .project-gallery { grid-template-columns:1fr; }
  .location-gallery-callout { align-items:flex-start; flex-direction:column; }
  .location-city-heading { font-size:20px !important; }
  .lightbox { padding:72px 14px 65px; }
  .lightbox img { max-width:94vw; max-height:78vh; }
  .lightbox-nav { top:auto; bottom:13px; width:46px; height:46px; transform:none; }
  .lightbox-prev { left:18px; }
  .lightbox-next { right:18px; }
  .lightbox-counter { bottom:22px; }
  .team-featured .photo { min-height:390px; }
  .team-featured .copy { padding:30px 24px; }
  .contact-form-grid { grid-template-columns:1fr; }
  .contact-form-card .span-2 { grid-column:auto; }
  .contact-details,.contact-form-card { padding:27px 23px; }
  .map-frame { height:380px; }
}

/* ============================================================
   V10 MOBILE RESPONSIVE FIXES — 2026-08-07
   Targeted overrides only. Desktop/tablet rules above stay intact.
   ============================================================ */
@media (max-width: 767px) {
  html, body { max-width:100%; overflow-x:hidden; }

  /* Mobile header */
  .header-inner { gap:14px; }
  .brand-lockup { max-width:calc(100% - 62px); }
  .brand-reference-logo { width:min(118px, 100%); height:auto; }
  .mobile-menu-btn { flex:0 0 46px; }

  /* Home hero: remove the desktop sticky rail entirely on phones and
     use a clean client project image without the embedded SDP watermark/text. */
  .hero-action-rail { display:none !important; }
  .hero {
    background-image:url('../projects/workafella-coworking/workafella-reception-2026.webp');
    background-position:center center;
    min-height:620px;
    padding:46px 0 44px;
    align-items:flex-end;
  }
  .hero::before {
    background:linear-gradient(0deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.96) 49%, rgba(255,255,255,.68) 72%, rgba(255,255,255,.16) 100%);
  }
  .hero-inner { width:100%; max-width:none; padding-right:0; }
  .hero h1 { max-width:100%; font-size:clamp(30px,8.5vw,36px); line-height:1.08; letter-spacing:-.8px; }
  .hero-copy { max-width:100%; font-size:14px; line-height:1.55; }
  .hero-actions { display:grid; grid-template-columns:1fr; gap:11px; width:min(100%,340px); }
  .hero-actions .btn { width:100%; justify-content:center; white-space:normal; text-align:center; }

  /* Internal pages: fixed action rail is desktop/tablet only. */
  .site-action-rail { display:none !important; }
  .internal-hero .internal-hero-copy { padding-right:0; }

  /* Portfolio is native touch-scroll on phones, so desktop arrows are hidden. */
  .carousel-arrow { display:none; }
  .portfolio-track { padding-left:1px; padding-right:1px; scroll-padding-inline:1px; }

  /* Testimonials: arrows live below the card instead of sitting on top of text. */
  .testimonial-carousel { padding-bottom:58px; }
  .testimonial-viewport { width:100%; overflow:hidden; }
  .testimonial-track { width:100%; }
  .testimonial-slide { flex:0 0 100%; width:100%; min-width:100%; padding:0; box-sizing:border-box; }
  .testimonial-card { width:100%; min-height:0; padding:23px 21px; }
  .quote-text { font-size:14px; line-height:1.65; margin-bottom:20px; }
  .reviewer { gap:12px; }
  .avatar-initial { width:52px; height:52px; flex-basis:52px; }
  .test-arrow {
    top:auto;
    bottom:0;
    transform:none;
    width:42px;
    height:42px;
  }
  .test-arrow.prev { left:0; }
  .test-arrow.next { right:0; }
  .testimonial-dots {
    position:absolute;
    left:52px;
    right:52px;
    bottom:16px;
    margin:0;
    min-height:12px;
    align-items:center;
  }

  /* Before/after: allow normal vertical page scrolling when a finger starts
     on an image. Horizontal drag remains available for comparison. */
  .compare { touch-action:pan-y; cursor:default; }
  .compare-grid { gap:20px; }
  .compare .handle { width:42px; height:42px; }
  .compare-more { margin-top:28px; }

  /* Extra breathing room for small-screen sections/cards. */
  .feature-grid, .team-grid, .blog-grid { gap:22px; }
  .section-header { max-width:100%; }
  .section-title { overflow-wrap:normal; word-break:normal; }
  .whatsapp-fab {
    right:16px;
    bottom:calc(16px + env(safe-area-inset-bottom));
    z-index:120;
  }
}

@media (max-width: 390px) {
  .container-shell { width:calc(100% - 26px); }
  .brand-reference-logo { width:110px; }
  .hero h1 { font-size:31px; }
  .section-title.title-nowrap { font-size:15.5px; letter-spacing:-.6px; }
  .service-item { padding-left:9px; padding-right:9px; }
  .service-label { font-size:11px; }
  .stat-item { gap:10px; }
  .stat-icon { width:31px; height:31px; }
}

/* Client-supplied team group photo: show the full photo with minimal cropping. */
.team-hero { min-height:640px; background:#ded6ce; }
.team-hero::after { background:linear-gradient(90deg,rgba(22,22,24,.80) 0%,rgba(22,22,24,.58) 34%,rgba(22,22,24,.22) 70%,rgba(22,22,24,.10) 100%); }
.team-hero .hero-media { object-fit:contain; object-position:center center; background:#ded6ce; }
@media (max-width:980px) {
  .team-hero { min-height:560px; }
}
@media (max-width:760px) {
  .team-hero { min-height:460px; }
  .team-hero .hero-media { object-fit:contain; object-position:center center; }
}


/* ============================================================
   CLIENT CONTENT & MEDIA UPDATE — 2026-08-20
   ============================================================ */
.brand-lockup .brand-name{display:inline-block;font:700 13px/1.2 'Montserrat',sans-serif;letter-spacing:.1px;color:#2a2a2a;white-space:nowrap;padding-left:10px;border-left:1px solid #dedede}
.dropdown{min-width:330px}
.dropdown a.service-menu-card{padding:12px 13px}
.dropdown a.service-menu-card strong{display:block;font:700 13px/1.25 'Montserrat',sans-serif;color:#262626}
.dropdown a.service-menu-card small{display:block;margin-top:5px;font:500 10px/1.45 'Open Sans',sans-serif;color:#717171;text-transform:none;letter-spacing:0}
.dropdown a.service-menu-card:hover strong{color:var(--orange-dark)}
.deliver-title,.capability-title{font:800 clamp(30px,4vw,50px)/1.08 'Montserrat',sans-serif;letter-spacing:-1.3px;text-transform:none;color:#242424}
.service-deliver-grid{grid-template-columns:repeat(4,1fr)}
.service-deliver-grid-3{grid-template-columns:repeat(3,1fr)}
.gjepc-gallery img{width:100%;height:100%;object-fit:cover}
.project-video-grid{display:grid;grid-template-columns:1fr 1fr;gap:24px}
.project-video-card{border:1px solid #e3e3e3;border-radius:12px;padding:16px;background:#fff}
.project-video-card h3{margin:0 0 12px;font:700 16px/1.3 'Montserrat',sans-serif}
.project-video-card:last-child{grid-column:1/-1}
.project-video-card video{width:100%;max-height:620px;background:#111;border-radius:8px}
.blog-card{position:relative}
.blog-card-link{position:absolute;inset:0;z-index:3}
.blog-list-card-link{display:block;color:inherit;height:100%}
.blog-list-card .read-more{display:inline-block;margin-top:17px;font:700 11px/1.2 'Montserrat',sans-serif;text-transform:uppercase;color:var(--orange-dark);letter-spacing:.4px}
.article-layout{display:grid;grid-template-columns:minmax(0,1fr) 310px;gap:54px;align-items:start}
.article-main{min-width:0}
.article-copy{max-width:820px}
.article-copy p{margin:0 0 19px;color:#4f5358;font-size:16px;line-height:1.82}
.article-copy h2{margin:44px 0 17px;font:750 27px/1.25 'Montserrat',sans-serif;letter-spacing:-.45px;color:#252525}
.article-copy ul{margin:0 0 24px;padding-left:23px;color:#4f5358;font-size:16px;line-height:1.75}
.article-copy li{margin:7px 0}
.article-sidebar{position:sticky;top:110px;display:grid;gap:18px}
.article-hero h1{max-width:980px;font-size:clamp(34px,4.5vw,58px)}
.safe-img,.portfolio-image img,.project-list-image img,.blog-list-card img,.info-card img{image-rendering:auto}
@media(max-width:1050px){.brand-lockup .brand-name{font-size:12px}.article-layout{grid-template-columns:1fr}.article-sidebar{position:static;grid-template-columns:1fr 1fr}.service-deliver-grid,.service-deliver-grid-3{grid-template-columns:repeat(2,1fr)}}
@media(max-width:767px){.brand-lockup .brand-name{font-size:10px;padding-left:7px;max-width:122px;white-space:normal;line-height:1.15}.project-video-grid{grid-template-columns:1fr}.project-video-card:last-child{grid-column:auto}.article-sidebar{grid-template-columns:1fr}.article-copy p,.article-copy ul{font-size:15px}.article-copy h2{font-size:23px}.service-deliver-grid,.service-deliver-grid-3{grid-template-columns:1fr}.deliver-title,.capability-title{font-size:31px}}
/* Header fit refinement for logo + company name */
@media (min-width:1051px){
  .header-inner{gap:20px}
  .brand-reference-logo{width:120px}
  .brand-lockup{min-width:270px;gap:9px}
  .brand-lockup .brand-name{font-size:12px}
  .desktop-nav{gap:18px}
  .nav-link,.nav-button{font-size:11px}
}

/* ============================================================
   CLIENT CORRECTIONS — 2026-08-20 R2
   ============================================================ */

/* Header company name: use the client's exact supplied lettering instead of a web-font approximation.
   The source artwork also contains a second descriptor line; the crop intentionally shows only
   "Spazio Design Partners" beside the SDP mark as requested. */
.brand-lockup{
  gap:9px;
}
.brand-company-name-crop{
  display:block;
  flex:0 0 auto;
  width:190px;
  height:16px;
  overflow:hidden;
  border-left:1px solid #dedede;
  padding-left:10px;
  line-height:0;
}
.brand-company-name-image{
  display:block;
  width:180px;
  max-width:none;
  height:auto;
  margin:0;
}

/* Services menu: all four menu items use one consistent treatment; no descriptive second line. */
.dropdown{
  min-width:230px;
  padding:10px;
}
.dropdown a,
.dropdown a.service-menu-card{
  display:block;
  padding:11px 12px;
  border-radius:7px;
  font:500 13px/1.25 'Montserrat',sans-serif;
  color:#333;
  text-transform:none;
  letter-spacing:0;
}
.dropdown a:hover,
.dropdown a.service-menu-card:hover{
  background:var(--light);
  color:var(--orange-dark);
}
.dropdown a.service-menu-card strong,
.dropdown a.service-menu-card small{
  display:contents;
  font:inherit;
  color:inherit;
}

/* Match "Projects that reflect this capability" to the same strong, clean heading treatment
   used for "A practical, design-led service". */
.deliver-title,
.capability-title{
  margin:0;
  font:700 clamp(28px,3.4vw,44px)/1.18 'Montserrat',sans-serif;
  color:var(--charcoal);
  letter-spacing:-.4px;
  text-transform:none;
}

/* Image rendering refinement.
   CSS cannot recreate detail missing from a low-resolution source, but these rules avoid needless
   browser scaling/zoom blur and use the browser's highest-quality interpolation where supported. */
.safe-img,
.portfolio-image img,
.project-list-image img,
.project-gallery img,
.blog-img img,
.blog-list-card img,
.info-card img,
.image-frame img,
.internal-hero .hero-media,
.team-photo img,
.founder-photo img{
  image-rendering:auto;
  image-rendering:-webkit-optimize-contrast;
  -ms-interpolation-mode:bicubic;
  object-position:center center;
  filter:contrast(1.015) saturate(1.01);
}
.portfolio-image img,
.project-list-image img,
.project-gallery img,
.blog-img img{
  transform:none !important;
  transition:filter .25s ease, opacity .25s ease;
}
.portfolio-card:hover img,
.project-list-card:hover img,
.project-gallery a:hover img,
.blog-card:hover img{
  transform:none !important;
  filter:contrast(1.025) saturate(1.015);
}

@media (max-width:1300px) and (min-width:1051px){
  .brand-reference-logo{width:110px;}
  .brand-company-name-crop{width:168px;height:14px;padding-left:8px;}
  .brand-company-name-image{width:160px;}
}
@media (max-width:1050px){
  .brand-company-name-crop{width:176px;height:15px;}
  .brand-company-name-image{width:168px;}
}
@media (max-width:767px){
  .brand-reference-logo{width:105px;}
  .brand-company-name-crop{width:142px;height:12px;padding-left:7px;}
  .brand-company-name-image{width:135px;}
  .deliver-title,.capability-title{font-size:31px;}
}
@media (max-width:390px){
  .brand-reference-logo{width:96px;}
  .brand-company-name-crop{width:120px;height:10px;padding-left:6px;}
  .brand-company-name-image{width:114px;}
}


/* ============================================================
   CLIENT APPROVED UPDATE — 2026-08-31
   ============================================================ */
/* Larger company name aligned back toward the P curve of the SDP mark. */
.brand-lockup{gap:0;overflow:visible}
.brand-reference-logo{position:relative;z-index:2}
.brand-company-name-crop{width:250px;height:23px;padding-left:0;border-left:0;margin-left:-18px;overflow:hidden;position:relative;z-index:3}
.brand-company-name-image{width:245px}

/* Inner pages use a clean black heading/breadcrumb strip, never a photo. */
.internal-hero.internal-hero--plain{min-height:260px;background:#171717;align-items:center}
.internal-hero.internal-hero--plain::after{background:#171717}
.internal-hero.internal-hero--plain .internal-hero-copy{padding:64px 0 48px}
.internal-hero.internal-hero--plain h1{margin-bottom:10px}
.internal-hero.internal-hero--plain p{max-width:820px}

/* Sticky right-side communication tools disabled as requested. */
.site-action-rail,.hero-action-rail{display:none!important}

/* Free consultation form */
.consultation-card .estimate-form input,.consultation-card .estimate-form select{width:100%;min-height:42px;border:1px solid #d8d8d8;background:#fff;padding:9px 11px;font:500 12px/1.3 'Open Sans',sans-serif;color:#333}
.consultation-card .form-success{display:none;margin:8px 0 0;font-size:12px;color:#245c2a}
.consultation-card .form-success.show{display:block}

@media(max-width:1300px) and (min-width:1051px){
  .brand-company-name-crop{width:220px;height:20px;margin-left:-14px}
  .brand-company-name-image{width:216px}
}
@media(max-width:1050px){
  .brand-company-name-crop{width:205px;height:19px;margin-left:-12px}
  .brand-company-name-image{width:200px}
}
@media(max-width:767px){
  .brand-lockup{max-width:calc(100% - 56px)}
  .brand-reference-logo{width:94px}
  .brand-company-name-crop{width:160px;height:15px;margin-left:-10px;padding-left:0}
  .brand-company-name-image{width:156px}
  .internal-hero.internal-hero--plain{min-height:220px}
  .internal-hero.internal-hero--plain .internal-hero-copy{padding:48px 0 34px}
  .hero.hero-section{min-height:0;height:auto;padding-top:0;background:#171717!important;display:block}
  .hero.hero-section::before{content:'';display:block;width:100%;aspect-ratio:1280/853;background-image:url('../projects/workafella-coworking/workafella-reception-2026.webp');background-size:contain;background-position:center;background-repeat:no-repeat;background-color:#111}
  .hero.hero-section>.container-shell{background:#171717;width:100%;max-width:none;padding:0 22px}
  .hero .hero-inner{padding:24px 0 30px;max-width:620px}
  .hero h1{font-size:clamp(30px,8.5vw,42px);line-height:1.08;margin:0 0 16px}
  .hero-copy{font-size:14px;line-height:1.6;max-width:100%;margin-bottom:20px}
  .hero-actions{gap:10px;flex-wrap:wrap}
}
@media(max-width:390px){
  .brand-reference-logo{width:86px}
  .brand-company-name-crop{width:140px;height:13px;margin-left:-8px}
  .brand-company-name-image{width:136px}
}


/* ============================================================
   CLIENT CORRECTION PASS — 2026-08-31 R3
   ============================================================ */
/* One clean brand lockup: supplied SDP mark/tagline + live company-name text. */
.brand-lockup{display:flex;align-items:center;gap:0;overflow:visible;text-decoration:none}
.brand-reference-logo{width:145px;max-width:none;height:auto;flex:0 0 auto;position:relative;z-index:2}
.brand-company-name{display:block;margin-left:-14px;position:relative;z-index:3;white-space:nowrap;color:#3b3b3d;font:700 24px/1 'Montserrat',sans-serif;letter-spacing:-.45px}
.hero-mobile-image{display:none;width:100%;height:auto;object-fit:contain;object-position:center;background:#111}
.about-title-nowrap{white-space:nowrap;max-width:none!important}

@media (max-width:1300px) and (min-width:1051px){
  .brand-reference-logo{width:122px}
  .brand-company-name{font-size:18px;margin-left:-11px}
  .brand-lockup{min-width:310px}
  .desktop-nav{gap:15px}
}
@media (min-width:1301px){
  .brand-lockup{min-width:365px}
}
@media (max-width:1050px){
  .brand-reference-logo{width:118px}
  .brand-company-name{font-size:18px;margin-left:-10px}
  .brand-lockup{min-width:0;max-width:calc(100% - 62px)}
}
@media (max-width:767px){
  .brand-reference-logo{width:94px}
  .brand-company-name{font-size:13px;letter-spacing:-.2px;margin-left:-8px}
  .brand-lockup{max-width:calc(100% - 58px)}
  .hero.hero-section{margin-top:72px;min-height:0;height:auto;padding:0;background:#fff!important;display:block;overflow:visible}
  .hero.hero-section::before{display:none!important;content:none!important;background:none!important}
  .hero-mobile-image{display:block;width:100%;height:auto;aspect-ratio:auto;object-fit:contain;object-position:center;background:#111}
  .hero.hero-section>.container-shell{width:min(calc(100% - 30px),690px);max-width:690px;padding:0;background:#fff}
  .hero .hero-inner{padding:24px 0 30px;max-width:100%}
  .hero h1{font-size:clamp(28px,8.3vw,38px);line-height:1.07;color:#353535;margin:0 0 15px}
  .hero-copy{font-size:13px;line-height:1.55;color:#333;margin:0 0 18px}
  .hero-actions{display:grid;grid-template-columns:1fr;gap:10px;width:100%}
  .hero-actions .btn{width:100%;justify-content:center}
  .about-title-nowrap{white-space:normal}
}
@media (max-width:390px){
  .brand-reference-logo{width:86px}
  .brand-company-name{font-size:11px;margin-left:-7px}
}


/* R4 corrections — 2026-08-31 */
.about-beauty-grid{grid-template-columns:1.16fr .84fr;gap:52px;align-items:center}
.about-beauty-grid .internal-copy p{font-size:16px;line-height:1.82}
.about-beauty-grid .internal-lead{font-size:18px;line-height:1.72}
.about-beauty-image{width:min(100%,390px);justify-self:end;box-shadow:0 18px 42px rgba(0,0,0,.11)}
.about-beauty-image img{display:block;width:100%;height:390px!important;min-height:0!important;object-fit:cover;object-position:center 30%}
.hp-field{position:absolute!important;left:-10000px!important;top:auto!important;width:1px!important;height:1px!important;overflow:hidden!important}
@media(max-width:767px){
  .about-beauty-grid{grid-template-columns:1fr;gap:28px}
  .about-beauty-grid .internal-copy p{font-size:15px}
  .about-beauty-image{width:min(100%,360px);justify-self:center}
  .about-beauty-image img{height:360px!important}
}


/* R6 header spacing — 2026-08-31
   Add a small visual gap between the supplied SDP logo artwork and the live company name. */
.brand-company-name{margin-left:8px}
@media (max-width:1300px) and (min-width:1051px){.brand-company-name{margin-left:8px}}
@media (max-width:1050px){.brand-company-name{margin-left:8px}}
@media (max-width:767px){.brand-company-name{margin-left:6px}}
@media (max-width:390px){.brand-company-name{margin-left:6px}}
