/* ==========================================================================
   TOKENS — scoped to .wbdl-root, not :root, so nothing leaks into (or gets
   overridden by) the WordPress theme's own custom properties.
   ========================================================================== */
.wbdl-root{
  --wbdl-ink:#0c0d10;
  --wbdl-ink-soft:#15171b;
  --wbdl-paper:#ffffff;
  --wbdl-paper-dim:#f2f2f0;
  --wbdl-brick:#b04e30;
  --wbdl-brick-deep:#7d3520;
  --wbdl-moss:#57634a;
  --wbdl-moss-deep:#333b2a;
  --wbdl-concrete:#9aa1a8;
  --wbdl-glow:#d98a4f;
  --wbdl-ink-warm:#443f34;
  --wbdl-muted-deep:#6b6558;   /* body-weight muted text — 5.8:1 on paper, AA-safe */
  --wbdl-muted:#8b8577;        /* decorative/large-text only — 3.7:1 on paper */
  --wbdl-muted-dark:rgba(255,255,255,0.66);
  --wbdl-muted-dark-2:rgba(255,255,255,0.46);
  --wbdl-line-dark:rgba(255,255,255,0.12);
  --wbdl-line-light:rgba(12,13,16,0.12);
  --wbdl-display:'Fraunces',serif;
  --wbdl-body:'Manrope',sans-serif;
  --wbdl-mono:'IBM Plex Mono',monospace;
  --wbdl-ease:cubic-bezier(.16,.84,.44,1);
  --wbdl-sec-pad:clamp(84px,11vw,168px);
  --wbdl-edge:clamp(20px,5vw,64px);
  --wbdl-radius-sm:4px;
  --wbdl-radius-md:8px;
  --wbdl-radius-pill:100px;

  background:var(--wbdl-paper);
  color:var(--wbdl-ink);
  font-family:var(--wbdl-body);
  font-weight:400;
  line-height:1.5;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}

/* ==========================================================================
   BASE — scoped resets. No bare element selectors anywhere in this file:
   every rule below is anchored to .wbdl-root so it cannot touch the rest
   of a WordPress theme.
   ========================================================================== */
.wbdl-root, .wbdl-root *{box-sizing:border-box}
.wbdl-root img{display:block;max-width:100%}
.wbdl-root a{color:inherit;text-decoration:none}
.wbdl-root button{font:inherit;cursor:pointer;border:none;background:none;color:inherit}
.wbdl-root ::selection{background:var(--wbdl-brick);color:var(--wbdl-paper)}
.wbdl-root :focus-visible{outline:2px solid var(--wbdl-brick);outline-offset:2px}

/* Skip link — WCAG 2.4.1 Bypass Blocks. Visually hidden until focused. */
.wbdl-skip-link{position:absolute;left:var(--wbdl-edge);top:-60px;z-index:1000;background:var(--wbdl-ink);color:var(--wbdl-paper);padding:12px 20px;border-radius:0 0 var(--wbdl-radius-sm) var(--wbdl-radius-sm);font-family:var(--wbdl-mono);font-size:12px;letter-spacing:0.04em;transition:top .3s var(--wbdl-ease)}
.wbdl-skip-link:focus{top:0}

/* ==========================================================================
   HEADER — glassmorphic, brick accent. (Kept — this was already on-brief.)
   ========================================================================== */
.wbdl-root .wbdl-header{position:fixed;top:0;left:0;right:0;z-index:100;padding:20px var(--wbdl-edge) 0;transition:padding .45s var(--wbdl-ease)}
.wbdl-root .wbdl-header-inner{max-width:1400px;margin:0 auto;display:flex;align-items:center;justify-content:space-between;gap:20px;background:rgba(255,255,255,0.72);border:1px solid rgba(12,13,16,0.07);border-radius:var(--wbdl-radius-pill);padding:10px 14px 10px 20px;backdrop-filter:blur(24px) saturate(150%);-webkit-backdrop-filter:blur(24px) saturate(150%);box-shadow:0 1px 0 rgba(255,255,255,0.5) inset, 0 12px 30px -18px rgba(12,13,16,0.18);transition:transform .45s var(--wbdl-ease),background .45s var(--wbdl-ease),box-shadow .45s var(--wbdl-ease)}
.wbdl-root .wbdl-header.wbdl-solid .wbdl-header-inner{background:rgba(255,255,255,0.88);box-shadow:0 1px 0 rgba(255,255,255,0.6) inset, 0 16px 36px -16px rgba(12,13,16,0.22);transform:scale(0.98)}
.wbdl-root .wbdl-logo{display:flex;align-items:center;flex-shrink:0}
.wbdl-root .wbdl-logo img{height:24px;width:auto;display:block}
.wbdl-root .wbdl-nav{display:flex;gap:32px}
.wbdl-root .wbdl-nav a{font-size:13px;letter-spacing:0.01em;color:var(--wbdl-ink-warm);font-weight:500;position:relative;padding-bottom:3px;transition:color .3s var(--wbdl-ease)}
.wbdl-root .wbdl-nav a:hover{color:var(--wbdl-ink)}
.wbdl-root .wbdl-nav a::after{content:'';position:absolute;left:0;bottom:0;width:0;height:1px;background:var(--wbdl-brick);transition:width .3s var(--wbdl-ease)}
.wbdl-root .wbdl-nav a:hover::after{width:100%}
.wbdl-root .wbdl-header-right{display:flex;align-items:center;gap:10px}
.wbdl-root .wbdl-nav-cta{background:var(--wbdl-brick);border:1px solid var(--wbdl-brick);color:var(--wbdl-paper);padding:9px 18px;font-size:12px;letter-spacing:0.02em;border-radius:var(--wbdl-radius-pill);transition:background .3s var(--wbdl-ease);font-weight:600;white-space:nowrap}
.wbdl-root .wbdl-nav-cta:hover{background:var(--wbdl-brick-deep);border-color:var(--wbdl-brick-deep)}
.wbdl-root .wbdl-menu-toggle{display:none;width:44px;height:44px;align-items:center;justify-content:center;flex-direction:column;gap:4px;flex-shrink:0;border-radius:50%;border:1px solid rgba(12,13,16,0.12);background:rgba(255,255,255,0.4);transition:background .3s var(--wbdl-ease)}
.wbdl-root .wbdl-menu-toggle:hover{background:rgba(12,13,16,0.05)}
.wbdl-root .wbdl-menu-toggle span{width:14px;height:1.3px;background:var(--wbdl-ink);display:block;transition:transform .3s var(--wbdl-ease),opacity .3s var(--wbdl-ease)}
.wbdl-root .wbdl-menu-toggle[aria-expanded="true"] span:first-child{transform:translateY(2.9px) rotate(45deg)}
.wbdl-root .wbdl-menu-toggle[aria-expanded="true"] span:last-child{transform:translateY(-2.9px) rotate(-45deg)}
.wbdl-root .wbdl-mobile-nav{position:fixed;inset:0;background:var(--wbdl-ink);z-index:99;display:flex;flex-direction:column;justify-content:center;padding:0 32px;transform:translateY(-100%);transition:transform .5s var(--wbdl-ease);visibility:hidden}
.wbdl-root .wbdl-mobile-nav.wbdl-open{transform:translateY(0);visibility:visible}
.wbdl-root .wbdl-mobile-nav nav{display:flex;flex-direction:column;gap:20px}
.wbdl-root .wbdl-mobile-nav nav a{font-family:var(--wbdl-display);font-size:32px;color:var(--wbdl-paper);font-weight:460}
.wbdl-root .wbdl-mobile-cta{margin-top:40px;align-self:flex-start;border:1px solid rgba(255,255,255,0.35);color:var(--wbdl-paper);padding:13px 22px;border-radius:var(--wbdl-radius-pill);font-family:var(--wbdl-mono);font-size:12px;letter-spacing:0.03em}

