/* whitedog-design.com | Digital Design Agency | Volastra SP, Liguria Italy | EUR | EN/IT
   Vivid Yellow #FFE500 + Near-Black #131313 (ALL NEW! First vivid yellow palette!)
   Gloock (FIRST USE! elegant Roman serif) + Instrument Sans (FIRST USE! geometric)
   wdd- CSS prefix | WDD JS | $wdd PHP
   ANIMATED STICKY NAV (transparent => solid on scroll, FIRST in 40-site series!)
   EDITORIAL SPLIT HERO | MARQUEE CLIENT TICKER (FIRST continuous scroll!)
   ACCORDION SERVICES (FIRST accordion for services!) | MASONRY PORTFOLIO
   ZIGZAG PROCESS (FIRST alternating L-R!) | 2-COL BORDERED TESTIMONIALS
   DARK FEATURED CARD PRICING (FIRST dark featured card!) | MINIMAL LINE FAQ
   FULL-WIDTH CTA IMAGE BANNER | Behance (FIRST!) + Instagram + LinkedIn */
@import url('https://fonts.googleapis.com/css2?family=Gloock&family=Instrument+Sans:wght@400;500;600;700&display=swap');

:root {
  --wdd-bg:      #FAFAF7;  --wdd-surf:    #F4F4F1;  --wdd-surf2:   #EEEEE9;
  --wdd-border:  #E0DFD9;  --wdd-borderL: #D0CFC8;
  --wdd-stone:   #9A9A94;  --wdd-mid:     #6A6A64;
  --wdd-dark:    #1E1E1B;  --wdd-ink:     #131313;
  --wdd-yellow:  #FFE500;  --wdd-yellow2: #D4BF00;
  --wdd-yT:      rgba(255,229,0,.16);  --wdd-yT2: rgba(255,229,0,.07);
  --wdd-white:   #FFFFFF;
  --wdd-max:     1180px;
  --wdd-fh:      'Gloock', Georgia, serif;
  --wdd-fb:      'Instrument Sans', system-ui, sans-serif;
  --wdd-r:4px;  --wdd-r2:8px;  --wdd-r3:14px;  --wdd-r4:20px;
  --wdd-ease:    all .2s cubic-bezier(.4,0,.2,1);
  --wdd-sh:      0 2px 20px rgba(19,19,19,.06);
  --wdd-sh2:     0 20px 60px rgba(19,19,19,.12);
}

*,*::before,*::after{box-sizing:border-box;margin:0;padding:0;}
html{scroll-behavior:smooth;}
body{background:var(--wdd-bg);color:var(--wdd-dark);font-family:var(--wdd-fb);font-size:.95rem;line-height:1.7;overflow-x:hidden;}
img{display:block;max-width:100%;}a{color:inherit;text-decoration:none;}ul{list-style:none;}
button{font-family:inherit;cursor:pointer;border:none;background:none;}
input,textarea,select{font-family:inherit;}address{font-style:normal;}
h1{font-family:var(--wdd-fh);line-height:1.06;}
h2{font-family:var(--wdd-fh);font-size:clamp(1.8rem,3vw,3.2rem);font-weight:400;line-height:1.1;}
h3{font-family:var(--wdd-fh);font-size:1.15rem;font-weight:400;}
p{font-size:.9rem;line-height:1.78;color:var(--wdd-stone);}
em{font-style:italic;}

.wdd-wrap{max-width:var(--wdd-max);margin:0 auto;padding:0 2.5rem;}
.wdd-slab{padding:6rem 0;}
.wdd-eyebrow{font-family:var(--wdd-fb);font-size:.44rem;font-weight:600;text-transform:uppercase;letter-spacing:.28em;color:var(--wdd-stone);display:block;margin-bottom:.6rem;}
.wdd-ey-y{color:var(--wdd-yellow2);}

/* ═══════════════════════════════════════════════════════
   ANIMATED STICKY NAV (transparent => solid, FIRST in 40-site series!)
   ═══════════════════════════════════════════════════════ */
