/* WorkWell Offices — main stylesheet
   Vanilla CSS, no framework. Loaded after tokens.css.
   Section order follows the homepage block map. */

/* ---------- Fonts (self-hosted, variable, subset to Latin) ---------- */
@font-face{font-family:"Fraunces";src:url(../fonts/fraunces-var.woff2) format("woff2");
  font-weight:300 700;font-style:normal;font-display:swap;font-named-instance:"Regular";}
@font-face{font-family:"Fraunces";src:url(../fonts/fraunces-italic-var.woff2) format("woff2");
  font-weight:300 700;font-style:italic;font-display:swap;}
@font-face{font-family:"Inter";src:url(../fonts/inter-var.woff2) format("woff2");
  font-weight:300 700;font-style:normal;font-display:swap;}

/* ---------- Reset / base ---------- */
*,*::before,*::after{box-sizing:border-box}
html{-webkit-text-size-adjust:100%;scroll-behavior:smooth}
body{margin:0;background:var(--ww-paper);color:var(--ww-ink);
  font-family:var(--font-sans);font-size:var(--fs-body);line-height:var(--lh-body);
  -webkit-font-smoothing:antialiased;text-rendering:optimizeLegibility}
img,picture,video,svg{max-width:100%;height:auto;display:block}
a{color:inherit;text-decoration:none}
button{font:inherit;cursor:pointer}
h1,h2,h3,h4{margin:0;font-family:var(--font-serif);font-weight:400;
  line-height:var(--lh-tight);letter-spacing:-.01em}
h2{font-size:var(--fs-h2)} h3{font-size:var(--fs-h3);line-height:var(--lh-snug)}
p{margin:0 0 1em}
:focus-visible{outline:2px solid var(--ww-terra);outline-offset:3px}
.visually-hidden{position:absolute;width:1px;height:1px;overflow:hidden;clip:rect(0 0 0 0);white-space:nowrap}

/* ---------- Layout primitives ---------- */
.container,.container--wide,.container--narrow{margin-inline:auto}
.container{width:min(100% - var(--gutter)*2,var(--container))}
.container--wide{width:min(100% - var(--gutter)*2,var(--container-wide))}
.container--narrow{width:min(100% - var(--gutter)*2,var(--container-narrow))}
.section{padding-block:var(--section-y)}
.section--tight-top{padding-top:0}
.section--paper{background:var(--ww-paper)}
.section--light{background:var(--ww-paper-light)}
.section--blush{background:var(--ww-blush)}
.section--sand{background:var(--ww-sand)}
.section--sage{background:var(--ww-sage)}
.section--green{background:var(--ww-green);color:var(--ww-paper)}
.section--navy{background:var(--ww-navy);color:var(--ww-paper)}
.stack>*+*{margin-top:var(--space-md)}

/* ---------- Shared type helpers ---------- */
.eyebrow{font-family:var(--font-sans);font-weight:600;font-size:var(--fs-eyebrow);
  letter-spacing:var(--track-eyebrow);text-transform:uppercase;color:var(--ww-terra);margin:0 0 .9rem}
.section--green .eyebrow,.section--navy .eyebrow{color:var(--ww-gold)}
.display{font-size:var(--fs-display);line-height:1.05}
.lead{font-size:var(--fs-lead);color:var(--ww-ink-70);max-width:54ch}
.section--green .lead,.section--navy .lead{color:rgba(246,237,233,.82)}
.on-dark{color:var(--ww-white)}
.on-dark .eyebrow{color:var(--ww-white)}
.on-dark h1,.on-dark h2,.on-dark h3{color:var(--ww-white)}
.on-dark .lead{color:rgba(255,255,255,.88)}
.section-head{max-width:60ch}
.section-head--center{margin-inline:auto;text-align:center}
.section-head--split{display:grid;grid-template-columns:1fr 1fr;gap:var(--space-xl);align-items:end;max-width:none}
.section-head--split .lead{margin:0}

/* ---------- Buttons ---------- */
.btn{display:inline-flex;align-items:center;justify-content:center;gap:.5em;padding:.8em 1.5em;border-radius:var(--radius-pill);white-space:nowrap;
  font-family:var(--font-sans);font-weight:600;font-size:.95rem;line-height:1;border:1.5px solid transparent;
  transition:background .2s var(--ease),color .2s var(--ease),border-color .2s var(--ease)}
.btn--primary{background:var(--ww-green);color:var(--ww-white)}
.btn--primary:hover{background:var(--ww-green-hover)}
.btn--secondary{background:transparent;color:var(--ww-ink);border-color:var(--ww-ink)}
.btn--secondary:hover{background:var(--ww-ink);color:var(--ww-paper)}
.btn--text{padding:.2em 0;gap:.3em;color:var(--ww-ink-70);font-weight:500;font-size:.8rem;letter-spacing:.01em;border:0}
.btn--text:hover{color:var(--ww-green)}
.btn--text svg{width:12px;height:12px;stroke-width:2.2;flex:none;transition:transform .2s var(--ease)}
.btn--text:hover svg{transform:translateX(2px)}
/* On dark backgrounds the primary flips to terracotta */
.on-dark .btn--primary,.section--green .btn--primary,.section--navy .btn--primary{background:var(--ww-terra);color:var(--ww-white)}
/* Header CTA always terracotta so 'Book a viewing' reads the same everywhere */
.header__actions .btn--primary{background:var(--ww-terra);color:var(--ww-white);border-color:var(--ww-terra)}
.header__actions .btn--primary:hover{background:var(--ww-terra-hover);border-color:var(--ww-terra-hover)}
.on-dark .btn--primary:hover,.section--green .btn--primary:hover,.section--navy .btn--primary:hover{background:var(--ww-terra-hover)}
.on-dark .btn--secondary,.section--green .btn--secondary,.section--navy .btn--secondary{color:var(--ww-paper);border-color:rgba(246,237,233,.6)}
.on-dark .btn--secondary:hover,.section--green .btn--secondary:hover,.section--navy .btn--secondary:hover{background:var(--ww-paper);color:var(--ww-green)}
.on-dark .btn--text,.section--green .btn--text,.section--navy .btn--text{color:var(--ww-paper)}
.btn-row{display:flex;flex-wrap:wrap;gap:.75rem;align-items:center}

/* ---------- Header / nav ---------- */
.site-header{position:sticky;top:0;z-index:50;background:var(--ww-paper);border-bottom:1px solid var(--ww-line)}
.site-header__inner{display:flex;align-items:center;justify-content:space-between;gap:var(--space-md);min-height:72px}
.brand{display:inline-flex;align-items:center;gap:.6rem}
.brand__mark{width:34px;height:auto;color:var(--ww-gold)}
.brand__word{font-family:var(--font-sans);font-weight:600;letter-spacing:var(--track-wordmark);
  text-transform:uppercase;font-size:1.05rem;color:var(--ww-green)}
.custom-logo,.custom-logo-link img{display:block;height:46px;width:auto;max-width:100%;object-fit:contain}
.custom-logo-link{display:inline-flex;align-items:center;flex:0 0 auto}
.nav{display:flex;align-items:center;gap:var(--space-md);margin-left:auto}
.nav__list{display:flex;gap:.25rem;list-style:none;margin:0;padding:0;align-items:center}
.nav__list a{font-size:.95rem;font-weight:500;position:relative}
.nav__list>li>a{padding:.55rem .8rem;border-radius:8px;transition:background .18s var(--ease),color .18s var(--ease)}
.nav__list a:hover{color:var(--ww-green)}
.nav__list>li>a:hover{background:var(--ww-paper)}
.has-sub{position:relative}
.sub-menu{position:absolute;top:100%;left:0;min-width:230px;background:var(--ww-white);
  border:1px solid var(--ww-line);border-radius:var(--radius);box-shadow:var(--shadow-md);
  padding:.5rem;list-style:none;margin:.6rem 0 0;opacity:0;visibility:hidden;transform:translateY(6px);
  transition:.18s var(--ease)}
.has-sub:hover .sub-menu,.has-sub:focus-within .sub-menu{opacity:1;visibility:visible;transform:none}
.sub-menu a{display:block;padding:.55rem .75rem;border-radius:8px;font-size:.92rem}
.sub-menu a:hover{background:var(--ww-paper)}
/* Locations mega menu */
.mega{position:absolute;top:100%;left:0;z-index:60;width:660px;max-width:calc(100vw - 3rem);
  background:var(--ww-white);border:1px solid var(--ww-line);border-radius:var(--radius);box-shadow:var(--shadow-md);
  padding:1rem;margin-top:.6rem;opacity:0;visibility:hidden;transform:translateY(6px);transition:.18s var(--ease)}
.has-sub:hover>.mega,.has-sub:focus-within>.mega{opacity:1;visibility:visible;transform:none}
.mega__inner{display:grid;grid-template-columns:repeat(3,1fr);gap:.6rem}
.mega__card{display:flex;flex-direction:column;gap:.55rem;padding:.5rem;border-radius:10px;transition:background .18s var(--ease)}
.mega__card:hover{background:var(--ww-paper)}
.mega__thumb{display:block;border-radius:8px;overflow:hidden;aspect-ratio:4/3;background:var(--ww-sand)}
.mega__thumb img{width:100%;height:100%;object-fit:cover;display:block}
.mega__name{display:block;font-weight:600;color:var(--ww-green);font-size:.95rem;line-height:1.2}
.mega__area{display:block;font-size:.74rem;text-transform:uppercase;letter-spacing:.05em;color:var(--ww-sage);margin-top:.2rem}
.mega__addr{display:block;font-size:.82rem;color:var(--ww-ink-70);margin-top:.2rem}
.mega__foot{margin-top:.8rem;padding-top:.8rem;border-top:1px solid var(--ww-line)}
.mega__all{font-weight:600;font-size:.9rem;color:var(--ww-green);padding:0}
.header__actions{display:flex;align-items:center;gap:.75rem}
.nav-toggle{display:none;background:none;border:0;padding:.5rem}
.nav-toggle span{display:block;width:24px;height:2px;background:var(--ww-green);margin:5px 0;transition:.2s}
.nav__caret{display:inline-flex;align-items:center;margin-left:.32em;pointer-events:none}
.nav__caret svg{width:.62em;height:.62em;fill:none;stroke:currentColor;transition:transform .2s var(--ease)}
.has-sub:hover>a .nav__caret svg,.has-sub:focus-within>a .nav__caret svg{transform:rotate(180deg)}
.nav__sub-toggle{display:none}

/* ---------- Hero ---------- */
.hero{position:relative;min-height:clamp(520px,80vh,760px);display:grid;align-items:center;
  /* compact variant for listing heroes */
  color:var(--ww-white);overflow:hidden}
.hero--compact{min-height:clamp(300px,42vh,440px)}
.hero__media{position:absolute;inset:0;z-index:-2}
.hero__media img{width:100%;height:100%;object-fit:cover}
.hero::after{content:"";position:absolute;inset:0;z-index:-1;
  background:linear-gradient(180deg,rgba(17,35,50,.25),rgba(25,48,40,.55))}
.hero__inner{padding-block:var(--space-2xl);text-align:center;max-width:62rem;margin-inline:auto}
.hero__title{font-size:var(--fs-display);line-height:1.04;text-shadow:0 1px 30px rgba(17,35,50,.25)}
.hero__sub{font-size:var(--fs-lead);color:rgba(246,237,233,.92);max-width:46ch;margin:1.2rem auto 1.8rem}
.hero .btn-row{justify-content:center;margin-top:var(--space-lg)}

/* ---------- Philosophy / feature cards ---------- */
.feature-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(230px,1fr));gap:var(--space-md);margin-top:var(--space-xl)}
.feature-card{background:var(--ww-white);border:1px solid var(--ww-line);border-radius:var(--radius);
  padding:var(--space-lg);display:flex;flex-direction:column;gap:.6rem}
.feature-grid--split{grid-template-columns:1fr 1fr 2fr;align-items:stretch}
.feature-card--wide{padding:0;display:grid;grid-template-columns:minmax(0,44%) 1fr;overflow:hidden;gap:0}
.feature-card__media{position:relative;min-height:240px}
.feature-card__media img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover}
.feature-card__body{padding:var(--space-lg);display:flex;flex-direction:column;gap:.6rem}
.feature-card__body h3{font-size:1.3rem}
.feature-card__body p{font-size:.98rem;color:var(--ww-ink-70);margin:0}
.feature-card__body .btn--text{margin-top:auto;padding-top:.6rem}
.feature-card__icon{width:30px;height:30px;color:var(--ww-green);margin-bottom:.4rem}
.feature-card h3{font-size:1.3rem}
.feature-card p{font-size:.98rem;color:var(--ww-ink-70);margin:0}
.feature-card .btn--text{margin-top:auto;padding-top:.6rem}
.intro-actions{margin-top:var(--space-md)}

/* ---------- Locations ---------- */
.location-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));gap:var(--space-md);margin-top:var(--space-xl)}
.location-card{position:relative;border-radius:var(--radius);overflow:hidden;min-height:340px;display:flex;
  align-items:flex-end;color:var(--ww-white);isolation:isolate}