/* ==========================================================================
   VISUALLY HIDDEN — standard sr-only pattern. Used for the one real <h1>
   (see HERO below): present for AT/SEO, doesn't affect layout.
   ========================================================================== */
.wbdl-root .wbdl-visually-hidden{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}

/* ==========================================================================
   HERO — rotating company/project carousel, full and
   uncropped background, one CTA visible at a time.

   Heading fix: earlier drafts gave each slide its own literal <h1>, so all
   three existed in the DOM at once. There is exactly one <h1> in this
   section now — visually hidden, stable text, never changes with the
   slide. The three rotating headlines below are .wbdl-hero-headline
   elements (styled identically, semantically plain text), not headings.
   ========================================================================== */
.wbdl-root .wbdl-hero{position:relative;min-height:100svh;overflow:hidden;display:flex;align-items:center}
.wbdl-root .wbdl-hero-bg{position:absolute;inset:0;z-index:1}
.wbdl-root .wbdl-hero-bg-layer{position:absolute;inset:0;opacity:0;transition:opacity 1.2s var(--wbdl-ease)}
.wbdl-root .wbdl-hero-bg-layer.wbdl-active{opacity:1;z-index:1}
.wbdl-root .wbdl-hero-bg-layer img{width:100%;height:100%;object-fit:contain;object-position:50% 50%;display:block}
/* Honest pending-media treatment for any project without an image. */
.wbdl-root .wbdl-hero-bg-pending{width:100%;height:100%;background:linear-gradient(155deg,var(--wbdl-moss-deep) 0%,#232920 55%,var(--wbdl-ink) 100%);display:flex;align-items:center;justify-content:center}
.wbdl-root .wbdl-hero-bg-pending-content{text-align:center;display:flex;flex-direction:column;align-items:center;gap:14px}
.wbdl-root .wbdl-hero-bg-pending-note{font-family:var(--wbdl-mono);font-size:11px;letter-spacing:0.16em;text-transform:uppercase;color:rgba(255,255,255,0.5)}
.wbdl-root .wbdl-hero-bg-pending-mark{font-family:var(--wbdl-display);font-size:clamp(32px,5vw,56px);font-weight:500;color:rgba(255,255,255,0.92)}
.wbdl-root .wbdl-hero-inner{position:relative;z-index:5;width:100%;padding:140px var(--wbdl-edge) 100px}
.wbdl-root .wbdl-hero-copy{max-width:520px}
.wbdl-root .wbdl-eyebrow{font-family:var(--wbdl-mono);font-size:11px;letter-spacing:0.15em;text-transform:uppercase;color:var(--wbdl-muted-deep);display:flex;align-items:center;gap:10px;font-weight:500}
.wbdl-root .wbdl-eyebrow::before{content:'';width:22px;height:1px;background:var(--wbdl-brick);display:inline-block;flex-shrink:0}
/* Your original CSS defined an .on-dark eyebrow variant but never applied
   it anywhere — including on the one eyebrow that actually sits on a dark
   background (Contact). That left "Get in Touch" at ~3.4:1 contrast,
   below AA. Wiring it up here, on the section that needs it. */
.wbdl-root .wbdl-eyebrow.wbdl-on-dark{color:var(--wbdl-muted-dark)}
.wbdl-root .wbdl-hero-copy .wbdl-eyebrow{margin-bottom:26px}
.wbdl-root .wbdl-hero-headline{font-family:var(--wbdl-display);font-weight:480;letter-spacing:-0.02em;line-height:1.0;font-size:clamp(40px,5.2vw,78px);max-width:12ch;color:var(--wbdl-ink);margin:0}
.wbdl-root .wbdl-hero-headline em{font-style:italic;font-family:var(--wbdl-display);font-weight:440;color:var(--wbdl-brick)}
.wbdl-root .wbdl-hero-sub{max-width:38ch;font-size:16px;color:var(--wbdl-ink-warm);margin-top:26px;font-weight:400;line-height:1.6}
/* Soft light halo (not a solid scrim) keeps copy legible over any photo
   without flattening the image itself. */
.wbdl-root .wbdl-hero-copy .wbdl-eyebrow,.wbdl-root .wbdl-hero-copy .wbdl-hero-headline,.wbdl-root .wbdl-hero-copy .wbdl-hero-sub{text-shadow:0 1px 3px rgba(255,255,255,0.9),0 2px 18px rgba(255,255,255,0.7)}
.wbdl-root .wbdl-hero-actions{display:flex;align-items:center;gap:16px;margin-top:40px;flex-wrap:wrap;min-height:48px}
.wbdl-root .wbdl-cta{display:inline-flex;align-items:center;gap:10px;font-size:13px;letter-spacing:0.03em;font-weight:600;padding:14px 24px;border-radius:var(--wbdl-radius-pill);border:1px solid currentColor;position:relative;transition:transform .35s var(--wbdl-ease),background .35s var(--wbdl-ease),color .35s var(--wbdl-ease),border-color .35s var(--wbdl-ease)}
.wbdl-root .wbdl-cta .wbdl-arrow{transition:transform .35s var(--wbdl-ease);display:inline-block}
.wbdl-root .wbdl-cta:hover .wbdl-arrow{transform:translateX(5px)}
.wbdl-root .wbdl-cta.wbdl-filled{background:var(--wbdl-brick);color:var(--wbdl-paper);border-color:var(--wbdl-brick)}
.wbdl-root .wbdl-cta.wbdl-filled:hover{background:var(--wbdl-brick-deep);border-color:var(--wbdl-brick-deep)}

/* Slide switching — opacity/transform only, no scroll trigger. Autoplay is
   timer-driven (JS), not scroll-linked. */
.wbdl-root .wbdl-hero-slides{position:relative;display:grid}
.wbdl-root .wbdl-hero-slide,.wbdl-root .wbdl-hero-slide:not(.wbdl-active){position:relative;inset:auto;grid-area:1/1;opacity:0;transform:translateY(14px);transition:opacity .85s var(--wbdl-ease),transform .85s var(--wbdl-ease);pointer-events:none}
.wbdl-root .wbdl-hero-slide.wbdl-active{position:relative;opacity:1;transform:translateY(0);pointer-events:auto;transition-delay:.1s}

/* Only the first slide shows text — slides 2 & 3 are banner-only.
   Slide 1 keeps its labelled CTA pill; slides 2 & 3 carry an icon-only
   circular arrow link instead (.wbdl-hero-arrow-link), matching the
   slider nav's arrow language.
   Text on slides 2 & 3 is visibility:hidden (not display:none) so the
   slide heights stay identical and the slider controls below don't jump. */
.wbdl-root .wbdl-banner-slide .wbdl-eyebrow,
.wbdl-root .wbdl-banner-slide .wbdl-hero-headline,
.wbdl-root .wbdl-banner-slide .wbdl-hero-sub{visibility:hidden}

.wbdl-root .wbdl-hero-meta{position:absolute;left:0;right:0;bottom:30px;z-index:5;padding:0 var(--wbdl-edge);display:flex;align-items:center;justify-content:space-between;gap:20px;flex-wrap:wrap}
.wbdl-root .wbdl-scroll-cue{display:flex;align-items:center;gap:10px;font-family:var(--wbdl-mono);font-size:10px;letter-spacing:0.16em;text-transform:uppercase;color:var(--wbdl-muted-deep)}
.wbdl-root .wbdl-scroll-line{width:1px;height:32px;background:var(--wbdl-line-light);position:relative;overflow:hidden}
.wbdl-root .wbdl-scroll-line::after{content:'';position:absolute;top:-100%;left:0;width:100%;height:100%;background:var(--wbdl-brick);animation:wbdl-scroll-down 2.4s ease-in-out infinite}
@keyframes wbdl-scroll-down{0%{top:-100%}60%{top:100%}100%{top:100%}}
.wbdl-root .wbdl-hero-loc{font-family:var(--wbdl-mono);font-size:10.5px;letter-spacing:0.1em;text-transform:uppercase;color:var(--wbdl-muted-deep);display:flex;align-items:center;gap:10px}
.wbdl-root .wbdl-hero-loc .wbdl-div{width:1px;height:11px;background:var(--wbdl-line-light);display:inline-block}
.wbdl-root .wbdl-hero-loc .wbdl-accent{color:var(--wbdl-brick)}

.wbdl-root .wbdl-hero-dots{display:flex;align-items:center;gap:10px}
.wbdl-root .wbdl-hero-dot{width:22px;height:3px;border-radius:2px;background:rgba(12,13,16,0.16);position:relative;overflow:hidden;transition:background-color .35s var(--wbdl-ease),width .35s var(--wbdl-ease);padding:0}
.wbdl-root .wbdl-hero-dot::after{content:'';position:absolute;inset:0;background:var(--wbdl-brick);border-radius:2px;transform:scaleX(0);transform-origin:left center}
.wbdl-root .wbdl-hero-dot.wbdl-active{width:34px;background:rgba(12,13,16,0.12)}
.wbdl-root .wbdl-hero-dot.wbdl-active::after{animation:wbdl-dot-progress var(--wbdl-slide-duration,6.5s) linear forwards}
.wbdl-root .wbdl-hero-dot.wbdl-active[data-paused="true"]::after{animation-play-state:paused}
@keyframes wbdl-dot-progress{from{transform:scaleX(0)}to{transform:scaleX(1)}}
.wbdl-root .wbdl-hero-dot span{position:absolute;width:1px;height:1px;overflow:hidden;clip:rect(0,0,0,0)}
.wbdl-root .wbdl-hero-slider-nav{display:flex;align-items:center;gap:10px}
.wbdl-root .wbdl-hero-arrow{width:44px;height:44px;border-radius:50%;border:1px solid var(--wbdl-line-light);display:flex;align-items:center;justify-content:center;color:var(--wbdl-ink-warm);transition:background-color .3s var(--wbdl-ease),border-color .3s var(--wbdl-ease),color .3s var(--wbdl-ease)}
.wbdl-root .wbdl-hero-arrow:hover{background:rgba(12,13,16,0.05);border-color:rgba(12,13,16,0.22);color:var(--wbdl-ink)}
.wbdl-root .wbdl-hero-arrow svg{width:14px;height:14px}
/* Slide controller arrow used in place of a text CTA on slides 2 & 3 —
   same circular chevron button as the slider nav. Sits over hero
   photography, so it carries its own light backing plate for legibility
   rather than relying on the copy halo. */
.wbdl-root .wbdl-hero-slide-arrow{background:rgba(255,255,255,0.72);border-color:rgba(12,13,16,0.16);backdrop-filter:blur(10px) saturate(140%);-webkit-backdrop-filter:blur(10px) saturate(140%);box-shadow:0 8px 22px -14px rgba(12,13,16,0.4);flex-shrink:0}
.wbdl-root .wbdl-hero-slide-arrow:hover{background:var(--wbdl-brick);border-color:var(--wbdl-brick);color:var(--wbdl-paper)}
.wbdl-root .wbdl-hero-slider-controls{display:flex;align-items:center;justify-content:space-between;gap:24px;margin-top:38px}

@media (prefers-reduced-motion:reduce){
  .wbdl-root .wbdl-hero-slide{transition:opacity .3s linear;transform:none}
  .wbdl-root .wbdl-hero-dot.wbdl-active::after{animation:none!important;transform:scaleX(1)}
}

/* ==========================================================================
   INTRO STATEMENT — brief bridge between hero and the project list.
   ========================================================================== */
.wbdl-root .wbdl-intro{padding:calc(var(--wbdl-sec-pad)*0.6) var(--wbdl-edge) calc(var(--wbdl-sec-pad)*0.5);background:var(--wbdl-paper);position:relative}
.wbdl-root .wbdl-intro-inner{max-width:1400px;margin:0 auto}
.wbdl-root .wbdl-intro h2{font-family:var(--wbdl-display);font-size:clamp(30px,4.6vw,58px);font-weight:460;max-width:15ch;margin-top:22px;color:var(--wbdl-ink)}
.wbdl-root .wbdl-intro-sub{font-size:16px;color:var(--wbdl-ink-warm);max-width:52ch;margin-top:24px;font-weight:400}

/* ==========================================================================
   PROJECTS
   ========================================================================== */
.wbdl-root .wbdl-project{padding-bottom:calc(var(--wbdl-sec-pad)*0.55);background:var(--wbdl-paper);position:relative}
.wbdl-root .wbdl-project-head{display:grid;grid-template-columns:80px 1fr;gap:20px;padding:44px var(--wbdl-edge) 40px;border-top:1px solid var(--wbdl-line-light);align-items:start;max-width:1400px;margin:0 auto}
.wbdl-root .wbdl-project-num{font-family:var(--wbdl-mono);font-size:13px;color:var(--wbdl-muted-deep);padding-top:10px}
.wbdl-root .wbdl-project-title h2{font-family:var(--wbdl-display);font-size:clamp(30px,4.8vw,56px);font-weight:500;line-height:1;color:var(--wbdl-ink)}
.wbdl-root .wbdl-project-tags{display:flex;gap:10px;flex-wrap:wrap;margin-top:18px}
.wbdl-root .wbdl-tag{font-family:var(--wbdl-mono);font-size:10.5px;letter-spacing:0.05em;text-transform:uppercase;border:1px solid var(--wbdl-line-light);padding:7px 13px;border-radius:var(--wbdl-radius-pill);color:var(--wbdl-muted-deep);white-space:nowrap;background:var(--wbdl-paper)}
.wbdl-root .wbdl-project-media{position:relative;padding-bottom:8%;max-width:1400px;margin:0 auto;padding-left:var(--wbdl-edge);padding-right:var(--wbdl-edge)}
.wbdl-root .wbdl-media-main{width:100%;aspect-ratio:16/9;overflow:hidden;border-radius:var(--wbdl-radius-sm);border:1px solid var(--wbdl-line-light);position:relative}
.wbdl-root .wbdl-media-main img{width:100%;height:100%;object-fit:cover;transition:transform 1.1s var(--wbdl-ease)}
.wbdl-root .wbdl-media-main:hover img{transform:scale(1.03)}
.wbdl-root .wbdl-media-detail{position:absolute;left:var(--wbdl-edge);bottom:0;z-index:2;width:min(340px,36%);aspect-ratio:4/3;overflow:hidden;border-radius:var(--wbdl-radius-sm);border:5px solid var(--wbdl-paper);box-shadow:0 26px 60px -18px rgba(12,13,16,0.35);transition:transform .5s var(--wbdl-ease)}
.wbdl-root .wbdl-media-detail:hover{transform:translateY(-4px)}
.wbdl-root .wbdl-media-detail img{width:100%;height:100%;object-fit:cover;transition:transform 1.1s var(--wbdl-ease)}
.wbdl-root .wbdl-media-detail:hover img{transform:scale(1.03)}
.wbdl-root .wbdl-project-footer{display:flex;justify-content:space-between;align-items:flex-start;gap:24px;flex-wrap:wrap;max-width:1400px;margin:44px auto 0;padding-left:var(--wbdl-edge);padding-right:var(--wbdl-edge)}
.wbdl-root .wbdl-project-desc{font-size:15.5px;color:var(--wbdl-ink-warm);max-width:52ch;font-weight:400}
.wbdl-root .wbdl-view-link{display:inline-flex;align-items:center;gap:9px;font-size:13px;letter-spacing:0.02em;border-bottom:1px solid var(--wbdl-ink);padding-bottom:4px;color:var(--wbdl-ink);white-space:nowrap;transition:border-color .3s,color .3s}
.wbdl-root .wbdl-view-link:hover{border-color:var(--wbdl-brick);color:var(--wbdl-brick)}
.wbdl-root .wbdl-view-link .wbdl-arrow{transition:transform .35s var(--wbdl-ease);display:inline-block}
.wbdl-root .wbdl-view-link:hover .wbdl-arrow{transform:translate(4px,-4px)}
/* A project without a secondary thumbnail does not reserve overlap space. */
.wbdl-root .wbdl-project.wbdl-no-detail .wbdl-project-media{padding-bottom:0}
.wbdl-root .wbdl-project.wbdl-no-detail .wbdl-project-footer{margin-top:24px}

/* Pending-media placeholder — honest about missing media instead of using stock. */
.wbdl-root .wbdl-media-pending{position:relative;width:100%;aspect-ratio:16/9;border-radius:var(--wbdl-radius-sm);overflow:hidden;background:linear-gradient(155deg,var(--wbdl-moss-deep) 0%,#232920 55%,var(--wbdl-ink) 100%);border:1px solid rgba(255,255,255,0.1);display:flex;align-items:center;justify-content:center}
.wbdl-root .wbdl-media-pending-grid{position:absolute;inset:0;background-image:linear-gradient(rgba(255,255,255,0.05) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,0.05) 1px,transparent 1px);background-size:48px 48px}
.wbdl-root .wbdl-media-pending-content{position:relative;z-index:2;text-align:center;display:flex;flex-direction:column;align-items:center;gap:14px;padding:0 20px}
.wbdl-root .wbdl-media-pending-note{font-family:var(--wbdl-mono);font-size:10.5px;letter-spacing:0.14em;text-transform:uppercase;color:rgba(255,255,255,0.5)}
.wbdl-root .wbdl-media-pending-mark{font-family:var(--wbdl-display);font-size:clamp(24px,4vw,40px);font-weight:500;color:rgba(255,255,255,0.92);letter-spacing:0.01em}
.wbdl-root .wbdl-media-pending-loc{font-family:var(--wbdl-mono);font-size:11px;letter-spacing:0.1em;color:rgba(255,255,255,0.4)}

/* ==========================================================================
   FROM LAND TO LEGACY — click-triggered stage navigation, CSS-only depth.
   No WebGL/canvas: the "panel" is a stack of four absolutely-positioned
   faces cross-fading on opacity, driven by a [data-active] attribute that
   the click handler below sets. Rail fill and active-face swap are pure
   CSS attribute selectors — the only thing JS does is set one attribute.
   ========================================================================== */
.wbdl-root .wbdl-journey{padding:calc(var(--wbdl-sec-pad)*0.5) var(--wbdl-edge) calc(var(--wbdl-sec-pad)*0.8);background:var(--wbdl-paper);position:relative}
.wbdl-root .wbdl-journey-inner{max-width:1400px;margin:0 auto}
.wbdl-root .wbdl-journey-grid{display:grid;grid-template-columns:1fr 1fr;gap:48px;align-items:center}
.wbdl-root .wbdl-journey-copy{max-width:640px}
.wbdl-root .wbdl-journey-copy h2{font-family:var(--wbdl-display);font-size:clamp(30px,4.4vw,48px);font-weight:520;margin-top:8px;color:var(--wbdl-ink)}
.wbdl-root .wbdl-journey-lead{font-size:16px;color:var(--wbdl-ink-warm);max-width:46ch;margin-top:18px;margin-bottom:24px}

.wbdl-root .wbdl-stage-rail{display:flex;flex-direction:column;gap:8px;position:relative;padding-left:28px;margin-top:18px}
.wbdl-root .wbdl-stage-rail::before{content:'';position:absolute;left:6px;top:6px;bottom:6px;width:1px;background:linear-gradient(180deg,rgba(12,13,16,0.1),rgba(12,13,16,0.04))}
.wbdl-root .wbdl-stage{display:flex;gap:14px;align-items:flex-start;padding:12px 10px;border-radius:6px;cursor:pointer;text-align:left;width:100%;transition:transform .3s var(--wbdl-ease),background-color .3s var(--wbdl-ease),box-shadow .3s var(--wbdl-ease)}
.wbdl-root .wbdl-stage-num{font-family:var(--wbdl-mono);font-size:12px;color:var(--wbdl-muted-deep);min-width:44px;transition:color .3s var(--wbdl-ease)}
.wbdl-root .wbdl-stage-heading{display:block;font-family:var(--wbdl-display);font-size:16px;margin:0;color:var(--wbdl-ink);font-weight:500;transition:color .3s var(--wbdl-ease)}
.wbdl-root .wbdl-stage-description{display:block;font-size:14px;color:var(--wbdl-muted-deep);margin:4px 0 0}
.wbdl-root .wbdl-stage.wbdl-active{background:rgba(176,78,48,0.06);box-shadow:inset 3px 0 0 var(--wbdl-brick)}
.wbdl-root .wbdl-stage.wbdl-active .wbdl-stage-num{color:var(--wbdl-brick);font-weight:700}
.wbdl-root .wbdl-stage.wbdl-active .wbdl-stage-heading{color:var(--wbdl-brick)}
.wbdl-root .wbdl-stage:hover{transform:translateX(6px)}

.wbdl-root .wbdl-journey-panel{position:relative;aspect-ratio:4/3;border-radius:var(--wbdl-radius-md);overflow:hidden;border:1px solid var(--wbdl-line-light);box-shadow:0 30px 60px -24px rgba(12,13,16,0.18);background:linear-gradient(155deg,var(--wbdl-paper-dim) 0%,#e9e6e0 100%)}
.wbdl-root .wbdl-panel-face{position:absolute;inset:0;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:18px;opacity:0;transition:opacity .5s var(--wbdl-ease);padding:32px}
.wbdl-root .wbdl-journey[data-active="1"] .wbdl-panel-face[data-face="1"],
.wbdl-root .wbdl-journey[data-active="2"] .wbdl-panel-face[data-face="2"],
.wbdl-root .wbdl-journey[data-active="3"] .wbdl-panel-face[data-face="3"],
.wbdl-root .wbdl-journey[data-active="4"] .wbdl-panel-face[data-face="4"]{opacity:1}
.wbdl-root .wbdl-panel-icon{width:44px;height:44px}
.wbdl-root .wbdl-panel-icon svg{width:100%;height:100%}
.wbdl-root .wbdl-panel-icon path,.wbdl-root .wbdl-panel-icon circle,.wbdl-root .wbdl-panel-icon line{stroke:var(--wbdl-brick);fill:none;stroke-width:1.2;vector-effect:non-scaling-stroke;stroke-linecap:round;stroke-linejoin:round}
.wbdl-root .wbdl-panel-num{font-family:var(--wbdl-display);font-size:clamp(36px,5vw,52px);font-weight:520;color:var(--wbdl-ink);letter-spacing:-0.02em;line-height:1}
.wbdl-root .wbdl-panel-name{font-family:var(--wbdl-mono);font-size:12px;letter-spacing:0.22em;text-transform:uppercase;color:var(--wbdl-muted-deep)}
.wbdl-root .wbdl-journey-rail{position:absolute;left:32px;right:32px;bottom:28px;display:flex;gap:6px}
.wbdl-root .wbdl-rail-seg{flex:1;height:3px;background:rgba(12,13,16,0.1);border-radius:2px;transition:background-color .4s var(--wbdl-ease)}
.wbdl-root .wbdl-journey[data-active="1"] .wbdl-rail-seg:nth-child(-n+1){background:var(--wbdl-brick)}
.wbdl-root .wbdl-journey[data-active="2"] .wbdl-rail-seg:nth-child(-n+2){background:var(--wbdl-brick)}
.wbdl-root .wbdl-journey[data-active="3"] .wbdl-rail-seg:nth-child(-n+3){background:var(--wbdl-brick)}
.wbdl-root .wbdl-journey[data-active="4"] .wbdl-rail-seg:nth-child(-n+4){background:var(--wbdl-brick)}

@media (max-width:900px){
  .wbdl-root .wbdl-journey-grid{grid-template-columns:1fr;gap:28px}
  .wbdl-root .wbdl-journey-panel{order:-1;aspect-ratio:16/10}
}

/* ==========================================================================
   ABOUT
   ========================================================================== */
.wbdl-root .wbdl-about{padding:calc(var(--wbdl-sec-pad)*0.6) var(--wbdl-edge) var(--wbdl-sec-pad);background:var(--wbdl-paper);position:relative}
.wbdl-root .wbdl-about-grid{display:grid;grid-template-columns:0.85fr 1.35fr;gap:60px;max-width:1400px;margin:0 auto}
.wbdl-root .wbdl-about h2{font-family:var(--wbdl-display);font-size:clamp(28px,3.6vw,44px);font-weight:460;margin-top:22px;color:var(--wbdl-ink)}
.wbdl-root .wbdl-about-body p{font-size:16px;color:var(--wbdl-ink-warm);font-weight:400;margin-bottom:20px;max-width:58ch}
.wbdl-root .wbdl-placeholder-note{font-family:var(--wbdl-mono);font-size:11.5px;color:var(--wbdl-brick-deep);background:rgba(171,74,45,0.07);border:1px dashed rgba(171,74,45,0.35);padding:11px 15px;display:inline-block;margin-top:6px;letter-spacing:0.02em;border-radius:6px}

/* ==========================================================================
   CONTACT
   ========================================================================== */
.wbdl-root .wbdl-contact{background:var(--wbdl-ink);color:var(--wbdl-paper);padding:calc(var(--wbdl-sec-pad)*0.6) var(--wbdl-edge) var(--wbdl-sec-pad);position:relative}
.wbdl-root .wbdl-contact-grid{display:grid;grid-template-columns:1fr 1fr;gap:60px;align-items:start;max-width:1400px;margin:0 auto}
.wbdl-root .wbdl-contact h2{font-family:var(--wbdl-display);font-size:clamp(34px,5.4vw,78px);font-weight:460;color:var(--wbdl-paper);max-width:11ch;margin-top:20px}
.wbdl-root .wbdl-contact-sub{color:var(--wbdl-muted-dark);font-weight:400;margin-top:18px;max-width:40ch;font-size:15px}
.wbdl-root .wbdl-contact-form{display:flex;flex-direction:column;gap:16px}
.wbdl-root .wbdl-form-row{display:flex;flex-direction:column;gap:8px}
.wbdl-root .wbdl-form-row label{font-family:var(--wbdl-mono);font-size:10px;letter-spacing:0.09em;text-transform:uppercase;color:var(--wbdl-muted-dark-2)}
.wbdl-root .wbdl-form-row input,.wbdl-root .wbdl-form-row textarea{background:rgba(255,255,255,0.05);border:1px solid var(--wbdl-line-dark);border-radius:6px;padding:12px 14px;font-family:var(--wbdl-body);font-size:14px;color:var(--wbdl-paper);transition:border-color .3s var(--wbdl-ease),background .3s var(--wbdl-ease),box-shadow .3s var(--wbdl-ease);resize:vertical}
.wbdl-root .wbdl-form-row input::placeholder,.wbdl-root .wbdl-form-row textarea::placeholder{color:var(--wbdl-muted-dark-2)}
.wbdl-root .wbdl-form-row input:focus,.wbdl-root .wbdl-form-row textarea:focus{outline:none;border-color:var(--wbdl-brick);background:rgba(255,255,255,0.08);box-shadow:0 0 0 3px rgba(176,78,48,0.18)}
.wbdl-root .wbdl-form-pills{display:flex;gap:10px;flex-wrap:wrap;margin-top:2px}
.wbdl-root .wbdl-pill-select{font-family:var(--wbdl-mono);font-size:10.5px;letter-spacing:0.04em;text-transform:uppercase;border:1px solid var(--wbdl-line-dark);color:var(--wbdl-muted-dark);padding:9px 14px;border-radius:var(--wbdl-radius-pill);transition:border-color .3s var(--wbdl-ease),color .3s var(--wbdl-ease),background-color .3s var(--wbdl-ease);cursor:pointer;background:transparent}
.wbdl-root .wbdl-pill-select:hover{border-color:var(--wbdl-brick);color:var(--wbdl-paper)}
.wbdl-root .wbdl-pill-select.wbdl-active{background:var(--wbdl-brick);border-color:var(--wbdl-brick);color:var(--wbdl-paper)}
.wbdl-root .wbdl-form-submit{align-self:flex-start;margin-top:6px}
.wbdl-root .wbdl-form-note{font-family:var(--wbdl-mono);font-size:10.5px;color:var(--wbdl-muted-dark-2);min-height:18px}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.wbdl-root .wbdl-footer{background:var(--wbdl-ink);color:var(--wbdl-paper);padding:46px var(--wbdl-edge) 30px;border-top:1px solid var(--wbdl-line-dark);position:relative}
.wbdl-root .wbdl-footer-top{display:flex;justify-content:space-between;gap:40px;flex-wrap:wrap;padding-bottom:36px;max-width:1400px;margin:0 auto}
.wbdl-root .wbdl-footer-logo{font-family:var(--wbdl-display);font-size:20px;font-weight:500}
.wbdl-root .wbdl-footer-logo span{display:block;font-family:var(--wbdl-mono);font-size:10px;letter-spacing:0.06em;color:var(--wbdl-muted-dark);margin-top:7px;text-transform:uppercase}
.wbdl-root .wbdl-footer-links{display:flex;gap:64px;flex-wrap:wrap}
.wbdl-root .wbdl-footer-col{display:flex;flex-direction:column;gap:11px}
.wbdl-root .wbdl-footer-col span{font-family:var(--wbdl-mono);font-size:10px;letter-spacing:0.08em;text-transform:uppercase;color:var(--wbdl-muted-dark-2);margin-bottom:5px;display:block}
.wbdl-root .wbdl-footer-col a{font-size:13.5px;color:rgba(255,255,255,0.78);transition:color .3s}
.wbdl-root .wbdl-footer-col a:hover{color:var(--wbdl-glow)}
.wbdl-root .wbdl-footer-bottom{display:flex;justify-content:space-between;padding-top:22px;border-top:1px solid var(--wbdl-line-dark);font-family:var(--wbdl-mono);font-size:10.5px;letter-spacing:0.03em;color:var(--wbdl-muted-dark-2);flex-wrap:wrap;gap:10px;max-width:1400px;margin:0 auto}

/* ==========================================================================
   REVEAL-ON-VIEW — one-shot fade when an element enters the viewport
   (IntersectionObserver unobserves after firing once). Not scroll-linked:
   it's a single on/off trigger, not a value tied to scroll position.
   ========================================================================== */
.wbdl-root .wbdl-reveal{opacity:0;transform:translateY(28px);transition:opacity .9s var(--wbdl-ease),transform .9s var(--wbdl-ease)}
.wbdl-root .wbdl-reveal.wbdl-in{opacity:1;transform:translateY(0)}
.wbdl-root .wbdl-reveal-mask{overflow:hidden}
.wbdl-root .wbdl-reveal-mask .wbdl-reveal-inner{clip-path:inset(0 0 100% 0);transition:clip-path 1.05s var(--wbdl-ease)}
.wbdl-root .wbdl-reveal-mask.wbdl-in .wbdl-reveal-inner{clip-path:inset(0 0 0% 0)}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width:900px){
  .wbdl-root .wbdl-nav,.wbdl-root .wbdl-nav-cta{display:none}
  .wbdl-root .wbdl-menu-toggle{display:flex}
  .wbdl-root .wbdl-header-inner{padding:9px 9px 9px 18px}
  .wbdl-root .wbdl-hero{--wbdl-hero-media-gap:clamp(40px,10vw,48px);align-items:flex-end;height:100svh;min-height:640px}
  .wbdl-root .wbdl-hero-bg-layer{top:calc(var(--wbdl-header-clearance,92px) + var(--wbdl-hero-media-gap));bottom:auto;height:calc(100% - var(--wbdl-header-clearance,92px) - var(--wbdl-hero-media-gap));overflow:hidden}
  .wbdl-root .wbdl-hero-bg-layer img{object-position:50% 0}
  .wbdl-root .wbdl-hero-copy .wbdl-eyebrow,.wbdl-root .wbdl-hero-copy .wbdl-hero-headline,.wbdl-root .wbdl-hero-copy .wbdl-hero-sub{text-shadow:0 1px 4px rgba(255,255,255,0.95),0 3px 22px rgba(255,255,255,0.85)}
  .wbdl-root .wbdl-hero-inner{padding-top:0;padding-bottom:60px}
  .wbdl-root .wbdl-hero-copy{max-width:none}
  .wbdl-root .wbdl-hero-headline{max-width:14ch}
  .wbdl-root .wbdl-hero-meta{position:static;width:100%;margin-top:36px;padding:0 var(--wbdl-edge);flex-direction:column;align-items:flex-start;gap:18px}
  .wbdl-root .wbdl-hero-slider-controls{margin-top:30px;flex-wrap:wrap}
  .wbdl-root .wbdl-hero-arrow{width:40px;height:40px}
  .wbdl-root .wbdl-about-grid,.wbdl-root .wbdl-contact-grid{grid-template-columns:1fr}
  .wbdl-root .wbdl-project-head{grid-template-columns:56px 1fr}
  .wbdl-root .wbdl-media-detail{width:min(260px,52%)}
  .wbdl-root .wbdl-project-media{padding-bottom:12%}
}
@media (max-width:560px){
  .wbdl-root .wbdl-media-detail{width:58%;left:16px}
  .wbdl-root .wbdl-project-media{padding-bottom:14%}
  .wbdl-root .wbdl-footer-bottom{flex-direction:column}
  .wbdl-root .wbdl-hero-slider-nav{order:2}
  .wbdl-root .wbdl-hero-dots{order:1}
  .wbdl-root .wbdl-hero-slider-controls{gap:16px}
}

/* ========================================================================== 
   WORDPRESS, ARCHIVES, SINGLE PROJECTS, GALLERIES
   ========================================================================== */
html{scroll-behavior:smooth}
body{margin:0;background:#fff}
.admin-bar .wbdl-root .wbdl-header{top:32px}
.wbdl-root .wbdl-nav ul,.wbdl-root .wbdl-mobile-nav ul{display:flex;gap:32px;align-items:center;list-style:none;margin:0;padding:0}
.wbdl-root .wbdl-mobile-nav ul{flex-direction:column;align-items:flex-start;gap:20px}
.wbdl-root .wbdl-logo .custom-logo{height:24px;width:auto}
.wbdl-root .wbdl-project-media video,.wbdl-root .wbdl-media-main video{display:block;width:100%;height:100%;object-fit:cover;background:var(--wbdl-ink)}
.wbdl-root .wbdl-project-actions{display:flex;align-items:center;gap:24px;flex-wrap:wrap}
.wbdl-root .wbdl-projects-end{padding:0 var(--wbdl-edge) calc(var(--wbdl-sec-pad)*.65);background:var(--wbdl-paper)}
.wbdl-root .wbdl-projects-end-inner{max-width:1400px;margin:0 auto;padding-top:8px;display:flex;justify-content:flex-end}
.wbdl-root .wbdl-cta.wbdl-outline{background:transparent;color:var(--wbdl-ink);border-color:var(--wbdl-line-light)}
.wbdl-root .wbdl-cta.wbdl-outline:hover{background:var(--wbdl-ink);border-color:var(--wbdl-ink);color:var(--wbdl-paper);transform:translateY(-2px)}
.wbdl-root .wbdl-empty-state{max-width:1400px;margin:0 auto;padding:36px var(--wbdl-edge) calc(var(--wbdl-sec-pad)*.6);color:var(--wbdl-ink-warm)}

.wbdl-root .wbdl-archive-hero{padding:clamp(150px,18vw,230px) var(--wbdl-edge) clamp(70px,9vw,120px);background:linear-gradient(145deg,var(--wbdl-paper) 0%,var(--wbdl-paper-dim) 100%);border-bottom:1px solid var(--wbdl-line-light)}
.wbdl-root .wbdl-archive-hero-inner{max-width:1400px;margin:0 auto}
.wbdl-root .wbdl-archive-hero h1{font-family:var(--wbdl-display);font-size:clamp(54px,9vw,132px);line-height:.9;letter-spacing:-.035em;font-weight:480;margin:24px 0;color:var(--wbdl-ink)}
.wbdl-root .wbdl-archive-lead{max-width:54ch;color:var(--wbdl-ink-warm);font-size:clamp(16px,2vw,20px)}
.wbdl-root .wbdl-project-grid{max-width:1400px;margin:0 auto;padding:var(--wbdl-sec-pad) var(--wbdl-edge);display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:clamp(24px,4vw,56px)}
.wbdl-root .wbdl-project-card{display:flex;flex-direction:column;min-width:0}
.wbdl-root .wbdl-project-card-media{display:block;position:relative;aspect-ratio:16/10;overflow:hidden;border:1px solid var(--wbdl-line-light);border-radius:var(--wbdl-radius-sm);background:var(--wbdl-paper-dim)}
.wbdl-root .wbdl-project-card-media img,.wbdl-root .wbdl-project-card-media video{width:100%;height:100%;object-fit:cover;transition:transform 1.1s var(--wbdl-ease)}
.wbdl-root .wbdl-project-card:hover .wbdl-project-card-media img,.wbdl-root .wbdl-project-card:hover .wbdl-project-card-media video{transform:scale(1.035)}
.wbdl-root .wbdl-project-card-copy{padding:24px 2px 0}
.wbdl-root .wbdl-project-card-meta{display:flex;gap:10px;flex-wrap:wrap;margin-bottom:16px}
.wbdl-root .wbdl-project-card h2{font-family:var(--wbdl-display);font-size:clamp(28px,4vw,44px);line-height:1.04;font-weight:500;margin:0}
.wbdl-root .wbdl-project-card h2 a{transition:color .3s var(--wbdl-ease)}
.wbdl-root .wbdl-project-card h2 a:hover{color:var(--wbdl-brick)}
.wbdl-root .wbdl-project-card p{color:var(--wbdl-ink-warm);font-size:14.5px;margin:16px 0 20px;max-width:52ch}

.wbdl-root .wbdl-single-hero{position:relative;min-height:min(840px,92svh);display:flex;align-items:flex-end;overflow:hidden;background:var(--wbdl-ink)}
.wbdl-root .wbdl-single-hero-media{position:absolute;inset:0}
.wbdl-root .wbdl-single-hero-media::after{content:'';position:absolute;inset:0;background:linear-gradient(180deg,rgba(12,13,16,.06) 10%,rgba(12,13,16,.78) 100%)}
.wbdl-root .wbdl-single-hero-media img{width:100%;height:100%;object-fit:cover}
.wbdl-root .wbdl-single-hero-media>.wbdl-media-pending{height:100%;aspect-ratio:auto}
.wbdl-root .wbdl-single-hero-copy{position:relative;z-index:2;width:100%;max-width:1400px;margin:0 auto;padding:180px var(--wbdl-edge) clamp(64px,8vw,110px);color:var(--wbdl-paper)}
.wbdl-root .wbdl-single-hero-copy .wbdl-eyebrow{color:rgba(255,255,255,.72)}
.wbdl-root .wbdl-single-hero h1{font-family:var(--wbdl-display);font-size:clamp(48px,8vw,112px);line-height:.92;letter-spacing:-.035em;font-weight:480;max-width:12ch;margin:26px 0}
.wbdl-root .wbdl-single-hero-location{font-family:var(--wbdl-mono);font-size:12px;letter-spacing:.08em;text-transform:uppercase;color:rgba(255,255,255,.7)}
.wbdl-root .wbdl-single-body{max-width:1400px;margin:0 auto;padding:var(--wbdl-sec-pad) var(--wbdl-edge)}
.wbdl-root .wbdl-single-intro{display:grid;grid-template-columns:minmax(220px,.7fr) minmax(0,1.3fr);gap:clamp(36px,7vw,110px);align-items:start}
.wbdl-root .wbdl-single-intro h2,.wbdl-root .wbdl-map-copy h2,.wbdl-root .wbdl-related h2{font-family:var(--wbdl-display);font-weight:480;font-size:clamp(34px,5vw,62px);line-height:1.02;margin:18px 0}
.wbdl-root .wbdl-project-content{color:var(--wbdl-ink-warm);font-size:clamp(16px,1.8vw,19px);line-height:1.75}
.wbdl-root .wbdl-project-content>p:first-child{margin-top:0}
.wbdl-root .wbdl-single-actions{display:flex;gap:16px;flex-wrap:wrap;margin-top:34px}

.wbdl-root .wbdl-gallery-section{padding:0 var(--wbdl-edge) var(--wbdl-sec-pad)}
.wbdl-root .wbdl-gallery-inner{max-width:1400px;margin:0 auto}
.wbdl-root .wbdl-gallery-head{display:flex;align-items:end;justify-content:space-between;gap:24px;margin-bottom:32px;border-top:1px solid var(--wbdl-line-light);padding-top:34px}
.wbdl-root .wbdl-gallery-head h2{font-family:var(--wbdl-display);font-size:clamp(34px,5vw,58px);font-weight:480;margin:0}
.wbdl-root .wbdl-gallery-count{font-family:var(--wbdl-mono);font-size:11px;color:var(--wbdl-muted-deep);letter-spacing:.08em;text-transform:uppercase}
.wbdl-root .wbdl-gallery{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:16px}
.wbdl-root .wbdl-gallery[data-count="1"]{grid-template-columns:1fr}
.wbdl-root .wbdl-gallery-item{position:relative;min-width:0;aspect-ratio:16/10;overflow:hidden;border-radius:var(--wbdl-radius-sm);background:var(--wbdl-paper-dim);border:1px solid var(--wbdl-line-light);cursor:zoom-in}
.wbdl-root .wbdl-gallery[data-count="1"] .wbdl-gallery-item{aspect-ratio:16/9}
.wbdl-root .wbdl-gallery-item:nth-child(3n+1):not(:first-child){grid-column:1/-1;aspect-ratio:16/8}
.wbdl-root .wbdl-gallery-item img,.wbdl-root .wbdl-gallery-item video{width:100%;height:100%;display:block;object-fit:cover;transition:transform 1.05s var(--wbdl-ease)}
.wbdl-root .wbdl-gallery-item:hover img,.wbdl-root .wbdl-gallery-item:hover video{transform:scale(1.025)}
.wbdl-root .wbdl-gallery-play{position:absolute;left:20px;bottom:20px;width:52px;height:52px;border-radius:50%;display:grid;place-items:center;background:rgba(255,255,255,.86);backdrop-filter:blur(14px);color:var(--wbdl-ink);box-shadow:0 12px 32px rgba(12,13,16,.18)}
.wbdl-root .wbdl-gallery-button{position:absolute;inset:0;width:100%;height:100%;z-index:2}

.wbdl-root .wbdl-map-section{padding:0 var(--wbdl-edge) var(--wbdl-sec-pad)}
.wbdl-root .wbdl-map-inner{max-width:1400px;margin:0 auto;display:grid;grid-template-columns:.75fr 1.25fr;gap:clamp(30px,5vw,70px);align-items:center;background:var(--wbdl-paper-dim);border:1px solid var(--wbdl-line-light);padding:clamp(24px,4vw,56px);border-radius:var(--wbdl-radius-md)}
.wbdl-root .wbdl-map-address{color:var(--wbdl-ink-warm);margin:14px 0 28px}
.wbdl-root .wbdl-map-actions{display:flex;gap:12px;flex-wrap:wrap}
.wbdl-root .wbdl-map-frame{aspect-ratio:16/10;border-radius:var(--wbdl-radius-sm);overflow:hidden;background:#deddd8}
.wbdl-root .wbdl-map-frame iframe{width:100%;height:100%;border:0;display:block}
.wbdl-root .wbdl-related{padding:0 var(--wbdl-edge) var(--wbdl-sec-pad)}
.wbdl-root .wbdl-related-inner{max-width:1400px;margin:0 auto;border-top:1px solid var(--wbdl-line-light);padding-top:40px}
.wbdl-root .wbdl-related-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:24px;margin-top:30px}
.wbdl-root .wbdl-related-grid .wbdl-project-card h2{font-size:clamp(24px,3vw,34px)}

.wbdl-root .wbdl-contact-details{display:flex;flex-direction:column;align-items:flex-start;gap:8px;margin-top:28px}
.wbdl-root .wbdl-contact-details a{color:rgba(255,255,255,.82);border-bottom:1px solid transparent;transition:color .3s,border-color .3s}
.wbdl-root .wbdl-contact-details a:hover{color:var(--wbdl-glow);border-color:var(--wbdl-glow)}
.wbdl-root .wbdl-social-links{display:flex;gap:14px;flex-wrap:wrap;margin-top:20px}
.wbdl-root .wbdl-social-links a{font-family:var(--wbdl-mono);font-size:10px;letter-spacing:.08em;text-transform:uppercase;color:var(--wbdl-muted-dark);transition:color .3s}
.wbdl-root .wbdl-social-links a:hover{color:var(--wbdl-glow)}
.wbdl-root .wbdl-form-message{padding:12px 14px;border-radius:6px;font-size:13px;margin-bottom:4px}
.wbdl-root .wbdl-form-message--success{background:rgba(87,99,74,.28);border:1px solid rgba(172,195,148,.35);color:#dbe9cc}
.wbdl-root .wbdl-form-message--error{background:rgba(176,78,48,.18);border:1px solid rgba(217,138,79,.35);color:#ffd7c8}
.wbdl-root .wbdl-honeypot{position:absolute!important;left:-10000px!important;width:1px!important;height:1px!important;overflow:hidden!important}
.wbdl-root .wbdl-content-page{max-width:900px;margin:0 auto;padding:clamp(150px,18vw,220px) var(--wbdl-edge) var(--wbdl-sec-pad)}
.wbdl-root .wbdl-content-page h1{font-family:var(--wbdl-display);font-size:clamp(48px,8vw,84px);font-weight:480;line-height:1;margin:0 0 36px}
.wbdl-root .wbdl-content-page-content{font-size:17px;color:var(--wbdl-ink-warm);line-height:1.75}

.wbdl-root .wbdl-lightbox{width:min(94vw,1320px);height:min(92svh,900px);padding:0;border:0;background:transparent;color:#fff;overflow:visible}
.wbdl-root .wbdl-lightbox::backdrop{background:rgba(5,6,8,.92);backdrop-filter:blur(8px)}
.wbdl-root .wbdl-lightbox-stage{width:100%;height:100%;display:grid;place-items:center}
.wbdl-root .wbdl-lightbox-stage img,.wbdl-root .wbdl-lightbox-stage video{max-width:100%;max-height:100%;width:auto;height:auto;object-fit:contain;box-shadow:0 30px 80px rgba(0,0,0,.45)}
.wbdl-root .wbdl-lightbox-close,.wbdl-root .wbdl-lightbox-prev,.wbdl-root .wbdl-lightbox-next{position:absolute;z-index:3;border:1px solid rgba(255,255,255,.25);background:rgba(12,13,16,.58);color:#fff;border-radius:50%;display:grid;place-items:center;backdrop-filter:blur(12px)}
.wbdl-root .wbdl-lightbox-close{right:0;top:-52px;width:42px;height:42px;font-size:24px}
.wbdl-root .wbdl-lightbox-prev,.wbdl-root .wbdl-lightbox-next{top:50%;transform:translateY(-50%);width:48px;height:48px;font-size:22px}
.wbdl-root .wbdl-lightbox-prev{left:18px}.wbdl-root .wbdl-lightbox-next{right:18px}
.wbdl-root .wbdl-lightbox-caption{position:absolute;left:0;bottom:-38px;font-family:var(--wbdl-mono);font-size:11px;color:rgba(255,255,255,.66)}

@media (max-width:782px){.admin-bar .wbdl-root .wbdl-header{top:46px}}
@media (max-width:760px){
  .wbdl-root .wbdl-project-grid{grid-template-columns:1fr}
  .wbdl-root .wbdl-single-intro,.wbdl-root .wbdl-map-inner{grid-template-columns:1fr}
  .wbdl-root .wbdl-gallery{grid-template-columns:1fr}
  .wbdl-root .wbdl-gallery-item,.wbdl-root .wbdl-gallery-item:nth-child(3n+1):not(:first-child){grid-column:auto;aspect-ratio:4/3}
  .wbdl-root .wbdl-related-grid{grid-template-columns:1fr}
  .wbdl-root .wbdl-lightbox-prev{left:8px}.wbdl-root .wbdl-lightbox-next{right:8px}
}

/* ========================================================================== 
   MOTION — full prefers-reduced-motion support. This is the only
   !important in the file: it's a blanket accessibility override that must
   beat every component-level transition-duration declared above it, which
   is exactly the standard pattern for this rule (not a specificity
   shortcut against a competing author's CSS).
   ========================================================================== */
@media (prefers-reduced-motion:reduce){
  .wbdl-root *{animation-duration:0.01ms!important;animation-iteration-count:1!important;transition-duration:0.01ms!important}
}