.wdd-nav{position:fixed;top:0;left:0;right:0;z-index:200;height:70px;display:flex;align-items:center;transition:background .3s,border-color .3s,box-shadow .3s;}
.wdd-nav.wdd-ns{background:var(--wdd-bg);border-bottom:1.5px solid var(--wdd-border);box-shadow:var(--wdd-sh);}
.wdd-nav-in{max-width:var(--wdd-max);margin:0 auto;padding:0 2.5rem;width:100%;display:flex;align-items:center;}
/* BIGGER logo: 1.9rem Gloock */
.wdd-logo{font-family:var(--wdd-fh);font-size:1.9rem;font-weight:400;color:var(--wdd-ink);letter-spacing:-.01em;flex-shrink:0;}
.wdd-logo em{font-style:normal;background:var(--wdd-yellow);padding:0 .2em;}
.wdd-nav-center{display:flex;align-items:center;gap:0;flex:1;justify-content:center;}
/* Nav links: 1.06rem Instrument Sans 600 (bigger than body .95rem) */
.wdd-nl{font-family:var(--wdd-fb);font-size:1.06rem;font-weight:600;color:var(--wdd-mid);padding:.3rem .65rem;transition:color .14s;white-space:nowrap;position:relative;}
.wdd-nl::after{content:'';position:absolute;bottom:0;left:.65rem;right:.65rem;height:1.5px;background:var(--wdd-yellow);transform:scaleX(0);transition:transform .2s;}
.wdd-nl:hover{color:var(--wdd-ink);}
.wdd-nl:hover::after,.wdd-nl.wdd-active::after{transform:scaleX(1);}
.wdd-nl.wdd-active{color:var(--wdd-ink);}
.wdd-nav-end{display:flex;align-items:center;gap:.5rem;flex-shrink:0;}
.wdd-nav-cta{font-family:var(--wdd-fb);font-size:.94rem;font-weight:700;color:var(--wdd-ink);background:var(--wdd-yellow);padding:.38rem 1.1rem;border-radius:var(--wdd-r);transition:var(--wdd-ease);border:none;cursor:pointer;white-space:nowrap;}
.wdd-nav-cta:hover{background:var(--wdd-yellow2);}
.wdd-nav-lang{display:flex;align-items:center;gap:.25rem;margin-right:.3rem;}
.wdd-la{font-family:var(--wdd-fb);font-size:.46rem;font-weight:700;text-transform:uppercase;letter-spacing:.1em;color:var(--wdd-stone);cursor:pointer;transition:color .14s;}
.wdd-la:hover,.wdd-la.wdd-lon{color:var(--wdd-yellow2);}
.wdd-la-sep{color:var(--wdd-border);}
.wdd-mob-btn{display:none;color:var(--wdd-ink);padding:.3rem;}
/* Mobile overlay */
.wdd-mob-ovl{position:fixed;inset:0;background:var(--wdd-bg);z-index:500;opacity:0;pointer-events:none;transition:opacity .25s;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:1rem;}
.wdd-mob-ovl.wdd-mo-on{opacity:1;pointer-events:auto;}
.wdd-mob-cls{position:absolute;top:1.5rem;right:1.8rem;color:var(--wdd-stone);}
.wdd-mob-ml{font-family:var(--wdd-fh);font-size:2.6rem;font-weight:400;color:rgba(19,19,19,.08);transition:color .18s;}
.wdd-mob-ml:hover{color:var(--wdd-ink);}

/* ═══════════════════════════════════════════════════════
   EDITORIAL SPLIT HERO
   ═══════════════════════════════════════════════════════ */
.wdd-hero-zone{min-height:100vh;display:grid;grid-template-columns:1.1fr 1fr;background:var(--wdd-bg);}
.wdd-hero-left{padding:130px 5% 6rem 5%;display:flex;flex-direction:column;justify-content:center;}
.wdd-hero-ey{font-family:var(--wdd-fb);font-size:.46rem;font-weight:600;text-transform:uppercase;letter-spacing:.28em;color:var(--wdd-stone);display:block;margin-bottom:1.4rem;}
.wdd-hero-h1{font-family:var(--wdd-fh);font-size:clamp(2.8rem,5vw,5.5rem);color:var(--wdd-ink);margin-bottom:1.4rem;max-width:16ch;}
.wdd-hero-sub{font-size:.96rem;color:var(--wdd-mid);max-width:44ch;line-height:1.72;margin-bottom:2rem;}
.wdd-hero-meta{display:flex;gap:2.5rem;margin-bottom:2.5rem;}
.wdd-hm-val{font-family:var(--wdd-fh);font-size:1.6rem;font-weight:400;color:var(--wdd-ink);line-height:1;}
.wdd-hm-lbl{font-size:.68rem;color:var(--wdd-stone);}
.wdd-hero-act{display:flex;gap:.7rem;flex-wrap:wrap;}
.wdd-hero-right{background:var(--wdd-surf2);overflow:hidden;position:relative;}
.wdd-hero-right img{width:100%;height:100%;object-fit:cover;transition:transform .8s ease;}
.wdd-hero-right:hover img{transform:scale(1.02);}
/* Yellow accent element in hero */
.wdd-hero-accent{position:absolute;bottom:2.5rem;right:2.5rem;width:120px;height:120px;border-radius:50%;border:2px solid var(--wdd-yellow);opacity:.6;}

/* MARQUEE TICKER (FIRST continuous scroll in 40-site series!) */
.wdd-ticker-zone{background:var(--wdd-ink);padding:.9rem 0;overflow:hidden;border-top:2px solid var(--wdd-yellow);}
.wdd-ticker-outer{overflow:hidden;white-space:nowrap;}
.wdd-ticker-inner{display:inline-flex;align-items:center;gap:0;animation:wdd-marq 30s linear infinite;width:max-content;}
.wdd-ticker-zone:hover .wdd-ticker-inner{animation-play-state:paused;}
@keyframes wdd-marq{from{transform:translateX(0);}to{transform:translateX(-50%);}}
.wdd-ti-item{font-family:var(--wdd-fb);font-size:.78rem;font-weight:500;text-transform:uppercase;letter-spacing:.14em;color:rgba(255,255,255,.3);padding:0 1.8rem;flex-shrink:0;}
.wdd-ti-dot{color:var(--wdd-yellow);flex-shrink:0;font-size:.5rem;}