.location-card img{position:absolute;inset:0;z-index:-2;width:100%;height:100%;object-fit:cover;
  transition:transform .5s var(--ease)}
.location-card::after{content:"";position:absolute;inset:0;z-index:-1;
  background:linear-gradient(180deg,rgba(17,35,50,0) 35%,rgba(17,35,50,.78))}
.location-card:hover img{transform:scale(1.04)}
.location-card__body{padding:var(--space-lg)}
.location-card__region{font-size:var(--fs-eyebrow);letter-spacing:var(--track-eyebrow);text-transform:uppercase;font-weight:600}
.location-card h3{color:#fff;font-size:1.5rem;margin:.3rem 0 .6rem}

/* ---------- Stats + media ---------- */
.stats-layout{display:grid;grid-template-columns:1fr 1.15fr;gap:var(--space-xl);align-items:stretch}
.stats-col{display:flex;flex-direction:column;gap:var(--space-md)}
.stat{background:var(--ww-sand);border-radius:var(--radius);padding:var(--space-lg)}
.section--sand .stat{background:var(--ww-white)}
.stat__num{font-family:var(--font-serif);font-size:var(--fs-stat);line-height:1;color:var(--ww-green)}
.stat__label{font-weight:600;margin:.4rem 0 .2rem}
.stat__desc{font-size:.95rem;color:var(--ww-ink-70);margin:0}
.stats-media{display:flex;flex-direction:column}
.media-frame{border-radius:var(--radius);overflow:hidden;background:var(--ww-green);flex:1 1 auto;min-height:280px}
.media-frame video,.media-frame img{width:100%;height:100%;object-fit:cover}
.calc-prompt{margin-top:var(--space-lg);padding:var(--space-lg);border:1px dashed var(--ww-sage);
  border-radius:var(--radius);display:flex;flex-wrap:wrap;gap:var(--space-sm);align-items:center;justify-content:space-between}
.calc-prompt p{margin:0;max-width:40ch}

/* ---------- Services ---------- */
.services-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:var(--space-lg);margin-top:var(--space-xl)}
.service{display:flex;flex-direction:column;gap:.5rem}
.service__icon{width:34px;height:34px;color:var(--ww-green)}
.service h3{font-size:1.25rem}
.service p{font-size:.96rem;color:var(--ww-ink-70);margin:0}
/* Clickable service + icon columns */
.service__link,.icon-col__link{color:inherit;text-decoration:none;background-image:linear-gradient(currentColor,currentColor);background-size:0 1.5px;background-repeat:no-repeat;background-position:0 100%;transition:background-size .25s var(--ease)}
.service--link:hover .service__link,.icon-col--link:hover .icon-col__link{background-size:100% 1.5px}
.service--link .service__icon,.icon-col--link .icon-col__icon{transition:transform .25s var(--ease)}
.service--link:hover .service__icon,.icon-col--link:hover .icon-col__icon{transform:translateY(-2px)}
.on-dark .icon-col p,.section--green .icon-col p,.section--navy .icon-col p{color:rgba(246,237,233,.82)}
.on-dark .icon-col__icon,.section--green .icon-col__icon,.section--navy .icon-col__icon{color:var(--ww-gold)}
.on-dark .service__link,.section--green .service__link,.section--navy .service__link,.on-dark .icon-col__link{color:var(--ww-white)}

/* Gravity Forms: brand styling (overrides the default blue) */
.gform_wrapper .gform_footer input[type=submit],
.gform_wrapper .gform_page_footer input[type=submit],
.gform_wrapper .gform_button,
.gform_wrapper button.gform_button{
  background:var(--ww-green)!important;border:1.5px solid var(--ww-green)!important;color:var(--ww-paper)!important;
  border-radius:999px!important;padding:.8rem 1.6rem!important;font:inherit!important;font-weight:600!important;
  cursor:pointer;transition:background .2s var(--ease),border-color .2s var(--ease)
}
.gform_wrapper .gform_footer input[type=submit]:hover,
.gform_wrapper .gform_button:hover,
.gform_wrapper button.gform_button:hover{background:#12241d!important;border-color:#12241d!important}
.on-dark .gform_wrapper .gform_footer input[type=submit],
.section--green .gform_wrapper .gform_footer input[type=submit],
.on-dark .gform_wrapper .gform_button,
.section--green .gform_wrapper .gform_button{background:var(--ww-terra)!important;border-color:var(--ww-terra)!important}
.on-dark .gform_wrapper .gform_footer input[type=submit]:hover,
.section--green .gform_wrapper .gform_footer input[type=submit]:hover{background:var(--ww-terra-hover)!important;border-color:var(--ww-terra-hover)!important}
.gform_wrapper input[type=text],.gform_wrapper input[type=email],.gform_wrapper input[type=tel],
.gform_wrapper input[type=url],.gform_wrapper input[type=number],.gform_wrapper input[type=date],
.gform_wrapper select,.gform_wrapper textarea{
  border:1.5px solid var(--ww-line)!important;border-radius:8px!important;padding:.7rem .85rem!important;
  font:inherit!important;color:var(--ww-ink)!important;background:var(--ww-white)!important
}
.gform_wrapper input:focus,.gform_wrapper select:focus,.gform_wrapper textarea:focus{
  outline:2px solid var(--ww-green)!important;outline-offset:1px;border-color:var(--ww-green)!important
}
.gform_wrapper .gfield_label,.gform_wrapper legend.gfield_label{font-weight:600!important;color:var(--ww-ink)!important}
.gform_wrapper .gfield_required{color:var(--ww-terra)!important}
.gform_wrapper .gform_validation_errors{border-color:var(--ww-terra)!important;background:#f6e3dd!important}
.gform_wrapper .gfield_error .gfield_label,.gform_wrapper .validation_message{color:var(--ww-terra)!important}
.gform_confirmation_message{color:var(--ww-green);font-weight:600}
/* Even, predictable field spacing (Gravity Forms' default grid gap is uneven against
   grouped sub-fields like first/last name). Applies everywhere the forms render. */
.gform_wrapper .gform_fields{grid-row-gap:20px!important;row-gap:20px!important;grid-column-gap:16px!important;column-gap:16px!important}
.gform_wrapper .ginput_complex{grid-row-gap:20px!important;row-gap:20px!important}
/* Keep the spam honeypot in the DOM but out of the visual flow so it adds no gap. */
.gform_wrapper .gform_validation_container{position:absolute!important;left:-9999px!important;width:1px!important;height:1px!important;overflow:hidden!important;margin:0!important}
@media (max-width:768px){
  /* Stack every field full width on mobile so nothing overflows or half-fills a row. */
  .gform_wrapper .gform_fields{display:block!important}
  .gform_wrapper .gfield{width:100%!important;margin:0 0 20px 0!important;float:none!important;clear:both!important}
  .gform_wrapper .gfield:last-child{margin-bottom:0!important}
  .gform_wrapper .ginput_complex{display:grid!important;grid-template-columns:1fr!important;gap:20px!important}
}

/* ---------- Interiors carousel ---------- */
.carousel{margin-top:var(--space-xl)}
.carousel__track{display:flex;gap:var(--space-md);overflow-x:auto;scroll-snap-type:x mandatory;
  padding-bottom:.5rem;scrollbar-width:none;cursor:grab;touch-action:pan-y}
.carousel__track img{user-select:none;-webkit-user-drag:none;pointer-events:none}
.carousel__track::-webkit-scrollbar{display:none}
.carousel__slide{flex:0 0 clamp(260px,32%,420px);scroll-snap-align:start;border-radius:var(--radius);overflow:hidden}
.carousel__slide img{aspect-ratio:4/3;width:100%;object-fit:cover}
.carousel__controls{display:flex;justify-content:flex-end;gap:.6rem;margin-top:var(--space-md)}
.carousel__btn{width:46px;height:46px;border-radius:var(--radius-pill);border:1px solid var(--ww-line);
  background:var(--ww-white);display:grid;place-items:center;transition:.2s var(--ease)}
.carousel__btn:hover{background:var(--ww-green);color:var(--ww-white)}

/* ---------- Testimonials ---------- */
.testi-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));gap:var(--space-xl);margin-top:var(--space-xl)}
.testi{text-align:center;display:flex;flex-direction:column;align-items:center;gap:.9rem}
.testi__quote{font-family:var(--font-serif);font-size:1.3rem;line-height:1.4}
.testi__avatar{width:54px;height:54px;border-radius:50%;object-fit:cover}
.testi__name{font-weight:600}
.testi__role{font-size:var(--fs-small);color:var(--ww-ink-70)}
.section--green .testi__role,.on-dark .testi__role{color:rgba(246,237,233,.78)}
/* Video embed */
.video-embed{position:relative;width:100%;aspect-ratio:16/9;border-radius:16px;overflow:hidden;background:var(--ww-ink);margin:var(--space-xl,3rem) 0 0}
.video-embed iframe{position:absolute;inset:0;width:100%;height:100%;border:0}
.video-embed__caption{margin:.9rem 0 0;text-align:center;font-size:var(--fs-small);color:var(--ww-ink-70)}
.section--green .video-embed__caption,.on-dark .video-embed__caption{color:rgba(246,237,233,.78)}
/* Team grid */
.team-grid{display:flex;flex-wrap:wrap;justify-content:center;gap:var(--space-xl);margin-top:var(--space-xl)}
.team-card{flex:1 1 240px;max-width:300px;text-align:center;display:flex;flex-direction:column;align-items:center}
.team-card__media{width:100%;aspect-ratio:4/5;border-radius:14px;overflow:hidden;background:var(--ww-sand)}
.team-card__photo{width:100%;height:100%;object-fit:cover;display:block}
.team-card__name{font-family:var(--font-serif);font-size:1.3rem;margin:1rem 0 .15rem}
.team-card__role{font-size:var(--fs-small);color:var(--ww-ink-70);margin:0}
.team-card__links{display:flex;gap:.5rem;margin-top:.75rem}
.team-card__links a{display:inline-flex;align-items:center;justify-content:center;width:38px;height:38px;border:1px solid rgba(28,28,28,.16);border-radius:50%;color:var(--ww-green);transition:background .2s ease,color .2s ease,border-color .2s ease}
.team-card__links a:hover{background:var(--ww-green);border-color:var(--ww-green);color:var(--ww-paper)}
.team-card__links svg{width:18px;height:18px}
.section--green .team-card__role,.on-dark .team-card__role{color:rgba(246,237,233,.78)}
.section--green .team-card__links a,.on-dark .team-card__links a{border-color:rgba(246,237,233,.32);color:var(--ww-paper)}
.section--green .team-card__links a:hover,.on-dark .team-card__links a:hover{background:var(--ww-paper);color:var(--ww-green)}

/* ---------- Insights ---------- */
.insights-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));gap:var(--space-lg);margin-top:var(--space-xl)}
.insights-actions{text-align:center;margin-top:var(--space-lg)}
.post-card{display:flex;flex-direction:column;background:var(--ww-white);border:1px solid var(--ww-line);
  border-radius:var(--radius);overflow:hidden}
.post-card img{aspect-ratio:16/9;object-fit:cover}
.post-card__body{padding:var(--space-md);display:flex;flex-direction:column;gap:.5rem}
.post-card__date{font-size:var(--fs-small);color:var(--ww-ink-70)}
.post-card h3{font-size:1.15rem}

/* ---------- CTA band ---------- */
.cta{text-align:center;display:flex;flex-direction:column;align-items:center}
.cta__title{font-size:var(--fs-h1)}
.cta .btn-row{justify-content:center;margin-top:var(--space-md)}


/* ---------- Locations list (hover-swap image) ---------- */
.locations-list{display:grid;grid-template-columns:1fr 1.25fr;gap:var(--space-2xl);align-items:stretch;margin-top:var(--space-xl)}
.locations-list__items{display:flex;flex-direction:column}
.locations-list__item{padding:var(--space-lg) 0;border-top:1px solid var(--ww-line);transition:opacity .2s var(--ease)}
.locations-list__item:last-child{border-bottom:1px solid var(--ww-line)}
.locations-list__region{font-family:var(--font-serif);font-size:1.6rem;line-height:1.1;display:block}
.locations-list__detail{color:var(--ww-ink-70);margin:.35rem 0 .6rem}
.on-dark .locations-list__detail{color:rgba(246,237,233,.78)}
.locations-list__media{position:relative;border-radius:var(--radius);overflow:hidden;min-height:420px}
.locations-list__media img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;opacity:0;transition:opacity .45s var(--ease)}
.locations-list__media img.is-active{opacity:1}
.section--green .locations-list__item,.section--green .locations-list__item:last-child{border-color:rgba(246,237,233,.2)}

/* ---------- Media + text / features ---------- */
.media-text{display:grid;grid-template-columns:1fr 1fr;gap:var(--space-2xl);align-items:center}
.media-text--left .media-text__media{order:-1}
.media-text__media img{border-radius:var(--radius);width:100%}
.media-text__body{max-width:48ch}
.media-text .btn-row{margin-top:var(--space-sm)}
.media-text.case-study{grid-template-columns:1fr 2fr}
.case-study__meta{font-size:var(--fs-small);color:var(--ww-ink-70)}