/* ACCORDION SERVICES (FIRST accordion for services!) */
.wdd-svc-zone{background:var(--wdd-bg);}
.wdd-acc{border-top:1.5px solid var(--wdd-border);margin-top:2.5rem;}
.wdd-acc-item{border-bottom:1.5px solid var(--wdd-border);}
.wdd-acc-hd{display:flex;align-items:center;gap:1.5rem;padding:1.4rem 0;cursor:pointer;width:100%;background:none;border:none;text-align:left;transition:var(--wdd-ease);}
.wdd-acc-hd:hover .wdd-acc-title{color:var(--wdd-ink);}
.wdd-acc-numb{font-family:var(--wdd-fb);font-size:.42rem;font-weight:700;text-transform:uppercase;letter-spacing:.22em;color:var(--wdd-stone);flex-shrink:0;width:2.5rem;}
.wdd-acc-ico{color:var(--wdd-stone);flex-shrink:0;transition:color .14s;}
.wdd-acc-hd:hover .wdd-acc-ico,.wdd-acc-item.wdd-open .wdd-acc-ico{color:var(--wdd-yellow2);}
.wdd-acc-title{font-family:var(--wdd-fh);font-size:clamp(1.2rem,2.5vw,1.7rem);color:var(--wdd-mid);flex:1;transition:color .14s;}
.wdd-acc-item.wdd-open .wdd-acc-title{color:var(--wdd-ink);}
.wdd-acc-arrow{font-family:var(--wdd-fb);font-size:1.4rem;font-weight:300;color:var(--wdd-stone);flex-shrink:0;transition:transform .3s,color .14s;line-height:1;}
.wdd-acc-item.wdd-open .wdd-acc-arrow{transform:rotate(45deg);color:var(--wdd-yellow2);}
.wdd-acc-body{max-height:0;overflow:hidden;transition:max-height .45s ease;}
.wdd-acc-item.wdd-open .wdd-acc-body{max-height:500px;}
.wdd-acc-inner{display:grid;grid-template-columns:1fr .9fr;gap:4rem;padding:0 0 2.5rem 4rem;align-items:start;}
.wdd-acc-info p{font-size:.88rem;line-height:1.78;margin-bottom:.8rem;}
.wdd-acc-feats{margin:.8rem 0;}
.wdd-acc-feat{display:flex;align-items:center;gap:.4rem;font-size:.78rem;color:var(--wdd-mid);margin-bottom:.3rem;}
.wdd-acc-feat svg{color:var(--wdd-yellow2);flex-shrink:0;}
.wdd-acc-pr{font-family:var(--wdd-fh);font-size:1.1rem;font-weight:400;color:var(--wdd-ink);margin:.8rem 0;}
.wdd-acc-img{border-radius:var(--wdd-r3);overflow:hidden;aspect-ratio:4/3;background:var(--wdd-surf2);}
.wdd-acc-img img{width:100%;height:100%;object-fit:cover;}

/* MASONRY PORTFOLIO (CSS columns) */
.wdd-port-zone{background:var(--wdd-surf);}
.wdd-port-cols{columns:3;column-gap:1.5rem;margin-top:2.5rem;}
.wdd-port-tile{break-inside:avoid;margin-bottom:1.5rem;border-radius:var(--wdd-r3);overflow:hidden;position:relative;cursor:pointer;background:var(--wdd-surf2);}
.wdd-port-tile img{width:100%;display:block;transition:transform .4s ease;}
.wdd-port-tile:hover img{transform:scale(1.04);}
.wdd-port-cap{position:absolute;inset:0;background:linear-gradient(to top,rgba(19,19,19,.8) 45%,transparent);display:flex;flex-direction:column;justify-content:flex-end;padding:1.2rem;opacity:0;transition:opacity .3s;}
.wdd-port-tile:hover .wdd-port-cap{opacity:1;}
.wdd-port-cat{font-family:var(--wdd-fb);font-size:.4rem;font-weight:600;text-transform:uppercase;letter-spacing:.18em;color:var(--wdd-yellow);margin-bottom:.3rem;}
.wdd-port-nm{font-family:var(--wdd-fh);font-size:1rem;color:white;}

/* ABOUT BAND */
.wdd-about-zone{background:var(--wdd-bg);}
.wdd-about-split{display:grid;grid-template-columns:1fr 1.1fr;gap:5rem;align-items:center;}
.wdd-about-img{border-radius:var(--wdd-r4);overflow:hidden;aspect-ratio:4/3;background:var(--wdd-surf2);}
.wdd-about-img img{width:100%;height:100%;object-fit:cover;}

/* ZIGZAG PROCESS (FIRST alternating left-right steps!) */
.wdd-proc-zone{background:var(--wdd-surf);}
.wdd-proc-track{margin-top:3rem;}
.wdd-zz-pair{display:grid;grid-template-columns:1fr 1fr;gap:5rem;align-items:center;margin-bottom:5rem;}
.wdd-zz-pair:last-child{margin-bottom:0;}
/* Even steps: reverse order */
.wdd-zz-pair:nth-child(even) .wdd-zz-img{order:2;}
.wdd-zz-pair:nth-child(even) .wdd-zz-text{order:1;}
.wdd-zz-img{border-radius:var(--wdd-r4);overflow:hidden;aspect-ratio:4/3;background:var(--wdd-surf2);}
.wdd-zz-img img{width:100%;height:100%;object-fit:cover;}
.wdd-zz-num{font-family:var(--wdd-fh);font-size:5rem;font-weight:400;color:rgba(19,19,19,.06);line-height:1;margin-bottom:.4rem;}
.wdd-zz-nm{font-family:var(--wdd-fh);font-size:1.5rem;font-weight:400;color:var(--wdd-ink);margin-bottom:.6rem;}
.wdd-zz-bl{font-size:.88rem;color:var(--wdd-mid);line-height:1.78;}