.media-features{display:grid;grid-template-columns:1fr 1fr;gap:var(--space-2xl);align-items:stretch}
.media-features--right .media-features__media{order:1}
.media-features__media{border-radius:var(--radius);overflow:hidden;min-height:360px}
.media-features__media img{width:100%;height:100%;object-fit:cover}
.feature-list{display:grid;grid-template-columns:1fr 1fr;column-gap:var(--space-lg);row-gap:var(--space-sm)}
.feature-list__icon{width:30px;height:30px;color:var(--ww-green);margin-bottom:.4rem;display:block}
.feature-list__icon svg{width:30px;height:30px;display:block}
.feature-list__item h3{font-size:1.1rem;margin-bottom:.25rem;line-height:1.25}
.feature-list__item p{font-size:.92rem;color:var(--ww-ink-70);margin:0}
/* Dark sections: body copy must be legible, not just headings */
.on-dark .feature-list__item p,.section--green .feature-list__item p,.section--navy .feature-list__item p{color:rgba(246,237,233,.86)}
.on-dark .feature-list__item h3,.section--green .feature-list__item h3,.section--navy .feature-list__item h3{color:var(--ww-white)}
.on-dark .feature-list__icon,.section--green .feature-list__icon,.section--navy .feature-list__icon{color:var(--ww-gold)}
.on-dark .find-us__v,.section--green .find-us__v{color:rgba(246,237,233,.86)}
.on-dark .find-us__k,.section--green .find-us__k{color:var(--ww-gold)}
.on-dark .find-us__list li,.section--green .find-us__list li{border-top-color:rgba(246,237,233,.2)}
.on-dark .find-us__list li:last-child,.section--green .find-us__list li:last-child{border-bottom-color:rgba(246,237,233,.2)}
.on-dark .find-us__address,.section--green .find-us__address{color:var(--ww-white)}
.on-dark p,.section--green p,.section--navy p{color:rgba(246,237,233,.86)}
.on-dark .prose,.section--green .prose,.section--navy .prose{color:rgba(246,237,233,.86)}
.on-dark .prose li,.section--green .prose li{color:rgba(246,237,233,.86)}
/* Light surfaces inside dark sections keep dark text (modal, pricing cards) */
.voa-modal__dialog p,.voa-modal__dialog span,.voa-modal__dialog dd{color:var(--ww-ink)}
.voa-modal__dialog .voa-field > span,.voa-modal__dialog .voa-consent span,.voa-modal__dialog .voa-review dt{color:var(--ww-ink-70)}
.voa-modal__dialog .voa-step__title{color:var(--ww-green)}
.voa-modal__dialog .voa-choice__price{color:var(--ww-terra)}
.section--green .pricing-card p,.on-dark .pricing-card p{color:var(--ww-ink-70)}
.section--green .pricing-card h3,.on-dark .pricing-card h3{color:var(--ww-ink)}

/* ---------- Icon columns ---------- */
/* Auto-centring column rows.
   Flexbox rather than grid: items per row is set by the count class, and any
   short final row centres itself instead of hanging left against an empty cell. */
.icon-cols{--row-gap:var(--space-xl);display:flex;flex-wrap:wrap;justify-content:center;align-items:flex-start;gap:var(--row-gap);margin-top:var(--space-xl);text-align:center}
.icon-col{display:flex;flex-direction:column;align-items:center;gap:.5rem;flex:0 1 auto;min-width:0}
.icon-cols--1 > *{flex-basis:min(460px,100%)}
.icon-cols--2 > *{flex-basis:calc((100% - var(--row-gap)) / 2)}
.icon-cols--3 > *,.icon-cols--5 > *,.icon-cols--6 > *,.icon-cols--9 > *{flex-basis:calc((100% - 2 * var(--row-gap)) / 3)}
.icon-cols--4 > *,.icon-cols--7 > *,.icon-cols--8 > *,.icon-cols--11 > *,.icon-cols--12 > *,.icon-cols--13 > *,.icon-cols--14 > *,.icon-cols--15 > *,.icon-cols--16 > *{flex-basis:calc((100% - 3 * var(--row-gap)) / 4)}
.icon-cols--10 > *{flex-basis:calc((100% - 4 * var(--row-gap)) / 5)}
@media(max-width:1000px){
  .icon-cols--4 > *,.icon-cols--7 > *,.icon-cols--8 > *,.icon-cols--10 > *,.icon-cols--11 > *,.icon-cols--12 > *,.icon-cols--13 > *,.icon-cols--14 > *,.icon-cols--15 > *,.icon-cols--16 > *{flex-basis:calc((100% - 2 * var(--row-gap)) / 3)}
}
@media(max-width:780px){
  .icon-cols > *{flex-basis:calc((100% - var(--row-gap)) / 2)!important}
}
@media(max-width:520px){
  .icon-cols > *{flex-basis:100%!important}
}
.icon-col__icon{width:36px;height:36px;color:var(--ww-green)}
.icon-col h3{font-size:1.35rem}
.icon-col p{font-size:.96rem;color:var(--ww-ink-70);margin:0;max-width:34ch}

/* ---------- Accordion / FAQ ---------- */
.accordion{margin-top:var(--space-xl);display:flex;flex-direction:column;gap:.75rem}
.accordion__item{background:transparent;border:1px solid var(--ww-line);border-radius:var(--radius);overflow:hidden}
.accordion__trigger{width:100%;display:flex;justify-content:space-between;align-items:center;gap:1rem;
  padding:1.1rem 1.3rem;background:none;border:0;text-align:left;font-family:var(--font-serif);font-size:1.15rem;color:var(--ww-ink)}
.accordion__sign{position:relative;width:16px;height:16px;flex:none}
.accordion__sign::before,.accordion__sign::after{content:"";position:absolute;background:var(--ww-ink);transition:.2s var(--ease)}
.accordion__sign::before{top:7px;left:0;width:16px;height:2px}
.accordion__sign::after{left:7px;top:0;width:2px;height:16px}
.accordion__trigger[aria-expanded="true"] .accordion__sign::after{transform:scaleY(0)}
.accordion__panel{padding:0 1.3rem 1.2rem;color:var(--ww-ink-70)}
.accordion__panel p{margin:0 0 .8em}
.accordion__panel> :last-child{margin-bottom:0}

/* ---------- Article ---------- */
.article-hero{position:relative;text-align:center;padding-block:var(--space-3xl) var(--space-2xl);overflow:hidden}
.article-hero__title{font-size:clamp(2.2rem,1.5rem + 2.8vw,3.4rem);margin:.4rem auto 0;max-width:20ch}
.article-meta{display:flex;align-items:center;justify-content:center;gap:.75rem;margin-top:var(--space-lg)}
.article-meta__avatar{width:48px;height:48px;border-radius:50%;object-fit:cover}
.article-meta__text{display:flex;flex-direction:column;text-align:left}
.article-meta__name{font-weight:600}
.article-meta__sub{font-size:var(--fs-small);color:rgba(246,237,233,.75)}
.article-summary__toggle{margin-top:var(--space-lg)}
.article-summary{background:var(--ww-sand)}
.article-summary .container--narrow{padding-block:var(--space-xl)}
.article-summary__title{font-size:1.3rem;margin-bottom:.5rem}
.article-summary__body{color:var(--ww-ink-70)}

.article-toolbar{display:flex;justify-content:space-between;align-items:center;gap:1rem;
  padding-bottom:var(--space-lg);margin-bottom:var(--space-xl);border-bottom:1px solid var(--ww-line)}
.breadcrumb{font-size:var(--fs-small);color:var(--ww-ink-70);display:flex;gap:.4rem;align-items:center}
.breadcrumb a:hover{color:var(--ww-green)}
.article-share{display:flex;gap:.5rem}
.article-share--center{justify-content:center;margin-top:.6rem}
.article-share__btn{width:38px;height:38px;border:1px solid var(--ww-line);border-radius:50%;
  background:transparent;color:var(--ww-ink);display:grid;place-items:center;transition:.2s var(--ease)}