/* 2-COL BORDERED TESTIMONIALS (yellow left border) */
.wdd-testi-zone{background:var(--wdd-bg);}
.wdd-testi-grid{display:grid;grid-template-columns:1fr 1fr;gap:1.5rem;margin-top:2.5rem;}
.wdd-testi-card{border-left:4px solid var(--wdd-yellow);padding:2rem 1.8rem 1.8rem 2rem;background:var(--wdd-surf);}
.wdd-testi-card-full{border-left:none;border-top:4px solid var(--wdd-yellow);padding:2.5rem 3rem;grid-column:1/-1;text-align:center;background:var(--wdd-surf);}
.wdd-tc-q{font-family:var(--wdd-fh);font-size:1.05rem;font-weight:400;color:var(--wdd-dark);line-height:1.6;font-style:italic;margin-bottom:1.2rem;}
.wdd-tc-q-full{font-size:1.3rem;max-width:60ch;margin:0 auto 1.2rem;}
.wdd-tc-nm{font-family:var(--wdd-fb);font-size:.84rem;font-weight:700;color:var(--wdd-ink);}
.wdd-tc-rl{font-size:.72rem;color:var(--wdd-stone);}

/* DARK FEATURED CARD PRICING (FIRST dark featured card in series!) */
.wdd-price-zone{background:var(--wdd-surf);}
.wdd-price-trio{display:grid;grid-template-columns:1fr 1.1fr 1fr;gap:1.5rem;margin-top:2.5rem;}
.wdd-pkg-block{border:1.5px solid var(--wdd-border);border-radius:var(--wdd-r4);overflow:hidden;background:var(--wdd-bg);}
.wdd-pkg-block.wdd-pkg-star{border-color:var(--wdd-yellow);background:var(--wdd-ink);}
.wdd-pkg-top{padding:2rem 2rem 1.5rem;}
.wdd-pkg-tag{font-family:var(--wdd-fb);font-size:.4rem;font-weight:600;text-transform:uppercase;letter-spacing:.2em;color:var(--wdd-stone);margin-bottom:.5rem;}
.wdd-pkg-star .wdd-pkg-tag{color:var(--wdd-yellow);}
.wdd-pkg-nm{font-family:var(--wdd-fh);font-size:1.8rem;font-weight:400;color:var(--wdd-ink);margin-bottom:.5rem;}
.wdd-pkg-star .wdd-pkg-nm{color:white;}
.wdd-pkg-pr{font-family:var(--wdd-fh);font-size:2.5rem;font-weight:400;color:var(--wdd-ink);line-height:1;margin-bottom:.4rem;}
.wdd-pkg-star .wdd-pkg-pr{color:var(--wdd-yellow);}
.wdd-pkg-fr{font-family:var(--wdd-fb);font-size:.7rem;color:var(--wdd-stone);}
.wdd-pkg-star .wdd-pkg-fr{color:rgba(255,255,255,.3);}
.wdd-pkg-body{padding:0 2rem 2rem;}
.wdd-pkg-desc{font-size:.84rem;color:var(--wdd-stone);margin-bottom:.8rem;line-height:1.65;}
.wdd-pkg-star .wdd-pkg-desc{color:rgba(255,255,255,.3);}
.wdd-pkg-inc{display:flex;align-items:flex-start;gap:.4rem;font-size:.82rem;color:var(--wdd-mid);margin-bottom:.3rem;}
.wdd-pkg-inc svg{color:var(--wdd-yellow2);flex-shrink:0;margin-top:.07rem;}
.wdd-pkg-star .wdd-pkg-inc{color:rgba(255,255,255,.5);}
.wdd-pkg-star .wdd-pkg-inc svg{color:var(--wdd-yellow);}

/* MINIMAL LINE FAQ */
.wdd-faq-zone{background:var(--wdd-bg);}
.wdd-faq-list{max-width:800px;margin:2.5rem auto 0;}
.wdd-faq-item{border-bottom:1.5px solid var(--wdd-border);}
.wdd-faq-item:first-child{border-top:1.5px solid var(--wdd-border);}
.wdd-faq-hd{display:flex;align-items:center;justify-content:space-between;padding:1.2rem 0;cursor:pointer;font-family:var(--wdd-fb);font-size:.95rem;font-weight:600;color:var(--wdd-dark);background:none;border:none;width:100%;text-align:left;gap:1rem;transition:color .14s;}
.wdd-faq-hd:hover{color:var(--wdd-ink);}
.wdd-faq-icon{font-size:1.3rem;font-weight:300;color:var(--wdd-stone);flex-shrink:0;transition:transform .2s,color .14s;line-height:1;}
.wdd-faq-item.wdd-fq-on .wdd-faq-icon{transform:rotate(45deg);color:var(--wdd-yellow2);}
.wdd-faq-ans{max-height:0;overflow:hidden;transition:max-height .35s ease;}
.wdd-faq-item.wdd-fq-on .wdd-faq-ans{max-height:250px;}
.wdd-faq-ans-in{padding:0 0 1.2rem;font-size:.87rem;color:var(--wdd-mid);line-height:1.78;}

/* FULL-WIDTH CTA IMAGE BANNER */
.wdd-cta-band{position:relative;min-height:440px;display:flex;align-items:center;justify-content:center;text-align:center;overflow:hidden;}
.wdd-cta-bg-layer{position:absolute;inset:0;background:var(--wdd-ink);}
.wdd-cta-bg-layer img{width:100%;height:100%;object-fit:cover;opacity:.25;}
.wdd-cta-content{position:relative;z-index:1;max-width:700px;padding:5rem 2.5rem;}
.wdd-cta-h{font-family:var(--wdd-fh);font-size:clamp(2.5rem,6vw,5rem);color:white;line-height:1.08;margin-bottom:1.5rem;}
.wdd-cta-h em{font-style:italic;color:var(--wdd-yellow);}
.wdd-cta-sub{font-size:.96rem;color:rgba(255,255,255,.4);margin-bottom:2rem;}

/* SERVICE DETAIL */
.wdd-sdt{max-width:var(--wdd-max);margin:0 auto;padding:5rem 2.5rem;display:grid;grid-template-columns:1fr 250px;gap:4rem;align-items:start;}
.wdd-svc-aside{background:var(--wdd-ink);border-radius:var(--wdd-r3);overflow:hidden;position:sticky;top:5rem;}
.wdd-sas-top{padding:1.5rem;border-bottom:1px solid rgba(255,255,255,.08);}
.wdd-sas-from{font-family:var(--wdd-fb);font-size:.4rem;font-weight:600;text-transform:uppercase;letter-spacing:.2em;color:rgba(255,255,255,.2);margin-bottom:.3rem;}
.wdd-sas-pr{font-family:var(--wdd-fh);font-size:2.3rem;font-weight:400;color:var(--wdd-yellow);margin-bottom:.8rem;line-height:1;}
.wdd-sas-ol{font-family:var(--wdd-fb);font-size:.38rem;font-weight:600;text-transform:uppercase;letter-spacing:.22em;color:rgba(255,255,255,.15);padding:.8rem 1.4rem .4rem;}
.wdd-sas-lk{display:flex;align-items:center;gap:.5rem;font-size:.8rem;color:rgba(255,255,255,.18);padding:.42rem 1.4rem;border-top:1px solid rgba(255,255,255,.06);transition:color .14s;}
.wdd-sas-lk:hover,.wdd-sas-lk.wdd-active{color:var(--wdd-yellow);}

/* PAGE BANNER */
.wdd-pg-banner{background:var(--wdd-surf);border-bottom:1.5px solid var(--wdd-border);padding:9rem 0 5rem;}
.wdd-pg-banner-in{max-width:var(--wdd-max);margin:0 auto;padding:0 2.5rem;text-align:center;}
.wdd-pg-banner-in h1{font-family:var(--wdd-fh);font-size:clamp(2.5rem,6vw,5.5rem);font-weight:400;color:var(--wdd-ink);line-height:1.05;}
.wdd-pg-banner-in h1 em{font-style:italic;color:var(--wdd-yellow2);}
.wdd-pg-sub{font-size:.96rem;color:var(--wdd-stone);max-width:52ch;margin:.8rem auto 0;line-height:1.78;}