.article-share__btn:hover,.article-share__btn.is-copied{background:var(--ww-green);color:#fff;border-color:var(--ww-green)}
.article-share__btn svg{width:17px;height:17px}

.article-content{font-size:1.0625rem;line-height:1.78}
.article-content>*{margin-bottom:1.4em}
.article-content h2{font-size:clamp(1.6rem,1.3rem + 1vw,2.1rem);margin-top:1.7em}
.article-content h3{font-size:1.3rem;margin-top:1.4em}
.article-content h2:first-child,.article-content h3:first-child{margin-top:0}
.article-content a{color:var(--ww-terra);text-decoration:underline;text-underline-offset:2px}
.article-content ul,.article-content ol{padding-left:1.3em}
.article-content li{margin-bottom:.5em}
.article-content img{border-radius:var(--radius)}
.article-content figure{margin:1.6em 0}
.article-content figcaption,.wp-caption-text{font-size:var(--fs-small);color:var(--ww-ink-70);margin-top:.6rem;text-align:left}
.article-content blockquote{border-left:3px solid var(--ww-gold);margin:1.6em 0;padding:.2em 0 .2em 1.4em;
  font-family:var(--font-serif);font-style:italic;font-size:1.2rem;color:var(--ww-ink)}
.article-content blockquote p{margin:0}

.article-foot{margin-top:var(--space-2xl);text-align:center}
.article-foot__share-label{font-weight:600;margin-bottom:.4rem}
.article-tags{list-style:none;display:flex;flex-wrap:wrap;gap:.5rem;justify-content:center;padding:0;margin:var(--space-lg) 0 0}
.article-tags a{display:inline-block;padding:.4em .9em;border:1px solid var(--ww-line);border-radius:var(--radius-pill);font-size:.85rem;background:var(--ww-white)}
.article-tags a:hover{border-color:var(--ww-green);color:var(--ww-green)}
.article-author{margin-top:var(--space-xl);padding-top:var(--space-xl);border-top:1px solid var(--ww-line);display:flex;flex-direction:column;align-items:center;gap:.25rem}
.article-author__avatar{width:64px;height:64px;border-radius:50%;object-fit:cover;margin-bottom:.4rem}
.article-author__name{font-weight:600}
.article-author__role{font-size:var(--fs-small);color:var(--ww-ink-70)}

.feature-testimonial{text-align:center}
.feature-testimonial__stars{display:flex;gap:.2rem;justify-content:center;color:var(--ww-gold)}
.feature-testimonial__stars svg{width:20px;height:20px}
.feature-testimonial__quote{font-family:var(--font-serif);font-size:clamp(1.4rem,1.1rem + 1.4vw,2rem);line-height:1.35;margin:var(--space-md) auto;max-width:26ch}
.feature-testimonial__by{display:flex;flex-direction:column;gap:.15rem}
.feature-testimonial__name{font-weight:600}
.feature-testimonial__role{font-size:var(--fs-small);color:var(--ww-ink-70)}
.feature-testimonial__logo{max-height:34px;width:auto;margin:var(--space-md) auto 0;opacity:.85}

.related__actions{display:flex;align-items:end}
.post-card--rich .post-card__meta{display:flex;gap:.5rem;align-items:center;margin-bottom:.1rem}
.post-card__cat,.post-card__read{font-size:.76rem;border:1px solid var(--ww-line);border-radius:var(--radius-pill);padding:.2em .7em;color:var(--ww-ink-70)}
.post-card--rich p{font-size:.92rem;color:var(--ww-ink-70);margin:0}
.post-card--rich .btn--text{margin-top:.2rem}

@media (max-width:560px){
  .article-toolbar{flex-direction:column;align-items:flex-start;gap:.8rem}
}

/* ---------- Full-width image band ---------- */
.image-band{width:100%;display:block}
.image-band img{display:block;width:100%;height:clamp(340px,44vw,580px);object-fit:cover}
.map-band{width:100%;display:block;line-height:0}
.map-band iframe{display:block;width:100%;height:clamp(360px,46vw,560px);border:0}

/* ---------- Footer ---------- */
.site-footer{background:var(--ww-green);color:var(--ww-paper);padding-block:var(--space-2xl) var(--space-lg)}
.site-footer a{color:rgba(246,237,233,.8)}
.site-footer a:hover{color:var(--ww-gold)}

/* Newsletter */
.footer-news{display:grid;grid-template-columns:1fr 1fr;gap:var(--space-xl);align-items:center;
  padding-bottom:var(--space-xl);border-bottom:1px solid rgba(246,237,233,.15)}
.footer-news h2{font-size:1.6rem;color:var(--ww-paper)}
.footer-news p{color:rgba(246,237,233,.8);margin:.4rem 0 0}
.footer-news__form{width:100%;max-width:440px;margin-left:auto}
.footer-news__row{display:flex;gap:.6rem;align-items:center}
.footer-news__input{flex:1;min-width:0;background:transparent;border:0;border-bottom:1.5px solid rgba(246,237,233,.4);
  color:var(--ww-paper);padding:.6rem .2rem;font:inherit}
.footer-news__input::placeholder{color:rgba(246,237,233,.55)}
.footer-news__input:focus{outline:none;border-bottom-color:var(--ww-gold)}
.footer-news__btn{background:var(--ww-terra);color:var(--ww-white);border:1.5px solid rgba(255,255,255,.7);border-radius:var(--radius-pill);
  padding:.7em 1.4em;font-family:var(--font-sans);font-weight:600;font-size:.95rem;white-space:nowrap;transition:background .2s var(--ease)}
.footer-news__btn:hover{background:var(--ww-white)}
.footer-news__note{font-size:.78rem;color:rgba(246,237,233,.6);margin:.7rem 0 0}
.footer-news__note a{text-decoration:underline}
/* Gravity Form #8 (newsletter) styled to match the dark footer. */
.footer-news__gf .gform_wrapper{margin:0}
/* Lay the email field and the submit button out on one row. */
.footer-news__gf .gform_wrapper form{display:flex;align-items:flex-end;gap:.6rem;flex-wrap:wrap}
.footer-news__gf .gform_wrapper .gform_body{flex:1 1 200px;min-width:0}
.footer-news__gf .gform_wrapper .gform_body,
.footer-news__gf .gform_wrapper .gform_fields{margin:0;padding:0}
.footer-news__gf .gform_wrapper .gfield{margin:0 0 .6rem}
.footer-news__gf .gform_wrapper .gfield_label{color:rgba(246,237,233,.85);font-weight:500;font-size:.85rem}
.footer-news__gf .gform_wrapper .gfield_required{color:var(--ww-gold)}
.footer-news__gf .gform_wrapper input[type=text],
.footer-news__gf .gform_wrapper input[type=email]{width:100%;background:transparent;border:0;
  border-bottom:1.5px solid rgba(246,237,233,.4);color:var(--ww-paper);padding:.6rem .2rem;font:inherit;border-radius:0;box-shadow:none}
.footer-news__gf .gform_wrapper input[type=text]::placeholder,
.footer-news__gf .gform_wrapper input[type=email]::placeholder{color:rgba(28,28,28,.6)!important;opacity:1}
.footer-news__gf .gform_wrapper input[type=text]:focus,
.footer-news__gf .gform_wrapper input[type=email]:focus{outline:none;border-bottom-color:var(--ww-gold);background:transparent}
.footer-news__gf .gform_wrapper .gfield_consent_label,
.footer-news__gf .gform_wrapper .gchoice label,
.footer-news__gf .gform_wrapper legend.gfield_label{color:rgba(246,237,233,.75);font-size:.78rem;font-weight:400}
.footer-news__gf .gform_wrapper .gform_footer{flex:0 0 auto;margin:0;padding:0;display:flex;align-items:flex-end}
.footer-news__gf .gform_wrapper .gform_footer input[type=submit],
.footer-news__gf .gform_wrapper .gform_footer button{background:var(--ww-terra)!important;color:var(--ww-white)!important;
  border:1.5px solid rgba(255,255,255,.7)!important;border-radius:var(--radius-pill)!important;padding:.62em 1.6em!important;font-family:var(--font-sans)!important;
  font-weight:700!important;font-size:.95rem!important;white-space:nowrap;cursor:pointer;transition:background .2s var(--ease),border-color .2s var(--ease);width:auto!important}
.footer-news__gf .gform_wrapper .gform_footer input[type=submit]:hover,
.footer-news__gf .gform_wrapper .gform_footer button:hover{background:var(--ww-terra-hover)!important;border-color:#fff!important}
.footer-news__gf .gform_wrapper .gform_validation_errors,
.footer-news__gf .gform_wrapper .gfield_validation_message,
.footer-news__gf .gform_wrapper .validation_message{color:#ffd9d0;background:transparent;border:0;font-size:.8rem;padding:.2rem 0}
.footer-news__gf .gform_confirmation_message{color:var(--ww-paper);font-size:.95rem}

/* Columns */
.footer-main{display:grid;grid-template-columns:1.3fr repeat(5,1fr);gap:var(--space-lg);padding-block:var(--space-xl) var(--space-2xl)}
.footer-brand__logo{width:160px;height:auto}
.footer-brand__word{color:var(--ww-paper);font-family:var(--font-sans);font-weight:600;
  letter-spacing:var(--track-wordmark);text-transform:uppercase;font-size:1.15rem}
.footer-col h3{font-size:.95rem;color:var(--ww-paper);font-family:var(--font-sans);font-weight:600;margin:0 0 1rem}
.footer-col ul{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:.6rem}
.footer-col a{font-size:.92rem}

/* Bottom bar */
.footer-bottom{border-top:1px solid rgba(246,237,233,.15);padding-top:var(--space-md);
  display:flex;flex-wrap:wrap;gap:1rem;justify-content:space-between;align-items:center}
.footer-bottom__legal{display:flex;flex-wrap:wrap;gap:1.3rem;font-size:.85rem;color:rgba(246,237,233,.7)}
.footer-bottom__legal a{font-size:.85rem}
.footer-social{display:flex;gap:.6rem}
.footer-social a{width:38px;height:38px;border:1px solid rgba(246,237,233,.3);border-radius:50%;
  display:grid;place-items:center;color:var(--ww-paper);transition:.2s var(--ease)}
.footer-social a:hover{background:var(--ww-paper);color:var(--ww-green)}
.footer-social svg{width:18px;height:18px}


/* ---------- Location cards (image-top) ---------- */
.loc-cards{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:var(--space-xl);margin-top:var(--space-xl)}
.loc-card{display:flex;flex-direction:column;gap:.55rem}
.loc-card__media{border-radius:var(--radius);overflow:hidden;aspect-ratio:4/3}
.loc-card__media img{width:100%;height:100%;object-fit:cover;transition:transform .5s var(--ease)}
.loc-card:hover .loc-card__media img{transform:scale(1.05)}
.loc-card__media-link{display:block;height:100%}
.loc-card h3{font-size:1.5rem;margin-top:.4rem}
.loc-card__title-link{color:inherit;text-decoration:none;transition:color .2s var(--ease)}
.loc-card__title-link:hover,.loc-card__title-link:focus-visible{color:var(--ww-terra)}
.loc-card p{color:var(--ww-ink-70);margin:0}
.loc-card .btn-row{margin-top:.5rem}

/* ---------- Split text ---------- */
.split-text{display:grid;grid-template-columns:1fr 1fr;gap:var(--space-2xl);align-items:start}
.split-text__head h2{margin-top:.3rem}
.split-text__body{color:var(--ww-ink-70)}
.split-text__body ul{list-style:none;padding:0;margin:1.2em 0}
.split-text__body li{position:relative;padding-left:1.6em;margin-bottom:.7em}
.split-text__body li::before{content:"";position:absolute;left:0;top:.5em;width:8px;height:8px;border-radius:50%;background:var(--ww-gold)}
.split-text__body .btn-row{margin-top:var(--space-md)}

/* ---------- Editorial / news listing cards ---------- */
.post-card--bare{background:transparent;border:0;border-radius:0;overflow:visible}
.post-card--bare:hover{transform:none;box-shadow:none}
.post-card--bare .post-card__media{border-radius:var(--radius);overflow:hidden}
.post-card--bare > a > img,.post-card--bare .post-card__media img{border-radius:var(--radius)}
.post-card--bare .post-card__body{padding:var(--space-sm) 0 0}
.post-card--bare:hover img{transform:none}

.editorial__label{font-size:1.5rem;margin:var(--space-md) 0 var(--space-lg)}
.editorial{display:grid;grid-template-columns:1fr 1fr;gap:var(--space-2xl);align-items:start}
.editorial__stack{display:flex;flex-direction:column;gap:var(--space-lg)}
.post-card--feature h3{font-size:1.9rem;line-height:1.1}
.post-card--feature .post-card__body{padding-top:var(--space-md)}

.post-grid{display:grid;gap:var(--space-2xl) var(--space-xl);margin-top:var(--space-lg);align-items:start}
.post-grid .post-card>a>img{aspect-ratio:16/9;width:100%;height:auto;object-fit:cover;display:block}
.post-grid--2{grid-template-columns:1fr 1fr}
.post-grid--3{grid-template-columns:repeat(3,1fr)}

.posts-row{display:grid;grid-template-columns:1fr 1fr;gap:var(--space-xl) var(--space-2xl);margin-top:var(--space-lg)}
.post-card--row a{display:grid;grid-template-columns:40% 1fr;gap:var(--space-lg);align-items:start}
.posts-row .post-card--row a{grid-template-columns:1fr;gap:.8rem}
.posts-row .post-card--row .post-card__media{aspect-ratio:16/9;border-radius:var(--radius)}
.section--tight-bottom{padding-bottom:var(--space-md)}
.post-card--row .post-card__media{aspect-ratio:16/9;flex:none}
.post-card--row .post-card__media img{aspect-ratio:auto;width:100%;height:100%;object-fit:cover}
.post-card--row .post-card__body{padding:0;gap:.4rem}
.post-card--row h3{font-size:1.35rem;line-height:1.12}

/* News cards on the green band */
.on-dark .post-card__cat,.on-dark .post-card__read{color:rgba(255,255,255,.85);border-color:rgba(255,255,255,.4)}
.on-dark .post-card p{color:rgba(255,255,255,.82)}

/* ---------- Media + enquiry form ---------- */
.media-form{display:grid;grid-template-columns:1fr 1fr;gap:var(--space-2xl);align-items:center}
.media-form__media{border-radius:var(--radius);overflow:hidden;aspect-ratio:3/4}
.media-form__media img{width:100%;height:100%;object-fit:cover}
.ww-form{margin-top:var(--space-sm)}
.ww-hp{position:absolute!important;left:-9999px;width:1px;height:1px;overflow:hidden}
.ww-field{margin-bottom:var(--space-lg)}
.ww-field label{display:block;font-size:.92rem;color:var(--ww-ink-70);margin-bottom:.4rem}
.ww-field input,.ww-field textarea{width:100%;background:transparent;border:0;border-bottom:1px solid var(--ww-line);
  padding:.5rem 0;font-family:var(--font-sans);font-size:1rem;color:var(--ww-ink);border-radius:0}
.ww-field textarea{resize:vertical;min-height:90px}
.ww-field input:focus,.ww-field textarea:focus{outline:none;border-bottom-color:var(--ww-green)}
.ww-field textarea::placeholder{color:var(--ww-sage)}
.ww-check{display:flex;align-items:flex-start;gap:.6rem;font-size:.92rem;color:var(--ww-ink-70);margin:.4rem 0 var(--space-lg)}
.ww-check input{margin-top:.15rem;accent-color:var(--ww-green)}
.ww-check a{color:var(--ww-green);text-decoration:underline}
.ww-form__success{padding:var(--space-md) var(--space-lg);background:var(--ww-white);border-left:3px solid var(--ww-green);border-radius:var(--radius);color:var(--ww-ink)}
.ww-form__error{color:var(--ww-terra);font-size:.92rem;margin-bottom:var(--space-sm)}

/* FAQ on the green band */
.section--green .accordion__item{border-color:rgba(246,237,233,.25)}
.on-dark .accordion__trigger{color:var(--ww-white)}
.on-dark .accordion__sign::before,.on-dark .accordion__sign::after{background:var(--ww-white)}
.on-dark .accordion__panel{color:rgba(255,255,255,.82)}

/* Locations list: persistent accent on the active item */
.locations-list__item.is-active{box-shadow:inset 3px 0 0 var(--ww-terra)}
.locations-list__item{padding-left:1rem}

/* ---------- Numbered media-text index ---------- */
.media-text__index{font-size:.82rem;font-weight:600;letter-spacing:.06em;text-transform:uppercase;color:var(--ww-ink);margin-bottom:var(--space-md)}
.media-text--numbered{position:relative}
.media-text--numbered::before{content:"";position:absolute;left:0;right:0;top:calc(var(--section-y) * -1);border-top:1px solid rgba(28,28,28,.10)}

/* ---------- Configure / explainer (static, central image) ---------- */
.calc-config{display:grid;grid-template-columns:1fr 1.1fr 1fr;gap:var(--space-2xl);align-items:center;margin-top:var(--space-2xl)}
.calc-config__col{display:flex;flex-direction:column;gap:var(--space-2xl);justify-content:center}
.calc-config__item{text-align:center;display:flex;flex-direction:column;align-items:center;gap:.5rem}
.calc-config__icon{width:26px;height:26px;color:var(--ww-ink)}
.calc-config__icon svg{width:100%;height:100%}
.calc-config__item h3{font-size:1.4rem}
.calc-config__item p{font-size:.92rem;color:var(--ww-ink-70);margin:0;max-width:32ch}
.calc-config__media{aspect-ratio:1/1;border-radius:var(--radius);overflow:hidden;background:rgba(28,28,28,.05)}
.calc-config__media img{width:100%;height:100%;object-fit:cover}

/* ---------- Comparison table ---------- */
.cmp{margin-top:var(--space-xl)}
.cmp__head,.cmp__row{display:grid;grid-template-columns:1.4fr repeat(var(--cmp-cols,3),1fr);align-items:center}
.cmp__head{align-items:end;gap:var(--space-md);margin-bottom:var(--space-md)}
.cmp__col{text-align:center;display:flex;flex-direction:column;align-items:center;gap:.4rem;padding:0 .5rem}
.cmp__col-media{width:100%;aspect-ratio:4/3;border-radius:var(--radius);overflow:hidden;background:rgba(255,255,255,.06)}
.cmp__col-media img{width:100%;height:100%;object-fit:cover}
.cmp__col h3{font-size:1.25rem}
.cmp__col-sub{font-size:.85rem;opacity:.75;margin:0}
.cmp__feature-label{font-size:.82rem;text-transform:uppercase;letter-spacing:.05em;opacity:.7;align-self:end}
.cmp__row{padding:.95rem 0;border-top:1px solid var(--ww-line)}
.section--green .cmp__row,.on-dark .cmp__row{border-color:rgba(246,237,233,.18)}
.cmp__feature{font-size:.98rem}
.cmp__cell{text-align:center;font-size:.95rem}
.cmp__cell.is-highlight,.cmp__col.is-highlight{position:relative}
/* Yes and no read as a clearly defined pair: filled green tick, outlined muted cross */
.cmp__badge{display:inline-flex;align-items:center;justify-content:center;width:26px;height:26px;border-radius:50%;vertical-align:middle}
.cmp__badge--yes{background:var(--ww-green);color:#fff}
.cmp__badge--no{background:transparent;border:1.5px solid var(--ww-line);color:var(--ww-ink-70)}
.cmp__yes{width:15px;height:15px;display:block;stroke-width:2}
.cmp__no{width:13px;height:13px;display:block;stroke-width:2;opacity:1}
.on-dark .cmp__badge--yes{background:var(--ww-gold);color:var(--ww-green)}
.on-dark .cmp__badge--no{border-color:rgba(246,237,233,.4);color:rgba(246,237,233,.65)}
.section--green .cmp__badge--yes{background:var(--ww-gold);color:var(--ww-green)}
.section--green .cmp__badge--no{border-color:rgba(246,237,233,.4);color:rgba(246,237,233,.65)}

/* ---------- Calculator / comparison responsive ---------- */
@media (max-width:900px){
  .calc-config{grid-template-columns:1fr;gap:var(--space-2xl)}
  .calc-config__media{order:-1;aspect-ratio:4/3}
  .cmp{overflow-x:auto}
  .cmp__head,.cmp__row{grid-template-columns:1.2fr repeat(var(--cmp-cols,3),minmax(96px,1fr));min-width:560px}
}

/* ---------- Hero byline (case study) ---------- */
.hero__byline{display:flex;align-items:center;justify-content:center;gap:.65rem;margin-top:var(--space-md);flex-wrap:wrap}
.hero__byline-logo img{width:42px;height:42px;border-radius:50%;object-fit:cover;display:block}
.hero__byline-name{font-weight:600}
.hero__byline-meta{opacity:.82;font-size:.9rem}

/* ---------- Contained image band ---------- */
.image-band__contained{border-radius:var(--radius);overflow:hidden}
.image-band__contained img{width:100%;height:auto;display:block}

/* ---------- Split with points ---------- */
.split-points{display:grid;grid-template-columns:1fr 1fr;gap:var(--space-2xl);align-items:start}
.split-points__points{display:grid;grid-template-columns:1fr 1fr;gap:var(--space-lg) var(--space-xl);margin:var(--space-lg) 0}
.split-points__point h3{font-size:1.2rem;margin:0 0 .3rem}
.split-points__point p{font-size:.95rem;color:var(--ww-ink-70);margin:0}

/* ---------- Timeline (alternating) ---------- */
.timeline__head{text-align:center;max-width:62ch;margin:0 auto var(--space-3xl)}
.timeline__track{position:relative;max-width:1000px;margin-inline:auto}
.timeline__track::before{content:"";position:absolute;left:50%;top:.5rem;bottom:.5rem;width:1px;background:rgba(28,28,28,.15);transform:translateX(-50%)}
.section--green .timeline__track::before,.on-dark .timeline__track::before{background:rgba(246,237,233,.28)}
.timeline__step{position:relative;display:grid;grid-template-columns:1fr 1fr;column-gap:var(--space-3xl)}
.timeline__step + .timeline__step{margin-top:var(--space-2xl)}
.timeline__step:nth-child(odd) .timeline__content{grid-column:1;text-align:right}
.timeline__step:nth-child(even) .timeline__content{grid-column:2;text-align:left}
.timeline__dot{position:absolute;left:50%;top:.5rem;transform:translateX(-50%);width:11px;height:11px;border-radius:50%;background:var(--ww-green);z-index:1}
.on-dark .timeline__dot{background:var(--ww-paper)}
.timeline__label,.timeline__title{font-family:var(--font-serif);font-size:1.55rem;line-height:1.1;margin:0}
.timeline__title{margin:.1rem 0 .7rem}
.timeline__text{margin:0 0 var(--space-md)}
.timeline__media{border-radius:var(--radius);overflow:hidden;aspect-ratio:4/3;max-width:440px}
.timeline__step:nth-child(odd) .timeline__media{margin-left:auto}
.timeline__media img{width:100%;height:100%;object-fit:cover;display:block}

/* Last section before the footer should not add an empty gap */
main > .section:last-child{padding-bottom:var(--space-lg)}

/* ---------- Tabs ---------- */
.tabs{margin-top:var(--space-xl)}
.tabs__list{display:flex;justify-content:center;gap:var(--space-lg);border-bottom:1px solid var(--ww-line);margin-bottom:var(--space-2xl);flex-wrap:wrap}
.tabs__tab{background:none;border:0;padding:.65rem .2rem;font-family:var(--font-sans);font-size:1rem;color:var(--ww-ink-70);cursor:pointer;border-bottom:2px solid transparent;margin-bottom:-1px;transition:color .2s var(--ease),border-color .2s var(--ease)}
.tabs__tab:hover{color:var(--ww-ink)}
.tabs__tab.is-active{color:var(--ww-ink);border-bottom-color:var(--ww-terra)}
.tabs__panel[hidden]{display:none}
.tab-panel{display:grid;grid-template-columns:1fr 1fr;gap:var(--space-2xl);align-items:center}
.tab-panel__body h3{font-size:clamp(1.6rem,3vw,2.1rem)}
.tab-panel__media{border-radius:var(--radius);overflow:hidden;aspect-ratio:4/3}
.tab-panel__media img{width:100%;height:100%;object-fit:cover}

@media (max-width:860px){
  .split-points,.tab-panel{grid-template-columns:1fr;gap:var(--space-xl)}
  .split-points__points{grid-template-columns:1fr 1fr}
  .timeline__head{text-align:left;margin-bottom:var(--space-2xl)}
  .timeline__head .btn-row,.timeline__head .lead{margin-inline:0!important;justify-content:flex-start}
  .timeline__track::before{left:5px;transform:none}
  .timeline__step{grid-template-columns:1fr;column-gap:0;padding-left:1.9rem}
  .timeline__step .timeline__content,.timeline__step:nth-child(odd) .timeline__content,.timeline__step:nth-child(even) .timeline__content{grid-column:1;text-align:left}
  .timeline__dot{left:5px}
  .timeline__step:nth-child(odd) .timeline__media{margin-left:0}
  .tab-panel__media{order:-1}
}

/* ---------- Prose / long-form (legal, policy) ---------- */
.prose-head{max-width:62ch;margin-bottom:var(--space-2xl)}
.prose-head__title{font-size:clamp(2.2rem,5vw,3.2rem)}
.prose-head__meta{color:var(--ww-ink-70);font-size:.92rem}
.prose-layout{display:grid;grid-template-columns:minmax(0,1fr) 260px;gap:var(--space-3xl);align-items:start}
.prose-layout--single{display:block}
.prose-layout--single .prose{max-width:72ch;margin-inline:auto}
.prose{color:var(--ww-ink);max-width:72ch}
.prose > *:first-child{margin-top:0}
.prose__lead{font-size:1.18rem;line-height:1.6;font-weight:500;color:var(--ww-ink);margin:0 0 var(--space-lg)}
.prose p{margin:0 0 1.25rem;line-height:1.75}
.prose h2{font-family:var(--font-serif);font-weight:600;font-size:clamp(1.9rem,3vw,2.4rem);line-height:1.12;margin:2.6rem 0 1rem}
.prose h3{font-family:var(--font-serif);font-weight:600;font-size:1.5rem;line-height:1.18;margin:2rem 0 .7rem}
.prose h4{font-family:var(--font-sans);font-weight:700;font-size:1.2rem;margin:1.6rem 0 .5rem}
.prose h5{font-family:var(--font-sans);font-weight:700;font-size:1.05rem;margin:1.35rem 0 .5rem}
.prose h6{font-family:var(--font-sans);font-weight:700;font-size:.92rem;text-transform:uppercase;letter-spacing:.05em;color:var(--ww-ink-70);margin:1.2rem 0 .5rem}
.prose a{color:var(--ww-green);text-decoration:underline;text-underline-offset:2px}
.prose a:hover{color:var(--ww-terra)}
.prose ul,.prose ol{margin:0 0 1.25rem;padding-left:1.3rem}
.prose li{margin-bottom:.5rem;line-height:1.7}
.prose blockquote{margin:1.75rem 0;padding-left:1.25rem;border-left:3px solid var(--ww-sage-gold);font-style:italic;color:var(--ww-ink-70)}
.prose blockquote p{margin-bottom:.5rem}
.prose figure{margin:2rem 0}
.prose figure img,.prose img{width:100%;height:auto;border-radius:var(--radius);display:block}
.prose figcaption{font-size:.85rem;color:var(--ww-ink-70);margin-top:.6rem}
.prose hr{border:0;border-top:1px solid var(--ww-line);margin:2.5rem 0}
.prose-toc{position:sticky;top:96px}
.prose-toc__title{font-size:.78rem;font-weight:600;letter-spacing:.06em;text-transform:uppercase;color:var(--ww-ink-70);margin:0 0 .75rem;text-align:right}
.prose-toc__list{list-style:none;margin:0;padding:0}
.prose-toc__list a{display:block;padding:.45rem .85rem;border-radius:var(--radius);color:var(--ww-ink-70);text-decoration:none;text-align:right;font-size:.95rem;line-height:1.3;transition:color .2s var(--ease),background-color .2s var(--ease)}
.prose-toc__list a:hover{color:var(--ww-ink)}
.prose-toc__list a.is-active{background:var(--ww-green);color:var(--ww-paper)}
.prose-toc__list a.lvl-h3{font-size:.88rem;padding-right:1.5rem;color:var(--ww-ink-70)}

@media (max-width:900px){
  .prose-layout{grid-template-columns:1fr;gap:var(--space-xl)}
  .prose-toc{position:static;order:-1;border-bottom:1px solid var(--ww-line);padding-bottom:var(--space-md)}
  .prose-toc__title,.prose-toc__list a{text-align:left}
  .prose-toc__list a.lvl-h3{padding-right:.85rem;padding-left:1.5rem}
  .prose{max-width:none}
}

/* ---------- Events grid (date-badge cards) ---------- */
.events-head{display:flex;justify-content:space-between;align-items:flex-end;gap:var(--space-lg);margin-bottom:var(--space-2xl);flex-wrap:wrap}
.events-head .section-head{margin:0}
.events-head__all{white-space:nowrap}
.events-grid{display:grid;grid-template-columns:repeat(var(--cols,3),minmax(0,1fr));gap:var(--space-xl)}
.event-card{display:flex;flex-direction:column}
.event-card__media{position:relative;display:block;border-radius:var(--radius);overflow:hidden;aspect-ratio:4/3;background:rgba(28,28,28,.06)}
.event-card__media img{width:100%;height:100%;object-fit:cover;transition:transform .5s var(--ease)}
.event-card__media:hover img{transform:scale(1.04)}
.event-card__date{position:absolute;top:.85rem;right:.85rem;display:flex;flex-direction:column;align-items:center;gap:.05rem;min-width:58px;padding:.45rem .5rem;border-radius:calc(var(--radius) - 4px);background:rgba(28,28,28,.92);color:var(--ww-paper);line-height:1}
.event-card__date .dow{font-size:.66rem;font-weight:600;text-transform:uppercase;letter-spacing:.05em;opacity:.85}
.event-card__date .day{font-family:var(--font-serif);font-size:1.55rem;line-height:1}
.event-card__date .my{font-size:.66rem;opacity:.85}
.event-card__body{padding-top:var(--space-md);display:flex;flex-direction:column;gap:.4rem}
.event-card__cat{margin:0}
.event-card__title{font-family:var(--font-serif);font-size:1.3rem;line-height:1.2;margin:.1rem 0}
.event-card__title a{color:inherit;text-decoration:none}
.event-card__title a:hover{color:var(--ww-terra)}
.on-dark .event-card__title a:hover{color:var(--ww-gold)}
.event-card__loc{display:flex;align-items:center;gap:.35rem;font-size:.9rem;color:inherit;opacity:.8;margin:0}
.event-card__loc svg{width:14px;height:14px;flex:none}
.event-card__text{font-size:.95rem;color:inherit;opacity:.82;margin:.15rem 0 .5rem}
.event-card .btn--text{align-self:flex-start;padding-inline:0}

@media (max-width:900px){ .events-grid{grid-template-columns:1fr 1fr} }
@media (max-width:620px){ .events-grid{grid-template-columns:1fr} .events-head{align-items:flex-start} }

/* ---------- Hero meta row (event) ---------- */
.hero__meta{display:flex;flex-wrap:wrap;justify-content:center;gap:1.1rem 1.5rem;margin-top:var(--space-md)}
.hero__meta-item{display:inline-flex;align-items:center;gap:.45rem;font-size:.92rem;opacity:.92}
.hero__meta-item svg{width:16px;height:16px;flex:none}

/* ---------- Prose share + author footer ---------- */
.tag-pill{display:inline-block;padding:.3rem .75rem;border:1px solid var(--ww-line);border-radius:999px;font-size:.8rem;color:var(--ww-ink-70);line-height:1.2}
.prose-share{display:flex;justify-content:space-between;align-items:center;gap:var(--space-md);flex-wrap:wrap;margin-top:var(--space-2xl);padding-top:var(--space-lg);border-top:1px solid var(--ww-line)}
.prose-share__left{display:flex;align-items:center;gap:.85rem}
.prose-share__label{font-weight:600;font-size:.9rem}
.prose-share__icons{display:inline-flex;gap:.65rem}
.prose-share__icons svg{width:18px;height:18px;color:var(--ww-ink-70)}
.prose-share__tags{display:flex;flex-wrap:wrap;gap:.4rem}
.prose-author{display:flex;align-items:center;gap:.8rem;margin-top:var(--space-lg)}
.prose-author__avatar img{width:44px;height:44px;border-radius:50%;object-fit:cover;display:block;background:rgba(28,28,28,.06)}
.prose-author__meta{display:flex;flex-direction:column;line-height:1.35}
.prose-author__name{font-weight:600;font-size:.92rem}
.prose-author__role{font-size:.85rem;color:var(--ww-ink-70)}

/* ---------- Pill tabs (schedule, pricing) ---------- */
.tabs--pill .tabs__list{display:flex;justify-content:center;gap:.25rem;border-bottom:0;width:fit-content;max-width:100%;margin:0 auto var(--space-2xl);background:rgba(28,28,28,.06);border-radius:999px;padding:.3rem;flex-wrap:wrap}
.tabs--pill .tabs__tab{border:0;border-radius:999px;padding:.55rem 1.15rem;margin:0;color:var(--ww-ink-70)}
.tabs--pill .tabs__tab:hover{color:var(--ww-ink)}
.tabs--pill .tabs__tab.is-active{background:var(--ww-paper);color:var(--ww-ink);box-shadow:0 1px 2px rgba(28,28,28,.12)}

/* ---------- Schedule / agenda ---------- */
.schedule{display:flex;flex-direction:column}
.schedule__row{display:grid;grid-template-columns:72px minmax(0,1fr) 130px 150px auto;gap:var(--space-md) var(--space-lg);align-items:center;padding:var(--space-md) .25rem;border-top:1px solid var(--ww-line)}
.schedule__row:last-child{border-bottom:1px solid var(--ww-line)}
.schedule__time{font-weight:600;font-size:.92rem}
.schedule__main{display:flex;align-items:center;gap:.7rem;flex-wrap:wrap}
.schedule__title{font-family:var(--font-serif);font-size:1.18rem;margin:0}
.schedule__tags{display:inline-flex;gap:.4rem;flex-wrap:wrap}
.schedule__host,.schedule__loc{font-size:.88rem;color:var(--ww-ink-70)}
.schedule__link{padding-inline:0;white-space:nowrap;justify-self:end}
@media (max-width:820px){
  .schedule__row{grid-template-columns:64px 1fr;row-gap:.35rem}
  .schedule__host,.schedule__loc{grid-column:2;font-size:.85rem}
  .schedule__link{grid-column:2;justify-self:start}
}

/* ---------- Pricing ---------- */
.pricing-card{max-width:720px;margin:0 auto;border:1px solid var(--ww-line);border-radius:var(--radius);padding:var(--space-xl);background:var(--ww-paper-light,#FBF7F3)}
.pricing-card__head{display:flex;justify-content:space-between;align-items:flex-start;gap:var(--space-md);padding-bottom:var(--space-md);border-bottom:1px solid var(--ww-line)}
.pricing-card__name{font-family:var(--font-serif);font-size:1.45rem;margin:0}
.pricing-card__desc{color:var(--ww-ink-70);margin:.2rem 0 0;font-size:.95rem}
.pricing-card__price{font-family:var(--font-serif);font-size:2.6rem;line-height:1;white-space:nowrap}
.pricing-card__includes{font-weight:600;font-size:.9rem;margin:var(--space-md) 0 .85rem}
.pricing-card__features{list-style:none;margin:0 0 var(--space-lg);padding:0;display:grid;grid-template-columns:1fr 1fr;gap:.55rem 1.5rem}
.pricing-card__features li{display:flex;align-items:flex-start;gap:.55rem;font-size:.95rem}
.pricing-tick{width:15px;height:15px;color:var(--ww-sage-gold);flex:none;margin-top:.18rem}
.pricing-card__cta{display:flex;width:100%;justify-content:center}
.case-study__meta{display:flex;flex-wrap:wrap;align-items:center;gap:.6rem}
.case-study__read{display:inline-block;padding:.15rem .6rem;border:1px solid var(--ww-line);border-radius:999px;font-size:.78rem;color:var(--ww-ink-70)}
.on-dark .case-study__read,.section--green .case-study__read{border-color:rgba(246,237,233,.35);color:rgba(246,237,233,.8)}
.pricing-note{max-width:720px;margin:1.25rem auto 0;text-align:center;font-size:var(--fs-small);color:var(--ww-ink-70)}
/* VO application */
.voa-open{display:flex;justify-content:center}
.voa-flash{max-width:640px;margin:0 auto var(--space-lg);padding:1rem 1.25rem;border-radius:var(--radius);text-align:center;font-size:.95rem}
.voa-flash--ok{background:var(--ww-sage);color:var(--ww-green)}
.voa-flash--err{background:#f6e3dd;color:var(--ww-terra)}
.voa-hp{position:absolute;left:-9999px;width:1px;height:1px;overflow:hidden}
.voa-modal{position:fixed;inset:0;z-index:1000;display:flex;align-items:center;justify-content:center;padding:1.5rem}
.voa-modal[hidden]{display:none}
.voa-modal__overlay{position:absolute;inset:0;background:rgba(17,35,50,.55)}
.voa-modal__dialog{position:relative;z-index:1;width:100%;max-width:640px;max-height:90vh;overflow-y:auto;background:var(--ww-paper);border-radius:var(--radius);padding:clamp(1.5rem,1rem+2vw,2.5rem);box-shadow:0 24px 60px rgba(17,35,50,.28)}
.voa-modal__close{position:absolute;top:.85rem;right:1rem;background:none;border:0;font-size:1.9rem;line-height:1;color:var(--ww-ink-70);cursor:pointer}
.voa-modal__close:hover{color:var(--ww-green)}
.voa-steps{display:flex;flex-wrap:wrap;gap:.4rem 1rem;list-style:none;margin:0 0 1.75rem;padding:0;counter-reset:voa}
.voa-steps li{font-size:var(--fs-small);color:var(--ww-ink-70);display:flex;align-items:center;gap:.4rem}
.voa-steps li::before{counter-increment:voa;content:counter(voa);display:grid;place-items:center;width:1.4rem;height:1.4rem;border-radius:50%;background:var(--ww-sand);color:var(--ww-ink-70);font-size:.75rem;font-weight:600}
.voa-steps li.is-active{color:var(--ww-green);font-weight:600}
.voa-steps li.is-active::before{background:var(--ww-green);color:var(--ww-paper)}
.voa-step{border:0;margin:0;padding:0;min-inline-size:0}
.voa-step[hidden]{display:none}
.voa-step__title{font-family:var(--font-serif);font-size:1.5rem;margin:0 0 1.25rem;padding:0;color:var(--ww-green)}
.voa-choices{display:flex;flex-direction:column;gap:.75rem;margin-bottom:1.75rem}
.voa-choice{display:block;position:relative;cursor:pointer}
.voa-choice input{position:absolute;opacity:0}
.voa-choice__body{display:flex;justify-content:space-between;align-items:center;gap:1rem;padding:1rem 1.25rem;border:1.5px solid var(--ww-line);border-radius:var(--radius);transition:border-color .2s var(--ease),background .2s var(--ease)}
.voa-choice input:checked+.voa-choice__body{border-color:var(--ww-green);background:var(--ww-paper-light,#FBF7F3)}
.voa-choice input:focus-visible+.voa-choice__body{outline:2px solid var(--ww-green);outline-offset:2px}
.voa-choice__name{font-weight:600;color:var(--ww-ink)}
.voa-choice__price{color:var(--ww-terra);font-weight:600;white-space:nowrap}
.voa-grid{display:grid;grid-template-columns:1fr 1fr;gap:1rem;margin-bottom:1.75rem}
.voa-field{display:flex;flex-direction:column;gap:.35rem;font-size:var(--fs-small);color:var(--ww-ink-70)}
.voa-field--wide{grid-column:1/-1}
.voa-field input{padding:.7rem .85rem;border:1.5px solid var(--ww-line);border-radius:8px;font:inherit;color:var(--ww-ink);background:var(--ww-white)}
.voa-field input:focus{outline:2px solid var(--ww-green);outline-offset:1px;border-color:var(--ww-green)}
.voa-review{display:grid;grid-template-columns:auto 1fr;gap:.5rem 1.25rem;margin:0 0 1.5rem;font-size:.95rem}
.voa-review dt{color:var(--ww-ink-70)}
.voa-review dd{margin:0;font-weight:600;color:var(--ww-ink)}
.voa-consent{display:flex;gap:.6rem;align-items:flex-start;font-size:var(--fs-small);color:var(--ww-ink-70);margin-bottom:1.5rem}
.voa-nav{display:flex;justify-content:space-between;align-items:center;gap:1rem}
@media(max-width:560px){.voa-grid{grid-template-columns:1fr}}
@media (max-width:620px){.pricing-card__features{grid-template-columns:1fr}.pricing-card__head{flex-direction:column}.pricing-card__price{font-size:2.2rem}}

/* ---------- Microinteractions ---------- */
.btn{transition:background .2s var(--ease),color .2s var(--ease),border-color .2s var(--ease),transform .2s var(--ease),box-shadow .2s var(--ease)}
.btn--primary{box-shadow:0 2px 8px rgba(25,48,40,.12)}
.btn--primary:hover,.btn--secondary:hover{transform:translateY(-2px)}
.btn--primary:hover{box-shadow:0 8px 20px rgba(25,48,40,.22)}

.feature-card,.post-card{transition:transform .28s var(--ease),box-shadow .28s var(--ease)}
.feature-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-md)}
.post-card,.feature-card--wide{overflow:hidden}
.post-card img,.feature-card--wide .feature-card__media img{transition:transform .5s var(--ease)}
.post-card:hover img,.feature-card--wide:hover .feature-card__media img{transform:scale(1.05)}

.icon-col__icon,.service__icon,.feature-card__icon{transition:transform .25s var(--ease)}
.icon-col:hover .icon-col__icon,.service:hover .service__icon{transform:scale(1.12) rotate(-2deg)}

.media-text__media,.media-features__media{overflow:hidden;border-radius:var(--radius)}
.media-text__media img,.media-features__media img,.case-study .media-text__media img{transition:transform .6s var(--ease)}
.media-text:hover .media-text__media img,.media-features:hover .media-features__media img{transform:scale(1.03)}

.locations-list:hover .locations-list__item{opacity:.5}
.locations-list .locations-list__item:hover,.locations-list .locations-list__item:focus-within,.locations-list .locations-list__item.is-active{opacity:1}

.stat{transition:transform .25s var(--ease)}
.stat:hover{transform:translateX(4px)}

.article-tags a,.post-card__cat{transition:.2s var(--ease)}

/* Sticky header gains a soft shadow once scrolled */
.site-header{transition:box-shadow .25s var(--ease)}
.site-header.is-scrolled{box-shadow:0 4px 20px rgba(28,28,28,.07)}

/* Scroll-reveal (class added by JS, so content is never hidden without JS) */
@media (prefers-reduced-motion:no-preference){
  .ww-reveal{opacity:0;transform:translateY(18px);transition:opacity .6s var(--ease),transform .6s var(--ease)}
  .ww-reveal.is-visible{opacity:1;transform:none}
}

/* ---------- Responsive ---------- */
@media (max-width:1024px){
  .footer-main{grid-template-columns:repeat(3,1fr);row-gap:var(--space-xl)}
  .footer-brand{grid-column:1 / -1}
}
@media (max-width:900px){
  .stats-layout{grid-template-columns:1fr}
  .feature-grid--split{grid-template-columns:1fr 1fr}
  .feature-card--wide{grid-column:1 / -1;grid-template-columns:minmax(0,40%) 1fr}
  .footer-grid{grid-template-columns:1fr 1fr}
}
@media (max-width:768px){
  .section-head--split{grid-template-columns:1fr;gap:var(--space-md);align-items:start}
  .footer-news{grid-template-columns:1fr;gap:var(--space-md)}
  .footer-news__form{margin-left:0}
  .footer-main{grid-template-columns:repeat(2,1fr)}
  .feature-grid--split{grid-template-columns:1fr}
  .feature-card--wide{grid-template-columns:1fr}
  .feature-card__media{min-height:200px}
  .media-text,.media-features{grid-template-columns:1fr;gap:var(--space-lg)}
  .media-text.case-study{grid-template-columns:1fr}
  .locations-list{grid-template-columns:1fr;gap:var(--space-lg)}
  .split-text{grid-template-columns:1fr;gap:var(--space-md)}
  .editorial{grid-template-columns:1fr;gap:var(--space-xl)}
  .media-form{grid-template-columns:1fr;gap:var(--space-lg)}
  .media-form__media{aspect-ratio:4/3;order:-1}
  .post-grid--2,.post-grid--3,.posts-row{grid-template-columns:1fr}
  .post-card--row a{grid-template-columns:150px 1fr;gap:var(--space-md)}
  .locations-list__media{min-height:300px;order:-1}
  .media-features__media{min-height:280px}
  .media-text--left .media-text__media,.media-features--right .media-features__media{order:0}
  .feature-list{grid-template-columns:1fr 1fr}
  /* Compact the header row so the logo, CTA and toggle always fit and never distort */
  .site-header__inner{gap:.6rem;min-height:64px}
  .custom-logo,.custom-logo-link img{height:34px}
  .header__actions{gap:.5rem;flex:0 0 auto}
  .header__actions .btn--secondary{display:none}
  .header__actions .btn--primary{padding:.5rem .85rem;font-size:.85rem}
  .nav-toggle{display:block;order:3;flex:none}

  /* Off-canvas mobile panel. visibility:hidden guarantees nothing peeks when closed. */
  .nav{position:fixed;inset:64px 0 auto 0;z-index:49;background:var(--ww-paper);flex-direction:column;
    align-items:stretch;gap:0;padding:.5rem var(--gutter) 1.25rem;border-bottom:1px solid var(--ww-line);
    box-shadow:0 16px 30px rgba(28,28,28,.10);
    transform:translateY(-115%);visibility:hidden;pointer-events:none;
    transition:transform .28s var(--ease),visibility .28s var(--ease);
    max-height:calc(100dvh - 64px);overflow:auto}
  .nav[data-open="true"]{transform:none;visibility:visible;pointer-events:auto}

  /* All items share the same left edge and full width, so no odd indentation */
  .nav__list{flex-direction:column;align-items:stretch;gap:0;width:100%}
  .nav__list>li{position:relative;border-bottom:1px solid var(--ww-line)}
  .nav__list>li:last-child{border-bottom:0}
  .nav__list a{display:block;padding:1.05rem .1rem}
  .nav__list>li>a{padding:1.1rem .1rem;border-radius:0;font-size:1.12rem;font-weight:600}
  .nav__caret{display:none}

  /* Submenus: aligned to the same left edge, just a touch smaller to read as children */
  .sub-menu,.mega{display:none;position:static;width:auto;max-width:none;opacity:1;visibility:visible;
    transform:none;box-shadow:none;border:0;background:transparent;padding:.1rem 0 .7rem;margin:0}
  .has-sub.is-open>.sub-menu,.has-sub.is-open>.mega{display:block}
  .sub-menu a{padding:.72rem .1rem;font-size:1rem;color:var(--ww-ink-70)}
  .sub-menu>li{border:0}

  /* Full-width tap target for expanding a section */
  .has-sub>.nav__sub-toggle{display:flex;align-items:center;justify-content:center;position:absolute;top:0;right:0;
    width:3.4rem;height:3.4rem;background:none;border:0;padding:0;cursor:pointer}
  .nav__sub-toggle-caret{width:10px;height:10px;border-right:2px solid var(--ww-green);border-bottom:2px solid var(--ww-green);transform:rotate(45deg);margin-top:-4px;transition:transform .2s}
  .has-sub.is-open>.nav__sub-toggle .nav__sub-toggle-caret{transform:rotate(225deg);margin-top:2px}

  .mega__inner{grid-template-columns:1fr;gap:.35rem}
  /* Selector strong enough to beat .nav__list a{display:block} so the card is a row */
  .nav__list a.mega__card{display:flex;flex-direction:row;align-items:center;gap:.85rem;padding:.5rem .1rem}
  .mega__thumb{width:64px;height:64px;flex:0 0 64px;aspect-ratio:auto;border-radius:8px;overflow:hidden}
  .mega__thumb img{width:100%;height:100%;object-fit:cover}
  .mega__text{flex:1 1 auto;min-width:0;display:flex;flex-direction:column;gap:.1rem}
  .mega__area{margin-top:0}
  .mega__addr{margin-top:0}
  .mega__foot{margin-top:.3rem;padding-top:.6rem}
  .mega__all{padding:.4rem .1rem;display:inline-block}
}
@media (max-width:560px){
  .footer-main{grid-template-columns:1fr}
  .footer-bottom{flex-direction:column;align-items:flex-start}
  .feature-list{grid-template-columns:1fr}
  .btn-row{flex-direction:column;align-items:stretch}
  .hero .btn-row,.cta .btn-row{align-items:center;flex-direction:row;justify-content:center}
}
@media (prefers-reduced-motion:reduce){*{animation:none!important;transition:none!important;scroll-behavior:auto}}

/* ===================== PPC landing pages ===================== */
/* Minimal header */
.ppc-header{position:sticky;top:0;z-index:100;background:var(--ww-paper);border-bottom:1px solid var(--ww-line)}
.ppc-header__inner{display:flex;align-items:center;justify-content:space-between;gap:var(--space-md);padding:.7rem 0}
.ppc-header__inner img{max-height:44px;width:auto}
.ppc-header__actions{display:flex;align-items:center;gap:var(--space-md)}
.ppc-header__phone{display:inline-flex;align-items:center;gap:.4em;font-weight:600;color:var(--ww-green)}
.ppc-header__phone svg{width:1.1em;height:1.1em;fill:currentColor}
@media(max-width:640px){.ppc-header__phone span{display:none}}

/* Hero with inline form */
.ppc-hero{position:relative;isolation:isolate;color:var(--ww-white);background:var(--ww-green)}
.ppc-hero__bg{position:absolute;inset:0;z-index:-2}
.ppc-hero__bg img{width:100%;height:100%;object-fit:cover}
.ppc-hero__overlay{position:absolute;inset:0;z-index:-1;background:linear-gradient(100deg,rgba(25,48,40,.94) 0%,rgba(25,48,40,.74) 52%,rgba(25,48,40,.55) 100%)}
.ppc-hero__inner{display:grid;grid-template-columns:1.05fr .95fr;gap:var(--space-2xl);align-items:center;padding:var(--space-3xl) 0}
.ppc-hero__content{max-width:36rem}
.ppc-hero__content h1{font-size:var(--fs-h1)}
.ppc-hero__bullets{list-style:none;margin:var(--space-sm) 0 0;padding:0;display:grid;gap:.6rem}
.ppc-hero__bullets li{display:flex;align-items:flex-start;gap:.6em;font-weight:500}
.ppc-hero__bullets svg{flex:none;width:1.15em;height:1.15em;margin-top:.15em;fill:var(--ww-gold)}
.ppc-hero__cta{display:flex;flex-wrap:wrap;gap:var(--space-sm);margin-top:var(--space-md)}

.btn--light{background:var(--ww-white);color:var(--ww-green)}
.btn--light:hover{background:var(--ww-paper)}
.btn--light svg{width:1.05em;height:1.05em;fill:currentColor}
.btn--ghost-light{background:transparent;color:var(--ww-white);box-shadow:inset 0 0 0 1px rgba(255,255,255,.6)}
.btn--ghost-light:hover{background:rgba(255,255,255,.12)}
.btn--block{width:100%;justify-content:center}

.ppc-form-card{background:var(--ww-white);border-radius:var(--radius-lg);padding:var(--space-lg);box-shadow:var(--shadow-md);color:var(--ww-ink)}
.ppc-form-card__title{font-size:var(--fs-h3);margin:0 0 var(--space-sm)}
.ppc-form-card .btn--primary{background:var(--ww-green);color:var(--ww-white)}
.ppc-form-card .btn--primary:hover{background:var(--ww-green-hover)}
.ppc-form-card .ww-field{margin-bottom:.7rem}
.ppc-form-card .ww-field label{display:block;font-size:var(--fs-small);font-weight:600;margin-bottom:.25rem}
.ppc-form-card .ww-field input,.ppc-form-card .ww-field textarea{width:100%;padding:.6em .75em;border:1px solid var(--ww-line);border-radius:var(--radius);font:inherit;background:var(--ww-paper-light)}
.ppc-form-card .ww-check{display:flex;gap:.5em;align-items:flex-start;font-size:var(--fs-small);margin:.4rem 0 .9rem}
.ppc-form-card .ww-hp{position:absolute;left:-9999px}
.ppc-form-card .ww-form__error{color:var(--ww-terra);font-size:var(--fs-small);margin-bottom:.6rem}

@media(max-width:880px){.ppc-hero__inner{grid-template-columns:1fr;gap:var(--space-xl);padding:var(--space-2xl) 0}.ppc-hero__content{max-width:none}}

/* Product tiles */
.product-tiles{display:grid;grid-template-columns:repeat(auto-fit,minmax(190px,1fr));gap:var(--space-md);margin-top:var(--space-lg)}
.product-tile{display:flex;align-items:center;gap:.8em;padding:var(--space-md);background:var(--ww-white);border:1px solid var(--ww-line);border-radius:var(--radius-lg);color:var(--ww-ink);transition:transform .15s ease,box-shadow .15s ease}
a.product-tile:hover{transform:translateY(-2px);box-shadow:var(--shadow-md)}
.product-tile__icon{display:inline-flex;width:2.5rem;height:2.5rem;align-items:center;justify-content:center;background:var(--ww-sand);border-radius:var(--radius);flex:none}
.product-tile__icon svg{width:1.3rem;height:1.3rem;fill:var(--ww-green)}
.product-tile__title{font-weight:600;flex:1}
.product-tile__arrow svg{width:1.1rem;height:1.1rem;fill:var(--ww-green)}

/* Benefit / why it matters */
.benefit{margin-top:var(--space-lg)}
.benefit--right,.benefit--left{display:grid;grid-template-columns:1fr 1fr;gap:var(--space-2xl);align-items:center}
.benefit--left .benefit__media{order:-1}
.benefit__media img{width:100%;height:100%;object-fit:cover;border-radius:var(--radius-lg)}
.benefit__items{display:grid;gap:var(--space-lg)}
.benefit__item h3{font-size:var(--fs-h3);margin:0}
@media(max-width:880px){.benefit--right,.benefit--left{grid-template-columns:1fr;gap:var(--space-lg)}.benefit--left .benefit__media{order:0}}

/* Slim footer */
.ppc-footer{background:var(--ww-green);color:var(--ww-paper)}
.ppc-footer__inner{display:flex;flex-wrap:wrap;align-items:center;gap:var(--space-md) var(--space-2xl);padding:var(--space-xl) 0}
.ppc-footer__brand .footer-brand__word{color:var(--ww-paper);font-family:var(--font-display,serif);font-size:var(--fs-h3)}
.ppc-footer__brand img{max-height:40px;width:auto}
.ppc-footer__locations{list-style:none;margin:0;padding:0;display:grid;gap:.3rem;font-size:var(--fs-small);flex:1 1 320px}
.ppc-footer__locations a{color:rgba(246,237,233,.85)}
.ppc-footer__locations a:hover{color:var(--ww-white)}
.ppc-footer__contact{display:grid;gap:.2rem;font-size:var(--fs-small)}
.ppc-footer__contact a{color:var(--ww-paper)}
.ppc-footer__contact a:hover{color:var(--ww-white)}
.ppc-footer__bar{border-top:1px solid rgba(246,237,233,.18)}
.ppc-footer__bar-inner{display:flex;flex-wrap:wrap;justify-content:space-between;gap:.5rem var(--space-md);padding:var(--space-sm) 0;font-size:var(--fs-small);color:rgba(246,237,233,.78)}
.ppc-footer__links{display:flex;gap:var(--space-md)}
.ppc-footer__links a{color:rgba(246,237,233,.78)}
.ppc-footer__links a:hover{color:var(--ww-white)}

/* Media-text optional bullet list */
.media-text__list{list-style:none;margin:.4rem 0 0;padding:0;display:grid;gap:.55rem}
.media-text__list li{display:flex;align-items:flex-start;gap:.6em}
.media-text__list svg{flex:none;width:1.1em;height:1.1em;margin-top:.18em;fill:var(--ww-green)}
.section--green .media-text__list svg,.on-dark .media-text__list svg{fill:var(--ww-gold)}

/* How to find us (map) */
.find-us{display:grid;grid-template-columns:1fr 1.2fr;gap:var(--space-2xl);align-items:stretch;margin-top:var(--space-lg)}
.find-us--left .find-us__map{order:-1}
.find-us--full{display:block}
.find-us--full .find-us__info{margin-bottom:var(--space-lg)}
.find-us--full .find-us__map,.find-us--full .find-us__map iframe{min-height:440px}
.find-us__address{font-style:normal;font-size:1.05rem;line-height:1.5;font-weight:500;margin:0}
.find-us__list{list-style:none;margin:.25rem 0 0;padding:0;display:flex;flex-direction:column}
.find-us__list li{display:grid;grid-template-columns:104px 1fr;gap:1.1rem;padding:.9rem 0;border-top:1px solid var(--ww-line)}
.find-us__list li:last-child{border-bottom:1px solid var(--ww-line)}
.find-us__k{display:flex;align-items:center;gap:.45rem;font-size:.72rem;letter-spacing:.07em;text-transform:uppercase;font-weight:600;color:var(--ww-terra);padding-top:.12rem}
.find-us__icon{width:17px;height:17px;flex:none;color:var(--ww-terra)}
.on-dark .find-us__icon,.section--green .find-us__icon{color:var(--ww-gold)}
@media(max-width:520px){.find-us__k{padding-top:0;margin-bottom:.1rem}}
.find-us__v{margin:0;color:var(--ww-ink-70);line-height:1.45}
.find-us__v--full{grid-column:1 / -1}
@media(max-width:520px){.find-us__list li{grid-template-columns:1fr;gap:.15rem;padding:.75rem 0}}
.find-us__map{min-height:340px;height:100%;border-radius:var(--radius-lg);overflow:hidden;box-shadow:var(--shadow-sm)}
.find-us__map iframe{width:100%;height:100%;min-height:340px;border:0;display:block}
@media(max-width:880px){.find-us{grid-template-columns:1fr;gap:var(--space-lg);align-items:start}.find-us--left .find-us__map{order:0}.find-us__map{height:auto}.find-us__map,.find-us__map iframe{min-height:300px}}

/* Form embed */
.form-embed{margin-top:var(--space-lg)}
.form-embed--narrow{max-width:680px;margin-inline:auto}

/* Scroll progress rail (all pages) */
.scroll-rail{position:fixed;top:0;right:0;width:3px;height:100vh;z-index:45;background:var(--ww-sand);pointer-events:none}
.scroll-rail__fill{display:block;width:100%;height:0;background:var(--ww-green);transition:height .08s linear}
@media (max-width:600px){.scroll-rail{display:none}}

/* Stats band */
.stats__grid{--row-gap:var(--space-lg);display:flex;flex-wrap:wrap;justify-content:center;align-items:flex-start;gap:var(--row-gap);margin-top:var(--space-lg)}
.stats__item{display:flex;flex-direction:column;gap:.3rem;text-align:center;padding:0 .5rem;flex:0 1 auto;min-width:0}
.stats__grid--1 > *{flex-basis:min(420px,100%)}
.stats__grid--2 > *{flex-basis:calc((100% - var(--row-gap)) / 2)}
.stats__grid--3 > *,.stats__grid--5 > *,.stats__grid--6 > *{flex-basis:calc((100% - 2 * var(--row-gap)) / 3)}
.stats__grid--4 > *,.stats__grid--7 > *,.stats__grid--8 > *{flex-basis:calc((100% - 3 * var(--row-gap)) / 4)}
@media(max-width:900px){
  .stats__grid--4 > *,.stats__grid--7 > *,.stats__grid--8 > *{flex-basis:calc((100% - var(--row-gap)) / 2)}
}
@media(max-width:560px){
  .stats__grid > *{flex-basis:100%!important}
}
.stats__value{font-family:var(--font-serif);font-weight:600;font-size:clamp(2.6rem,5vw,3.6rem);line-height:1}
.stats__label{font-size:.9rem;color:var(--ww-ink-70);line-height:1.35}
.section--green .stats__label,.section--navy .stats__label{color:rgba(255,255,255,.78)}
.stats--center .section-head{margin-bottom:var(--space-md)}
@media(max-width:760px){.stats__grid{--row-gap:var(--space-md)}}

/* Room types (expandable) */
.room-types__head{display:flex;align-items:baseline;gap:.8rem;flex-wrap:wrap;text-align:left}
.room-types__name{font-weight:600}
.room-types__cap{font-size:.78rem;text-transform:uppercase;letter-spacing:.04em;color:var(--ww-terra);background:var(--ww-paper);border:1px solid var(--ww-line);padding:.15rem .5rem;border-radius:999px}
.section--sand .room-types__cap{background:var(--ww-white)}
.room-types__features{list-style:none;margin:.6rem 0 0;padding:0;display:grid;gap:.4rem}
.room-types__features li{display:flex;gap:.5rem;align-items:flex-start}
.room-types__features svg{flex:none;width:18px;height:18px;margin-top:.15rem;color:var(--ww-green)}
.room-types__price{font-size:.82rem;font-weight:600;color:var(--ww-green);margin-left:auto;padding-right:.5rem}
.room-types__body{display:grid;grid-template-columns:200px 1fr;gap:1.2rem;align-items:start}
.room-types__media{border-radius:10px;overflow:hidden;aspect-ratio:4/3;background:var(--ww-sand)}
.room-types__media img{width:100%;height:100%;object-fit:cover;display:block}
@media(max-width:600px){.room-types__body{grid-template-columns:1fr}.room-types__price{margin-left:0}}

/* Terracotta section (warm dark band, e.g. stats) */
.section--terra{background:var(--ww-terra);color:var(--ww-paper)}
.section--terra .eyebrow{color:var(--ww-gold)}
.section--terra .lead,.section--terra .stats__label{color:rgba(246,237,233,.85)}
.section--terra h1,.section--terra h2,.section--terra h3{color:var(--ww-paper)}
.section--terra .btn--primary{background:var(--ww-white);color:var(--ww-terra)}
.section--terra .btn--primary:hover{background:var(--ww-paper)}
.section--terra .btn--secondary{color:var(--ww-paper);border-color:rgba(246,237,233,.6)}
.section--terra .btn--secondary:hover{background:var(--ww-paper);color:var(--ww-terra)}

/* Stats band is ALWAYS terracotta, regardless of the stored section background.
   .section.stats (two classes) outranks any .section--x (one class). */
.section.stats{background:var(--ww-terra)!important;color:var(--ww-paper)}
.section.stats .eyebrow{color:var(--ww-gold)}
.section.stats h1,.section.stats h2,.section.stats h3{color:var(--ww-paper)}
.section.stats .lead,.section.stats .stats__label{color:rgba(246,237,233,.85)}

/* Clickable location name */
a.locations-list__region{color:inherit;text-decoration:none;transition:color .2s var(--ease)}
a.locations-list__region:hover,a.locations-list__region:focus{color:var(--ww-terra);text-decoration:underline;text-underline-offset:3px}

/* 404 page */
.error-404{text-align:center}
.error-404__inner{max-width:640px;margin-inline:auto;align-items:center}
.error-404 .btn-row{justify-content:center;margin-top:.5rem}
.error-404__links{margin-top:2.5rem;width:100%}
.error-404__links-label{font-size:.78rem;letter-spacing:.08em;text-transform:uppercase;color:var(--ww-ink-70);margin-bottom:1rem}
.error-404__links ul{list-style:none;margin:0;padding:0;display:flex;flex-wrap:wrap;gap:.6rem 1.4rem;justify-content:center}
.error-404__links a{color:var(--ww-green);text-decoration:none;border-bottom:1px solid var(--ww-line);padding-bottom:2px;transition:color .2s var(--ease),border-color .2s var(--ease)}
.error-404__links a:hover{color:var(--ww-terra);border-color:var(--ww-terra)}

/* Team member profiles */
.profile__back{color:var(--ww-ink-70);text-decoration:none}
.profile__back:hover{color:var(--ww-terra)}
.profile__layout{display:grid;grid-template-columns:minmax(0,300px) minmax(0,1fr);gap:var(--space-2xl);align-items:start}
.profile__col-left{display:flex;flex-direction:column;gap:var(--space-lg);position:sticky;top:var(--space-xl)}
.profile__media{border-radius:16px;overflow:hidden;background:var(--ww-sand);aspect-ratio:4/5;width:100%;box-shadow:0 22px 48px -28px rgba(28,28,28,.55)}
.profile__photo{width:100%;height:100%;object-fit:cover;display:block}
.profile__identity{margin-top:.25rem}
.profile__name{margin:0;font-family:var(--font-serif);font-size:clamp(1.7rem,1.2rem + 1.6vw,2.2rem);line-height:1.04;letter-spacing:-.01em}
.profile__role{margin:.45rem 0 0;color:var(--ww-terra);font-size:1.02rem;font-weight:600}
.profile__meta{margin:1.4rem 0 0;padding:0;border-top:1px solid var(--ww-line)}
.profile__meta-row{display:flex;justify-content:space-between;align-items:baseline;gap:1rem;margin:0;padding:.72rem 0;border-bottom:1px solid var(--ww-line)}
.profile__meta dt{font-size:.72rem;letter-spacing:.1em;text-transform:uppercase;color:var(--ww-ink-70);font-weight:600;white-space:nowrap}
.profile__meta dd{margin:0;text-align:right;color:var(--ww-ink);font-size:.96rem}
.profile__meta a{color:var(--ww-green);text-decoration:none;transition:color .2s var(--ease)}
.profile__meta a:hover{color:var(--ww-terra)}
.profile__actions{display:flex;flex-direction:column;align-items:stretch;gap:.4rem;margin-top:1.5rem}
.profile__linkedin{display:inline-flex;align-items:center;justify-content:center;gap:.5rem;color:var(--ww-green);text-decoration:none;font-weight:600;font-size:.95rem;padding:.5rem 0;transition:color .2s var(--ease)}
.profile__linkedin svg{width:18px;height:18px}
.profile__linkedin:hover{color:var(--ww-terra)}
.profile__bio p{margin:0 0 1rem;font-size:1.05rem}
.profile__quote{margin:1.75rem 0 0;padding-left:1.25rem;border-left:3px solid var(--ww-gold);font-family:var(--font-serif);font-size:1.4rem;line-height:1.4;color:var(--ww-green)}
.profile__expertise{margin-top:var(--space-xl);padding-top:var(--space-lg);border-top:1px solid var(--ww-line)}
.profile__expertise-title{font-size:1.15rem;margin:0 0 1rem}
.profile__expertise-list{list-style:none;margin:0;padding:0;display:flex;flex-wrap:wrap;gap:.6rem}
.profile__expertise-list li{padding:.4rem .9rem;background:var(--ww-sand);border-radius:100px;font-size:var(--fs-small);color:var(--ww-green);font-weight:600}
.profile__articles{margin-top:var(--space-xl);padding-top:var(--space-lg);border-top:1px solid var(--ww-line)}
.profile__articles-title{font-size:1.15rem;margin:0 0 1rem}
.profile__articles-list{list-style:none;margin:0;padding:0;display:flex;flex-direction:column}
.profile__articles-list li{border-bottom:1px solid var(--ww-line)}
.profile__articles-list a{display:flex;justify-content:space-between;align-items:baseline;gap:1rem;padding:.85rem 0;text-decoration:none;color:var(--ww-ink);transition:color .2s var(--ease)}
.profile__articles-list a:hover{color:var(--ww-terra)}
.profile__article-title{font-weight:600}
.profile__article-date{font-size:var(--fs-small);color:var(--ww-ink-70);white-space:nowrap}
.profile__return{margin-top:var(--space-xl)}
@media(max-width:820px){.profile__layout{grid-template-columns:1fr;gap:var(--space-lg)}.profile__col-left{position:static}.profile__media{max-width:320px}}

/* Linked team cards (profiles) */
.team-card--linked{max-width:300px}
.team-card__link{display:flex;flex-direction:column;align-items:center;text-decoration:none;color:inherit}
.team-card__link .team-card__media{transition:transform .3s var(--ease)}
.team-card__cta{margin-top:.6rem;display:inline-flex;align-items:center;gap:.3rem;color:var(--ww-green);font-size:var(--fs-small);font-weight:600}
.team-card__cta svg{width:16px;height:16px;transition:transform .2s var(--ease)}
.team-card--linked:hover .team-card__name{color:var(--ww-terra)}
.team-card--linked:hover .team-card__cta svg{transform:translateX(3px)}
.team-card--linked:hover .team-card__media{transform:translateY(-3px)}