/* BUILDER */
.wdd-bld-wrap{max-width:var(--wdd-max);margin:0 auto;padding:4rem 2.5rem 8rem;display:grid;grid-template-columns:1fr 280px;gap:4rem;align-items:start;}
.wdd-bld-sec{margin-bottom:2rem;}
.wdd-bld-lbl{display:block;font-family:var(--wdd-fb);font-size:.44rem;font-weight:600;text-transform:uppercase;letter-spacing:.24em;color:var(--wdd-stone);margin-bottom:.9rem;}
.wdd-sel-row{background:var(--wdd-surf);border:1.5px solid var(--wdd-border);border-radius:var(--wdd-r2);padding:.75rem 1rem;display:flex;align-items:center;gap:.7rem;cursor:pointer;user-select:none;transition:var(--wdd-ease);margin-bottom:.4rem;}
.wdd-sel-row.wdd-sel-on{border-color:var(--wdd-yellow2);background:var(--wdd-yT2);}
.wdd-sel-dot{width:16px;height:16px;border:1.5px solid var(--wdd-border);border-radius:50%;flex-shrink:0;transition:var(--wdd-ease);}
.wdd-sel-row.wdd-sel-on .wdd-sel-dot{background:var(--wdd-yellow);border-color:var(--wdd-yellow);}
.wdd-sel-nm{font-size:.9rem;color:var(--wdd-stone);flex:1;}
.wdd-sel-row.wdd-sel-on .wdd-sel-nm{color:var(--wdd-dark);font-weight:500;}
.wdd-sel-pr{font-family:var(--wdd-fh);font-size:.9rem;font-weight:400;color:var(--wdd-dark);}
.wdd-adn-rack{display:flex;flex-wrap:wrap;gap:.5rem;}
.wdd-adn-chip{background:var(--wdd-surf);border:1.5px solid var(--wdd-border);border-radius:var(--wdd-r2);padding:.4rem .9rem;cursor:pointer;user-select:none;transition:var(--wdd-ease);}
.wdd-adn-chip.wdd-adn-on{border-color:var(--wdd-yellow2);background:var(--wdd-yT2);}
.wdd-adn-nm{font-size:.8rem;font-weight:500;color:var(--wdd-stone);}
.wdd-adn-chip.wdd-adn-on .wdd-adn-nm{color:var(--wdd-dark);}
.wdd-adn-pr{font-size:.68rem;color:var(--wdd-stone);}
.wdd-adn-chip.wdd-adn-on .wdd-adn-pr{color:var(--wdd-yellow2);}
.wdd-hrs-box{background:var(--wdd-surf);border:1.5px solid var(--wdd-border);border-radius:var(--wdd-r2);padding:1rem;}
.wdd-hrs-hd{display:flex;justify-content:space-between;margin-bottom:.5rem;}
.wdd-hrs-lbl{font-size:.88rem;color:var(--wdd-stone);}
.wdd-hrs-val{font-family:var(--wdd-fh);font-size:1.5rem;font-weight:400;color:var(--wdd-ink);}
.wdd-hrs-rng{-webkit-appearance:none;width:100%;height:2px;background:var(--wdd-border);border-radius:1px;cursor:pointer;}
.wdd-hrs-rng::-webkit-slider-thumb{-webkit-appearance:none;width:18px;height:18px;border-radius:50%;background:var(--wdd-ink);cursor:pointer;box-shadow:0 2px 8px rgba(255,229,0,.3);}
.wdd-rcpt{background:var(--wdd-ink);border-radius:var(--wdd-r3);overflow:hidden;position:sticky;top:5rem;}
.wdd-rcpt-hd{padding:.8rem 1.2rem;border-bottom:1px solid rgba(255,255,255,.08);}
.wdd-rcpt-hl{font-family:var(--wdd-fb);font-size:.4rem;font-weight:600;text-transform:uppercase;letter-spacing:.18em;color:rgba(255,255,255,.2);}
.wdd-rcpt-bd{padding:.9rem 1.2rem;}
.wdd-rcpt-ln{display:flex;justify-content:space-between;gap:.5rem;font-size:.8rem;margin-bottom:.35rem;}
.wdd-rcpt-lnm{color:rgba(255,255,255,.25);}
.wdd-rcpt-lnp{font-family:var(--wdd-fh);font-size:.95rem;font-weight:400;color:var(--wdd-yellow);}
.wdd-rcpt-sep{border:none;border-top:1px solid rgba(255,255,255,.07);margin:.4rem 1.2rem;}
.wdd-rcpt-tot{display:flex;justify-content:space-between;align-items:flex-end;padding:0 1.2rem .5rem;}
.wdd-rcpt-totl{font-family:var(--wdd-fb);font-size:.4rem;text-transform:uppercase;letter-spacing:.12em;color:rgba(255,255,255,.18);}
.wdd-rcpt-totv{font-family:var(--wdd-fh);font-size:2rem;font-weight:400;color:var(--wdd-yellow);}
.wdd-rcpt-ft{padding:.9rem 1.2rem;border-top:1px solid rgba(255,255,255,.07);}
.wdd-rcpt-go{display:block;width:100%;background:var(--wdd-yellow);color:var(--wdd-ink);font-family:var(--wdd-fb);font-size:.96rem;font-weight:700;padding:.72rem;border-radius:var(--wdd-r2);border:none;cursor:pointer;transition:background .14s;}
.wdd-rcpt-go:hover:not(:disabled){background:var(--wdd-yellow2);}
.wdd-rcpt-go:disabled{opacity:.2;cursor:not-allowed;}

/* CHECKOUT */
.wdd-co-wrap{max-width:var(--wdd-max);margin:0 auto;padding:5rem 2.5rem 8rem;display:grid;grid-template-columns:1fr 280px;gap:4rem;align-items:start;}
.wdd-co-side{position:sticky;top:5rem;background:var(--wdd-ink);border-radius:var(--wdd-r3);overflow:hidden;}
.wdd-co-hd{padding:.8rem 1.2rem;border-bottom:1px solid rgba(255,255,255,.08);}
.wdd-co-hl{font-family:var(--wdd-fb);font-size:.4rem;font-weight:600;text-transform:uppercase;letter-spacing:.18em;color:rgba(255,255,255,.2);}
.wdd-co-bd{padding:.9rem 1.2rem;}
.wdd-co-ln{display:flex;justify-content:space-between;gap:.5rem;font-size:.8rem;margin-bottom:.35rem;}
.wdd-co-lnm{color:rgba(255,255,255,.25);}
.wdd-co-lnp{font-family:var(--wdd-fh);font-size:.95rem;font-weight:400;color:var(--wdd-yellow);}
.wdd-co-sep{border:none;border-top:1px solid rgba(255,255,255,.07);margin:.4rem 1.2rem;}
.wdd-co-tot{display:flex;justify-content:space-between;align-items:flex-end;padding:0 1.2rem .5rem;}
.wdd-co-totl{font-family:var(--wdd-fb);font-size:.4rem;text-transform:uppercase;letter-spacing:.12em;color:rgba(255,255,255,.18);}
.wdd-co-totv{font-family:var(--wdd-fh);font-size:2rem;font-weight:400;color:var(--wdd-yellow);}

/* FORMS */
.wdd-fg{margin-bottom:.7rem;}
.wdd-fl{display:block;font-family:var(--wdd-fb);font-size:.42rem;font-weight:600;text-transform:uppercase;letter-spacing:.14em;color:var(--wdd-stone);margin-bottom:.28rem;}
.wdd-fi{width:100%;background:white;border:1.5px solid var(--wdd-border);border-radius:var(--wdd-r2);padding:.65rem 1rem;color:var(--wdd-dark);font-size:.92rem;transition:border-color .14s;}
.wdd-fi:focus{outline:none;border-color:var(--wdd-yellow2);box-shadow:0 0 0 3px var(--wdd-yT);}
.wdd-fi::placeholder{color:var(--wdd-stone);}
.wdd-agree{display:flex;align-items:flex-start;gap:.5rem;font-size:.82rem;color:var(--wdd-stone);margin:1rem 0;line-height:1.6;}
.wdd-agree input{margin-top:.14rem;accent-color:var(--wdd-yellow2);}
.wdd-agree a{color:var(--wdd-yellow2);}

/* BUTTONS */
.wdd-btn-y{display:inline-flex;align-items:center;gap:.4rem;font-family:var(--wdd-fb);font-size:.96rem;font-weight:700;color:var(--wdd-ink);background:var(--wdd-yellow);padding:.6rem 1.6rem;border-radius:var(--wdd-r);transition:var(--wdd-ease);border:none;cursor:pointer;white-space:nowrap;}
.wdd-btn-y:hover{background:var(--wdd-yellow2);}
.wdd-btn-out{display:inline-flex;align-items:center;gap:.4rem;font-family:var(--wdd-fb);font-size:.96rem;font-weight:600;color:var(--wdd-dark);background:transparent;padding:.58rem 1.6rem;border-radius:var(--wdd-r);border:1.5px solid var(--wdd-border);transition:var(--wdd-ease);white-space:nowrap;}
.wdd-btn-out:hover{border-color:var(--wdd-yellow2);color:var(--wdd-ink);}
.wdd-btn-w{display:inline-flex;align-items:center;gap:.4rem;font-family:var(--wdd-fb);font-size:.96rem;font-weight:700;color:var(--wdd-ink);background:var(--wdd-yellow);padding:.6rem 1.6rem;border-radius:var(--wdd-r);transition:var(--wdd-ease);border:none;cursor:pointer;white-space:nowrap;}
.wdd-btn-w:hover{background:var(--wdd-yellow2);}

/* LEGAL */
.wdd-legal-wrap{max-width:800px;margin:0 auto;padding:5rem 2.5rem 8rem;}
.wdd-legal-eff{display:inline-block;font-size:.72rem;color:var(--wdd-stone);background:var(--wdd-surf);border:1px solid var(--wdd-border);padding:.22rem .8rem;border-radius:100px;margin-bottom:1.5rem;}
.wdd-legal-wrap h2{font-family:var(--wdd-fh);font-size:1.1rem;font-weight:400;color:var(--wdd-yellow2);margin:2.5rem 0 .5rem;}
.wdd-legal-wrap p,.wdd-legal-wrap li{font-size:.9rem;color:var(--wdd-stone);line-height:1.78;margin-bottom:.9rem;}
.wdd-legal-wrap ul{padding-left:1.4rem;margin:.5rem 0 .9rem;}
.wdd-legal-wrap li{list-style:disc;}
.wdd-legal-wrap a{color:var(--wdd-yellow2);}

/* 4-COLUMN DARK FOOTER */
.wdd-footer{background:var(--wdd-ink);}
.wdd-ft-top{max-width:var(--wdd-max);margin:0 auto;padding:3.5rem 2.5rem 2rem;display:grid;grid-template-columns:2fr 1fr 1fr 1fr;gap:3rem;border-bottom:1px solid rgba(255,255,255,.06);}
/* BIGGER footer logo: 2rem Gloock */
.wdd-ft-logo{font-family:var(--wdd-fh);font-size:2rem;font-weight:400;color:rgba(255,255,255,.12);display:block;margin-bottom:.6rem;}
.wdd-ft-logo em{font-style:normal;background:var(--wdd-yellow);color:var(--wdd-ink);padding:0 .2em;}
.wdd-ft-tag{font-size:.8rem;color:rgba(255,255,255,.15);line-height:1.65;margin-bottom:1rem;}
.wdd-ft-soc{display:flex;gap:.4rem;}
.wdd-ft-soc a{width:32px;height:32px;border:1px solid rgba(255,255,255,.1);border-radius:var(--wdd-r2);display:flex;align-items:center;justify-content:center;color:rgba(255,255,255,.18);transition:var(--wdd-ease);}
.wdd-ft-soc a:hover{border-color:var(--wdd-yellow);color:var(--wdd-yellow);}
.wdd-ft-col-h{font-family:var(--wdd-fb);font-size:.4rem;font-weight:600;text-transform:uppercase;letter-spacing:.22em;color:rgba(255,255,255,.15);margin-bottom:.8rem;}
.wdd-ft-nav{display:flex;flex-direction:column;gap:.32rem;}
.wdd-ft-nav a{font-size:.78rem;color:rgba(255,255,255,.18);transition:color .14s;}
.wdd-ft-nav a:hover{color:var(--wdd-yellow);}
.wdd-ft-ct{display:flex;flex-direction:column;gap:.32rem;}
.wdd-ft-ct a{display:flex;align-items:flex-start;gap:.35rem;font-size:.76rem;color:rgba(255,255,255,.18);transition:color .14s;}
.wdd-ft-ct a:hover{color:var(--wdd-yellow);}
.wdd-ft-btm{max-width:var(--wdd-max);margin:0 auto;padding:.9rem 2.5rem;display:flex;align-items:center;justify-content:space-between;gap:1rem;flex-wrap:wrap;}
.wdd-ft-copy{font-size:.62rem;color:rgba(255,255,255,.1);}
.wdd-ft-legal{display:flex;gap:1rem;flex-wrap:wrap;}
.wdd-ft-legal a{font-size:.62rem;color:rgba(255,255,255,.1);transition:color .14s;}
.wdd-ft-legal a:hover{color:var(--wdd-yellow);}

/* COOKIE + CHAT */
.wdd-ck-bar{position:fixed;bottom:0;left:0;right:0;z-index:9999;background:var(--wdd-ink);border-top:2px solid var(--wdd-yellow);padding:.9rem 2rem;display:none;align-items:center;gap:2rem;justify-content:space-between;flex-wrap:wrap;}
.wdd-ck-bar p{font-size:.8rem;color:rgba(255,255,255,.3);margin:0;}
.wdd-ck-bar a{color:var(--wdd-yellow);}
.wdd-ck-btns{display:flex;gap:.5rem;flex-shrink:0;}
.wdd-ck-yes{background:var(--wdd-yellow);color:var(--wdd-ink);font-family:var(--wdd-fb);font-size:.88rem;font-weight:700;padding:.32rem .9rem;border-radius:var(--wdd-r);cursor:pointer;border:none;}
.wdd-ck-no{background:transparent;color:rgba(255,255,255,.3);font-size:.82rem;padding:.3rem .9rem;border:1px solid rgba(255,255,255,.12);border-radius:var(--wdd-r);cursor:pointer;}
.wdd-chat-fab{position:fixed;bottom:4.5rem;right:1.5rem;z-index:9990;width:50px;height:50px;background:var(--wdd-ink);border-radius:50%;display:flex;align-items:center;justify-content:center;cursor:pointer;border:2px solid var(--wdd-yellow);box-shadow:var(--wdd-sh);transition:var(--wdd-ease);color:var(--wdd-yellow);}
.wdd-chat-fab:hover{background:var(--wdd-yellow);color:var(--wdd-ink);}
.wdd-chatpop{position:fixed;bottom:7rem;right:1.5rem;z-index:9989;width:290px;background:white;border:1.5px solid var(--wdd-border);border-radius:var(--wdd-r3);box-shadow:var(--wdd-sh2);opacity:0;pointer-events:none;transform:translateY(8px) scale(.97);transition:opacity .2s,transform .22s;overflow:hidden;}
.wdd-chatpop.wdd-cp-on{opacity:1;pointer-events:auto;transform:none;}
.wdd-chatpop-hd{background:var(--wdd-yellow);padding:.8rem 1.1rem;display:flex;align-items:center;justify-content:space-between;}
.wdd-chatpop-nm{font-family:var(--wdd-fh);font-size:.96rem;font-weight:400;color:var(--wdd-ink);letter-spacing:-.01em;}
.wdd-chat-done{display:none;text-align:center;padding:.9rem;font-family:var(--wdd-fh);font-size:1rem;color:var(--wdd-yellow2);}
.wdd-chat-fi{width:100%;background:var(--wdd-surf);border:1.5px solid var(--wdd-border);border-radius:var(--wdd-r);padding:.5rem .8rem;font-size:.84rem;color:var(--wdd-dark);margin-bottom:.36rem;resize:none;transition:border-color .14s;}
.wdd-chat-fi:focus{outline:none;border-color:var(--wdd-yellow2);}
.wdd-chat-send{width:100%;background:var(--wdd-ink);color:var(--wdd-yellow);font-family:var(--wdd-fb);font-size:.9rem;font-weight:700;padding:.5rem;border-radius:var(--wdd-r2);border:none;cursor:pointer;}

/* REVEAL */
.wdd-reveal{opacity:0;transform:translateY(10px);transition:opacity .4s,transform .4s;}
.wdd-reveal.wdd-in{opacity:1;transform:none;}
.wdd-result-pg{min-height:72vh;display:flex;align-items:center;justify-content:center;text-align:center;padding:8rem 3rem;flex-direction:column;gap:1.5rem;}

/* RESPONSIVE */
@media(max-width:960px){
  .wdd-nav-center{display:none;}
  .wdd-mob-btn{display:flex;}
  .wdd-hero-zone{grid-template-columns:1fr;}
  .wdd-hero-right{height:50vw;}
  .wdd-acc-inner{grid-template-columns:1fr;}
  .wdd-port-cols{columns:2;}
  .wdd-about-split{grid-template-columns:1fr;}
  .wdd-zz-pair{grid-template-columns:1fr;}
  .wdd-zz-pair:nth-child(even) .wdd-zz-img,.wdd-zz-pair:nth-child(even) .wdd-zz-text{order:unset;}
  .wdd-testi-grid{grid-template-columns:1fr;}
  .wdd-price-trio{grid-template-columns:1fr;}
  .wdd-ft-top{grid-template-columns:1fr 1fr;}
  .wdd-bld-wrap,.wdd-co-wrap,.wdd-sdt{grid-template-columns:1fr;}
}
@media(max-width:600px){
  .wdd-wrap{padding:0 1.5rem;}
  .wdd-port-cols{columns:1;}
  .wdd-ft-top{grid-template-columns:1fr;}
  .wdd-hero-meta{flex-wrap:wrap;gap:1rem;}
}
