/*!
 * WS Services Theme – main stylesheet
 * Author: Malik Safdar Abbas Rid – https://www.grouperlogic.com
 * Design tokens (--wsst-*) are generated from Theme Settings.
 */

/* ==========================================================================
   1. Base
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }
body {
	margin: 0;
	background: var(--wsst-bg);
	color: var(--wsst-text);
	font-family: var(--wsst-font-body);
	line-height: var(--wsst-lh);
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}
img, svg, video, iframe { max-width: 100%; height: auto; }
img { display: block; }
a { color: var(--wsst-primary); text-underline-offset: .18em; }
a:hover { color: var(--wsst-primary-hover); }
h1, h2, h3, h4, h5, h6 {
	margin: 0 0 .6em;
	font-family: var(--wsst-font-heading);
	font-weight: var(--wsst-heading-weight);
	color: var(--wsst-heading);
	line-height: 1.2;
}
h1 { font-size: clamp(2rem, 1.4rem + 2.6vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 1.2rem + 1.6vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 1.05rem + .6vw, 1.5rem); }
h4 { font-size: 1.15rem; }
p { margin: 0 0 1.1em; }
ul, ol { padding-left: 1.25rem; }
hr { border: 0; border-top: 1px solid var(--wsst-border); margin: 2rem 0; }
blockquote { margin: 1.5rem 0; padding: .25rem 0 .25rem 1.25rem; border-left: 4px solid var(--wsst-primary); font-style: italic; }
table { width: 100%; border-collapse: collapse; margin-bottom: 1.5rem; display: block; overflow-x: auto; }
th, td { padding: .6rem .8rem; border: 1px solid var(--wsst-border); text-align: left; }
th { background: var(--wsst-surface); color: var(--wsst-heading); }
pre { overflow-x: auto; padding: 1rem; background: var(--wsst-surface); border-radius: var(--wsst-radius); }
code { font-size: .92em; }
:focus-visible { outline: 3px solid var(--wsst-accent); outline-offset: 2px; }
::selection { background: var(--wsst-primary); color: var(--wsst-on-primary); }

.screen-reader-text {
	position: absolute !important; width: 1px; height: 1px; margin: -1px; padding: 0; overflow: hidden;
	clip: rect(0, 0, 0, 0); clip-path: inset(50%); white-space: nowrap; border: 0;
}
.screen-reader-text:focus, .skip-link:focus {
	position: fixed !important; top: .5rem; left: .5rem; z-index: 100000; width: auto; height: auto; margin: 0; padding: .8rem 1.2rem;
	clip: auto; clip-path: none; background: var(--wsst-bg); color: var(--wsst-heading); border-radius: var(--wsst-radius);
	box-shadow: 0 4px 24px rgba(0, 0, 0, .3); text-decoration: none; font-weight: 600;
}
.wsst-hp { position: absolute !important; left: -9999px; height: 0; overflow: hidden; }

.wsst-container { width: 100%; max-width: var(--wsst-container); margin-inline: auto; padding-inline: 1.25rem; }
body.wsst-layout-boxed { background: var(--wsst-surface); }
body.wsst-layout-boxed #page { max-width: calc(var(--wsst-container) + 80px); margin: 0 auto; background: var(--wsst-bg); box-shadow: 0 0 60px rgba(0, 0, 0, .12); }

/* ==========================================================================
   2. Buttons & forms
   ========================================================================== */
.wsst-btn, .wp-block-button__link, button.wsst-btn, input[type="submit"], .comment-form .submit {
	display: inline-flex; align-items: center; justify-content: center; gap: .5rem; min-height: 46px; padding: .75rem 1.6rem;
	font: 600 1rem/1.2 var(--wsst-font-body); text-decoration: none; cursor: pointer;
	border: 2px solid transparent; border-radius: var(--wsst-radius);
	transition: background-color .2s, color .2s, border-color .2s, transform .2s, box-shadow .2s;
}
.wsst-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0, 0, 0, .18); }
.wsst-btn--primary, .wp-block-button__link, input[type="submit"], .comment-form .submit { background: var(--wsst-primary); color: var(--wsst-on-primary); }
.wsst-btn--primary:hover, .wp-block-button__link:hover, input[type="submit"]:hover, .comment-form .submit:hover { background: var(--wsst-primary-hover); color: var(--wsst-on-primary); }
.wsst-btn--accent { background: var(--wsst-accent); color: var(--wsst-on-accent); }
.wsst-btn--accent:hover { color: var(--wsst-on-accent); filter: brightness(1.08); }
.wsst-btn--outline { background: transparent; color: var(--wsst-primary); border-color: var(--wsst-primary); }
.wsst-btn--outline:hover { background: var(--wsst-primary); color: var(--wsst-on-primary); }
.wsst-btn--light { background: #fff; color: #111827; }
.wsst-btn--light:hover { color: #111827; }
.wsst-btn--ghost-light { background: transparent; color: #fff; border-color: rgba(255, 255, 255, .8); }
.wsst-btn--ghost-light:hover { background: #fff; color: #111827; }

input[type="text"], input[type="email"], input[type="url"], input[type="tel"], input[type="search"], input[type="password"], input[type="number"], textarea, select {
	width: 100%; min-height: 40px; padding: .45rem .75rem; font: inherit; color: var(--wsst-text);
	background: var(--wsst-bg); border: 1px solid var(--wsst-border); border-radius: var(--wsst-radius);
	transition: border-color .2s, box-shadow .2s;
}
textarea { min-height: 72px; }
input:focus, textarea:focus, select:focus { border-color: var(--wsst-primary); box-shadow: 0 0 0 3px rgba(var(--wsst-primary-rgb), .2); outline: 0; }
label { font-weight: 600; color: var(--wsst-heading); }
.comment-form label { display: block; margin-bottom: .3rem; }
.comment-form p { margin-bottom: 1rem; }

.wsst-search-form { display: flex; gap: .5rem; }
.wsst-search-form .wsst-input { flex: 1; }
.wsst-search-form .wsst-btn { padding-inline: 1rem; }

.wsst-icon-btn, .wsst-menu-toggle {
	display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; padding: 0;
	background: transparent; color: inherit; border: 0; border-radius: var(--wsst-radius); cursor: pointer;
}
.wsst-icon-btn:hover, .wsst-menu-toggle:hover { background: rgba(127, 127, 127, .16); }

/* ==========================================================================
   3. Header
   ========================================================================== */
.site-header { position: relative; z-index: 100; background: var(--wsst-header-bg); color: var(--wsst-header-text); transition: background-color .3s, box-shadow .3s, color .3s; }
.site-header a { color: inherit; }
.site-header a.wsst-btn--primary, .site-header a.wsst-btn--primary:hover { color: var(--wsst-on-primary); }
.wsst-header--sticky { position: sticky; top: 0; }
.wsst-header--shadow { box-shadow: 0 2px 18px rgba(0, 0, 0, .08); }
.wsst-header--line { border-bottom: 1px solid var(--wsst-border); }
.admin-bar .wsst-header--sticky { top: 32px; }
@media (max-width: 782px) { .admin-bar .wsst-header--sticky { top: 46px; } }

.wsst-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: var(--wsst-header-h); transition: min-height .3s; }
.wsst-header--shrink.is-scrolled .wsst-header__inner { min-height: calc(var(--wsst-header-h) * .78); }
.wsst-header__actions { display: flex; align-items: center; gap: .5rem; }
.site-branding { display: flex; flex-direction: column; justify-content: center; min-width: 0; }
.site-branding { flex: 0 1 auto; min-width: 0; }
.site-logo, .custom-logo-link { display: inline-flex; align-items: center; max-width: 100%; line-height: 0; color: inherit; text-decoration: none; }
.site-logo__main, .site-logo__light { display: inline-flex; align-items: center; max-width: 100%; }
.site-logo__img, .custom-logo { display: block; width: auto; height: var(--wsst-logo-h); max-width: 100%; object-fit: contain; object-position: left center; }
.site-logo__light { display: none; }
.wsst-header--transparent:not(.is-scrolled) .has-light .site-logo__main { display: none; }
.wsst-header--transparent:not(.is-scrolled) .has-light .site-logo__light { display: inline-flex; }
.wsst-header--centered .site-logo__img, .wsst-header--centered .custom-logo { object-position: center; }
.wsst-footer__logo .site-logo__img { height: var(--wsst-flogo-h); }
.site-title { font: 800 1.5rem/1.1 var(--wsst-font-heading); font-size: var(--wsst-logo-text, 1.5rem); text-decoration: none; letter-spacing: -.01em; overflow-wrap: anywhere; }
.site-title:hover { color: inherit; opacity: .85; }
.site-description { font-size: .8rem; opacity: .75; }

.wsst-burger, .wsst-burger::before, .wsst-burger::after { display: block; width: 22px; height: 2px; background: currentColor; border-radius: 2px; transition: transform .25s, background-color .25s, top .25s; }
.wsst-burger { position: relative; }
.wsst-burger::before, .wsst-burger::after { content: ""; position: absolute; left: 0; }
.wsst-burger::before { top: -7px; }
.wsst-burger::after { top: 7px; }
.nav-open .wsst-burger { background: transparent; }
.nav-open .wsst-burger::before { top: 0; transform: rotate(45deg); }
.nav-open .wsst-burger::after { top: 0; transform: rotate(-45deg); }
.wsst-menu-toggle { display: none; position: relative; z-index: 1002; }
.main-navigation a.wsst-nav-cta { display: none; }
.wsst-header__cta { min-height: 42px; padding: .55rem 1.2rem; }

.wsst-submenu-toggle { background: transparent; border: 0; color: inherit; cursor: pointer; }
.wsst-submenu-toggle::after { content: ""; display: block; width: 8px; height: 8px; margin: auto; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg); transition: transform .2s; }
.is-open > .wsst-submenu-toggle::after { transform: rotate(-135deg); }

.wsst-nav-overlay { position: fixed; inset: 0; z-index: 1000; background: rgba(0, 0, 0, .55); opacity: 0; visibility: hidden; transition: opacity .3s, visibility .3s; }
.nav-open .wsst-nav-overlay { opacity: 1; visibility: visible; }
body.nav-open { overflow: hidden; }

.wsst-search-panel { padding: 1rem 0; background: var(--wsst-bg); color: var(--wsst-text); border-top: 1px solid var(--wsst-border); }
.wsst-search-panel[hidden] { display: none; }

.wsst-topbar { background: var(--wsst-secondary); color: var(--wsst-on-primary); font-size: .85rem; }
.wsst-topbar a { text-decoration: none; }
.wsst-topbar a:hover { text-decoration: underline; color: inherit; }
.wsst-topbar__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; min-height: 40px; padding-block: .3rem; }
.wsst-topbar__info { display: flex; flex-wrap: wrap; gap: .25rem 1.25rem; margin: 0; padding: 0; list-style: none; }
.wsst-topbar__info li { display: inline-flex; align-items: center; gap: .4rem; }
@media (max-width: 767px) { .wsst-topbar--hide-mobile { display: none; } }

/* Transparent header over the slider */
.wsst-header--transparent { position: absolute; left: 0; right: 0; top: 0; background: transparent; box-shadow: none; border: 0; color: #fff; }
.wsst-header--transparent.wsst-header--sticky { position: fixed; }
.wsst-header--transparent .wsst-topbar { background: rgba(0, 0, 0, .3); color: #fff; }
.wsst-header--transparent.is-scrolled { background: var(--wsst-header-bg); color: var(--wsst-header-text); box-shadow: 0 2px 18px rgba(0, 0, 0, .12); }
.wsst-header--transparent.is-scrolled .wsst-topbar { display: none; }

/* ==========================================================================
   4. Social icons
   ========================================================================== */
.wsst-social { display: flex; flex-wrap: wrap; gap: .5rem; margin: 0; padding: 0; list-style: none; }
.wsst-social__link {
	display: inline-flex; align-items: center; justify-content: center; width: var(--wsst-social-size); height: var(--wsst-social-size);
	background: rgba(127, 127, 127, .2); color: inherit; text-decoration: none; transition: background-color .2s, color .2s, transform .2s;
}
.wsst-social--round .wsst-social__link { border-radius: 50%; }
.wsst-social--square .wsst-social__link { border-radius: var(--wsst-radius); }
.wsst-social--plain .wsst-social__link { background: transparent; }
.wsst-social__link:hover { background: var(--wsst-primary); color: var(--wsst-on-primary); transform: translateY(-2px); }
.wsst-social--header .wsst-social__link { width: 30px; height: 30px; background: rgba(255, 255, 255, .15); color: inherit; }
.wsst-social--header .wsst-social__link:hover { background: #fff; color: #111827; }
.wsst-floating-social { position: fixed; top: 50%; z-index: 90; transform: translateY(-50%); }
.wsst-floating-social--left { left: .75rem; }
.wsst-floating-social--right { right: .75rem; }
.wsst-floating-social .wsst-social { flex-direction: column; }
.wsst-floating-social .wsst-social__link { background: var(--wsst-primary); color: var(--wsst-on-primary); box-shadow: 0 4px 14px rgba(0, 0, 0, .2); }
@media (max-width: 767px) { .wsst-floating-social { display: none; } }

/* ==========================================================================
   5. Slider
   ========================================================================== */
.wsst-slider { position: relative; height: var(--wsst-slider-h); min-height: 460px; overflow: hidden; background: var(--wsst-secondary); color: #fff; }
.wsst-slider__track { position: relative; height: 100%; }
.wsst-slide {
	display: flex; align-items: center; position: relative; height: 100%;
	background: linear-gradient(135deg, var(--wsst-primary), var(--wsst-secondary));
}
.wsst-slide__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.wsst-slide__overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0, 0, 0, calc(var(--wsst-overlay) + .1)), rgba(0, 0, 0, var(--wsst-overlay))); }
.wsst-slide__inner { position: relative; z-index: 2; padding-block: 5rem 4.5rem; }
.wsst-slide__content { max-width: 680px; }
.wsst-slide--center .wsst-slide__content { margin-inline: auto; text-align: center; }
.wsst-slide--right .wsst-slide__content { margin-left: auto; text-align: right; }
.wsst-slide--center .wsst-slide__buttons { justify-content: center; }
.wsst-slide--right .wsst-slide__buttons { justify-content: flex-end; }
.wsst-slide__eyebrow { display: inline-block; margin-bottom: 1rem; padding: .3rem .9rem; background: var(--wsst-accent); color: var(--wsst-on-accent); font-size: .8rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; border-radius: 999px; }
.wsst-slide__title { margin: 0 0 1rem; color: #fff; font-size: clamp(2.1rem, 1.2rem + 3.6vw, 4rem); text-shadow: 0 2px 18px rgba(0, 0, 0, .25); }
.wsst-slide__text { margin-bottom: 1.75rem; font-size: clamp(1rem, .95rem + .4vw, 1.25rem); opacity: .95; }
.wsst-slide__buttons { display: flex; flex-wrap: wrap; gap: .75rem; }

.wsst-slider--fade .wsst-slide { position: absolute; inset: 0; opacity: 0; visibility: hidden; transition: opacity var(--wsst-slider-speed) ease, visibility var(--wsst-slider-speed); }
.wsst-slider--fade .wsst-slide.is-active { opacity: 1; visibility: visible; z-index: 1; }
.wsst-slider--slide .wsst-slider__track { display: flex; transition: transform var(--wsst-slider-speed) cubic-bezier(.65, 0, .35, 1); will-change: transform; }
.wsst-slider--slide .wsst-slide { flex: 0 0 100%; }

.wsst-slider--kenburns .wsst-slide.is-active .wsst-slide__img { animation: wsst-kenburns 12s ease-out forwards; }
@keyframes wsst-kenburns { from { transform: scale(1); } to { transform: scale(1.09); } }

/* Slide content entrance */
.wsst-slide .wsst-slide__content > * { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.wsst-slide.is-active .wsst-slide__content > * { opacity: 1; transform: none; }
.wsst-slide.is-active .wsst-slide__content > *:nth-child(2) { transition-delay: .12s; }
.wsst-slide.is-active .wsst-slide__content > *:nth-child(3) { transition-delay: .24s; }
.wsst-slide.is-active .wsst-slide__content > *:nth-child(4) { transition-delay: .36s; }

.wsst-slider__arrow {
	position: absolute; top: 50%; z-index: 5; display: inline-flex; align-items: center; justify-content: center; width: 48px; height: 48px;
	transform: translateY(-50%); background: rgba(255, 255, 255, .16); color: #fff; border: 1px solid rgba(255, 255, 255, .4);
	border-radius: 50%; cursor: pointer; backdrop-filter: blur(4px); transition: background-color .2s, color .2s;
}
.wsst-slider__arrow:hover { background: #fff; color: #111827; }
.wsst-slider__arrow--prev { left: 1rem; }
.wsst-slider__arrow--next { right: 1rem; }
.wsst-slider__bar { position: absolute; left: 0; right: 0; bottom: 1.25rem; z-index: 5; display: flex; align-items: center; justify-content: center; gap: 1rem; }
.wsst-slider__dots { display: flex; gap: .5rem; }
.wsst-slider__dot { width: 12px; height: 12px; padding: 0; background: rgba(255, 255, 255, .4); border: 0; border-radius: 999px; cursor: pointer; transition: width .3s, background-color .3s; position: relative; }
.wsst-slider__dot::after { content: ""; position: absolute; inset: -16px -6px; } /* larger touch target */
.wsst-slider__dot.is-active { width: 34px; background: #fff; }
.wsst-slider__pause { display: inline-flex; align-items: center; justify-content: center; width: 32px; height: 32px; padding: 0; background: rgba(255, 255, 255, .2); color: #fff; border: 0; border-radius: 50%; cursor: pointer; }
.wsst-slider__pause .is-play { display: none; }
.wsst-slider__pause.is-paused .is-play { display: block; }
.wsst-slider__pause.is-paused .is-pause { display: none; }
@media (max-width: 767px) {
	.wsst-slider__arrow { display: none; }
	.wsst-slider { min-height: 420px; }
}

/* ==========================================================================
   6. Sections & modules
   ========================================================================== */
.wsst-section { padding-block: clamp(3.5rem, 2rem + 6vw, 6.5rem); scroll-margin-top: calc(var(--wsst-header-h) + 20px); }
.wsst-bg-default { background: var(--wsst-bg); --wsst-card-bg: var(--wsst-surface); }
.wsst-bg-alt { background: var(--wsst-surface); --wsst-card-bg: var(--wsst-bg); }
.wsst-bg-primary { background: linear-gradient(135deg, var(--wsst-primary), var(--wsst-secondary)); color: var(--wsst-on-primary); --wsst-card-bg: rgba(255, 255, 255, .12); }
.wsst-bg-dark { background: var(--wsst-footer-bg); color: var(--wsst-footer-text); --wsst-card-bg: rgba(255, 255, 255, .06); }
.wsst-bg-primary :is(h1, h2, h3, h4, .wsst-section__title), .wsst-bg-dark :is(h1, h2, h3, h4, .wsst-section__title) { color: inherit; }
.wsst-bg-primary .wsst-eyebrow { color: inherit; opacity: .85; }
.wsst-bg-dark .wsst-eyebrow { color: var(--wsst-accent); }

.wsst-section__head { max-width: 720px; margin: 0 auto 3rem; }
.wsst-align-center { text-align: center; }
.wsst-eyebrow { display: inline-block; margin-bottom: .6rem; color: var(--wsst-primary); font-size: .82rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.wsst-section__title { margin-bottom: .6rem; }
.wsst-section__sub { margin: 0; font-size: 1.1rem; opacity: .85; }
.wsst-section__more { margin: 2.5rem 0 0; text-align: center; }

.wsst-grid { display: grid; gap: 1.5rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .wsst-grid--2, .wsst-grid--3, .wsst-grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 992px) { .wsst-grid--3 { grid-template-columns: repeat(3, 1fr); } .wsst-grid--4 { grid-template-columns: repeat(4, 1fr); } }

.wsst-card { background: var(--wsst-card-bg, var(--wsst-surface)); border: 1px solid var(--wsst-border); border-radius: var(--wsst-radius-card); transition: translate .25s ease, box-shadow .25s ease, border-color .25s; }
.wsst-hover-lift .wsst-card:hover { translate: 0 -6px; box-shadow: 0 18px 40px rgba(0, 0, 0, .12); border-color: var(--wsst-primary); }

/* Services */
.wsst-service { display: block; padding: 2rem 1.75rem; color: inherit; text-decoration: none; }
.wsst-service:hover { color: inherit; }
.wsst-service__icon, .wsst-feature__icon { display: inline-flex; align-items: center; justify-content: center; width: 60px; height: 60px; margin-bottom: 1.1rem; background: rgba(var(--wsst-primary-rgb), .12); color: var(--wsst-primary); border-radius: var(--wsst-radius-card); transition: background-color .25s, color .25s; }
.wsst-service:hover .wsst-service__icon { background: var(--wsst-primary); color: var(--wsst-on-primary); }
.wsst-service__title { margin-bottom: .5rem; }
.wsst-service__text { margin-bottom: 0; opacity: .9; }
.wsst-service__more { display: inline-flex; align-items: center; gap: .4rem; margin-top: 1rem; color: var(--wsst-primary); font-weight: 600; }

/* About */
.wsst-about { display: grid; gap: 3rem; align-items: center; }
@media (min-width: 900px) {
	.wsst-about { grid-template-columns: 1fr 1fr; gap: 4.5rem; }
	.wsst-about--right .wsst-about__media { order: 2; }
}
.wsst-about__media { position: relative; }
.wsst-about__frame { overflow: hidden; border-radius: var(--wsst-radius-card); box-shadow: 0 24px 60px rgba(0, 0, 0, .18); aspect-ratio: 9 / 7; background: linear-gradient(135deg, var(--wsst-primary), var(--wsst-secondary)); }
.wsst-about__frame img { width: 100%; height: 100%; object-fit: cover; }
.wsst-about__placeholder { display: flex; align-items: center; justify-content: center; height: 100%; color: var(--wsst-on-primary); opacity: .55; }
.wsst-about__badge { position: absolute; right: -.5rem; bottom: -1.25rem; padding: 1.1rem 1.6rem; background: var(--wsst-accent); color: var(--wsst-on-accent); border-radius: var(--wsst-radius-card); box-shadow: 0 14px 30px rgba(0, 0, 0, .22); text-align: center; }
.wsst-about__badge strong { display: block; font: 800 2rem/1 var(--wsst-font-heading); }
.wsst-about__badge span { font-size: .85rem; font-weight: 600; }
.wsst-checklist { display: grid; gap: .7rem; margin: 1.5rem 0 2rem; padding: 0; list-style: none; }
.wsst-checklist li { display: flex; align-items: flex-start; gap: .7rem; }
.wsst-checklist .wsst-icon { flex: none; margin-top: .1rem; color: var(--wsst-primary); }

/* Features */
.wsst-feature { text-align: center; padding: 1rem; }
.wsst-feature__icon { width: 72px; height: 72px; margin-inline: auto; border-radius: 50%; }
.wsst-feature__title { margin-bottom: .4rem; }
.wsst-feature p { margin-bottom: 0; opacity: .9; }

/* Stats */
.wsst-section--stats { padding-block: clamp(3rem, 2rem + 3vw, 4.5rem); }
.wsst-stats { display: grid; gap: 2rem 1rem; grid-template-columns: repeat(2, 1fr); text-align: center; }
@media (min-width: 900px) { .wsst-stats { grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); } }
.wsst-stat__number { font: 800 clamp(2.2rem, 1.6rem + 2.4vw, 3.4rem)/1.1 var(--wsst-font-heading); }
.wsst-stat__label { margin-top: .35rem; font-weight: 600; opacity: .9; }

/* Process */
.wsst-steps { display: grid; gap: 1.5rem; margin: 0; padding: 0; list-style: none; counter-reset: none; }
@media (min-width: 640px) { .wsst-steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 992px) { .wsst-steps { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); } }
.wsst-step { position: relative; padding: 1.75rem 1.5rem; background: var(--wsst-card-bg, var(--wsst-surface)); border: 1px solid var(--wsst-border); border-radius: var(--wsst-radius-card); }
.wsst-step__num { display: block; margin-bottom: .75rem; font: 800 2.6rem/1 var(--wsst-font-heading); color: var(--wsst-primary); opacity: .35; }
.wsst-step__title { margin-bottom: .4rem; }
.wsst-step p { margin-bottom: 0; }

/* Testimonials */
.wsst-testimonial { margin: 0; padding: 2rem 1.75rem; display: flex; flex-direction: column; gap: 1rem; }
.wsst-testimonial__quote-icon { color: var(--wsst-primary); opacity: .5; }
.wsst-testimonial blockquote { margin: 0; padding: 0; border: 0; font-style: normal; flex: 1; }
.wsst-testimonial blockquote p { margin: 0; }
.wsst-testimonial figcaption { display: flex; align-items: center; gap: .9rem; }
.wsst-testimonial figcaption small { display: block; opacity: .75; }
.wsst-testimonial__avatar { display: inline-flex; align-items: center; justify-content: center; flex: none; width: 52px; height: 52px; overflow: hidden; background: var(--wsst-primary); color: var(--wsst-on-primary); font-weight: 700; border-radius: 50%; }
.wsst-testimonial__avatar img { width: 100%; height: 100%; object-fit: cover; }

/* CTA */
.wsst-section--cta { background: linear-gradient(135deg, var(--wsst-primary), var(--wsst-secondary)); background-size: cover; background-position: center; color: var(--wsst-on-primary); position: relative; }
.wsst-section--cta.has-image::before { content: ""; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(var(--wsst-primary-rgb), .88), rgba(0, 0, 0, .7)); }
.wsst-section--cta > .wsst-container { position: relative; }
.wsst-cta { max-width: 760px; margin-inline: auto; text-align: center; }
.wsst-cta__title { color: inherit; margin-bottom: .8rem; }
.wsst-cta__text { margin-bottom: 1.75rem; font-size: 1.15rem; opacity: .95; }
.wsst-cta__buttons { display: flex; flex-wrap: wrap; justify-content: center; gap: .75rem; }

/* ==========================================================================
   7. Blog, entries, sidebar
   ========================================================================== */
.wsst-page-header { padding-block: 3rem 2.75rem; background: linear-gradient(135deg, var(--wsst-primary), var(--wsst-secondary)); color: var(--wsst-on-primary); }
.wsst-page-header__title { margin: 0; color: inherit; }
.wsst-page-header__sub { margin: .6rem 0 0; opacity: .9; }
.wsst-breadcrumbs { margin-bottom: .75rem; font-size: .88rem; }
.wsst-breadcrumbs ol { display: flex; flex-wrap: wrap; gap: .25rem; margin: 0; padding: 0; list-style: none; }
.wsst-breadcrumbs li + li::before { content: "/"; margin-right: .25rem; opacity: .6; }
.wsst-breadcrumbs a { color: inherit; opacity: .85; }

.wsst-layout { display: grid; gap: 3rem; padding-block: 3.5rem; }
@media (min-width: 992px) {
	.wsst-layout--right { grid-template-columns: minmax(0, 1fr) 320px; }
	.wsst-layout--left { grid-template-columns: 320px minmax(0, 1fr); }
	.wsst-layout--left .wsst-sidebar { order: -1; }
}
.wsst-content { min-width: 0; }

.wsst-posts { display: grid; gap: 1.75rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .wsst-posts--grid { grid-template-columns: repeat(2, 1fr); } }
.wsst-home .wsst-posts--grid, .wsst-layout--none .wsst-posts--grid { }
@media (min-width: 992px) { .wsst-layout--none .wsst-posts--grid, .wsst-home .wsst-posts--grid { grid-template-columns: repeat(3, 1fr); } }
.wsst-post-card { display: flex; flex-direction: column; overflow: hidden; }
.wsst-post-card__media { display: block; overflow: hidden; aspect-ratio: 3 / 2; background: var(--wsst-surface); }
.wsst-post-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.wsst-image-zoom .wsst-post-card:hover .wsst-post-card__media img, .wsst-image-zoom .wsst-entry__thumb:hover img { transform: scale(1.06); }
.wsst-post-card__body { display: flex; flex-direction: column; flex: 1; padding: 1.5rem; }
.wsst-post-card__title { margin-bottom: .5rem; font-size: 1.25rem; }
.wsst-post-card__title a { color: var(--wsst-heading); text-decoration: none; }
.wsst-post-card__title a:hover { color: var(--wsst-primary); }
.wsst-post-card__excerpt { flex: 1; }
.wsst-post-card__excerpt p { margin-bottom: 1rem; }
.wsst-posts--list { grid-template-columns: 1fr !important; }
@media (min-width: 640px) {
	.wsst-posts--list .wsst-post-card { flex-direction: row; }
	.wsst-posts--list .wsst-post-card__media { flex: 0 0 38%; aspect-ratio: auto; }
}
.wsst-readmore { display: inline-flex; align-items: center; gap: .4rem; font-weight: 600; text-decoration: none; }
.wsst-meta { display: flex; flex-wrap: wrap; gap: .25rem 1rem; margin-bottom: .75rem; color: var(--wsst-muted); font-size: .85rem; }
.wsst-meta__item { display: inline-flex; align-items: center; gap: .35rem; }
.wsst-meta a { color: inherit; }

.wsst-entry__thumb { margin: 0 0 1.75rem; overflow: hidden; border-radius: var(--wsst-radius-card); }
.wsst-entry__thumb img { width: 100%; transition: transform .5s ease; }
.entry-content > * { max-width: 100%; }
.entry-content img { border-radius: var(--wsst-radius); }
.entry-content .alignwide { max-width: min(1100px, 100vw - 2.5rem); }
.entry-content .alignleft { float: left; margin: 0 1.5rem 1rem 0; }
.entry-content .alignright { float: right; margin: 0 0 1rem 1.5rem; }
.entry-content .aligncenter { margin-inline: auto; }
.entry-content::after, .wsst-entry::after { content: ""; display: table; clear: both; }
.page-links { margin: 1.5rem 0; }
.wsst-tags a { display: inline-block; margin: 0 .4rem .4rem 0; padding: .25rem .8rem; background: var(--wsst-surface); border: 1px solid var(--wsst-border); border-radius: 999px; font-size: .85rem; text-decoration: none; }
.wsst-share { display: flex; align-items: center; flex-wrap: wrap; gap: .75rem; margin: 2rem 0; padding-top: 1.5rem; border-top: 1px solid var(--wsst-border); }
.wsst-share__label { font-weight: 700; color: var(--wsst-heading); }
.wsst-fullwidth .entry-content { max-width: none; }

.post-navigation .nav-links { display: grid; gap: 1rem; margin: 2.5rem 0; }
@media (min-width: 640px) { .post-navigation .nav-links { grid-template-columns: 1fr 1fr; } }
.post-navigation a { display: block; height: 100%; padding: 1rem 1.25rem; background: var(--wsst-surface); border: 1px solid var(--wsst-border); border-radius: var(--wsst-radius-card); text-decoration: none; }
.post-navigation .nav-subtitle { display: block; color: var(--wsst-muted); font-size: .8rem; text-transform: uppercase; letter-spacing: .06em; }
.post-navigation .nav-title { color: var(--wsst-heading); font-weight: 600; }
.post-navigation .nav-next { text-align: right; }

.pagination { margin-top: 2.5rem; }
.pagination .nav-links { display: flex; flex-wrap: wrap; justify-content: center; gap: .4rem; }
.pagination .page-numbers { display: inline-flex; align-items: center; justify-content: center; min-width: 44px; height: 44px; padding: 0 .75rem; background: var(--wsst-surface); border: 1px solid var(--wsst-border); border-radius: var(--wsst-radius); color: var(--wsst-heading); font-weight: 600; text-decoration: none; }
.pagination .page-numbers.current, .pagination a.page-numbers:hover { background: var(--wsst-primary); border-color: var(--wsst-primary); color: var(--wsst-on-primary); }

.widget { margin-bottom: 2rem; padding: 1.5rem; background: var(--wsst-surface); border: 1px solid var(--wsst-border); border-radius: var(--wsst-radius-card); }
/* Widget headings: classic widget titles AND block-widget headings (h2.wp-block-heading), same size everywhere */
.widget-title, .widget .wp-block-heading, .widget :is(h1, h2, h3, h4, h5, h6) { margin: 0 0 1rem; padding-bottom: .6rem; border-bottom: 2px solid var(--wsst-primary); font-size: var(--wsst-widget-title, 1.125rem); line-height: 1.3; }
.widget ul { margin: 0; padding: 0; list-style: none; }
.widget li { padding: .4rem 0; border-bottom: 1px solid var(--wsst-border); }
.widget li:last-child { border-bottom: 0; }
.widget a { text-decoration: none; }

.comments-area { margin-top: 3rem; }
.comment-list, .comment-list .children { list-style: none; padding: 0; }
.comment-list .children { margin-left: 1.5rem; }
.comment-body { margin-bottom: 1.5rem; padding: 1.25rem; background: var(--wsst-surface); border: 1px solid var(--wsst-border); border-radius: var(--wsst-radius-card); }
.comment-meta { margin-bottom: .5rem; font-size: .88rem; }
.comment-author .avatar { float: left; margin-right: .8rem; border-radius: 50%; }

.wsst-404, .wsst-none { text-align: center; max-width: 560px; margin-inline: auto; }
.wsst-404__code { margin: 0; font: 800 clamp(5rem, 3rem + 10vw, 9rem)/1 var(--wsst-font-heading); color: var(--wsst-primary); }
.wsst-404 .wsst-search-form, .wsst-none .wsst-search-form { margin-block: 1.5rem; }

/* ==========================================================================
   8. Footer
   ========================================================================== */
.site-footer { background: var(--wsst-footer-bg); color: var(--wsst-footer-text); }
.site-footer a { color: inherit; }
.site-footer a:hover { color: var(--wsst-accent); }
.site-footer :is(h2, h3, h4, .widget-title, .wp-block-heading, .wsst-footer__name) { color: #fff; }
.wsst-footer__widgets { padding-block: 4rem 2.5rem; }
.wsst-footer__grid { display: grid; gap: 2.5rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .wsst-footer__grid--2, .wsst-footer__grid--3, .wsst-footer__grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 992px) { .wsst-footer__grid--3 { grid-template-columns: 1.4fr 1fr 1fr; } .wsst-footer__grid--4 { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }
.site-footer .widget { padding: 0; margin-bottom: 1.5rem; background: transparent; border: 0; }
.site-footer .widget-title, .site-footer .widget .wp-block-heading, .site-footer .widget :is(h1, h2, h3, h4, h5, h6) { border-bottom-color: rgba(255, 255, 255, .2); }
.site-footer .widget li { border-color: rgba(255, 255, 255, .12); }
.wsst-footer__name { display: inline-block; margin-bottom: 1rem; font: 800 1.5rem/1.1 var(--wsst-font-heading); font-size: var(--wsst-flogo-text, 1.5rem); text-decoration: none; overflow-wrap: anywhere; }
.wsst-footer__brand .site-logo { margin-bottom: 1rem; }
.wsst-footer__contact { display: grid; gap: .6rem; margin: 1.25rem 0; padding: 0; list-style: none; }
.wsst-footer__contact li { display: flex; align-items: flex-start; gap: .6rem; }
.wsst-footer__contact .wsst-icon { flex: none; margin-top: .25rem; color: var(--wsst-accent); }
.wsst-footer__bottom { border-top: 1px solid rgba(255, 255, 255, .12); font-size: .9rem; }
.wsst-footer__bottom-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: .75rem 1.5rem; padding-block: 1.25rem; }
.wsst-footer__credit { margin-left: .75rem; opacity: .8; }
.wsst-footer__menu ul { display: flex; flex-wrap: wrap; gap: .25rem 1.25rem; margin: 0; padding: 0; list-style: none; }
.wsst-footer__menu a { text-decoration: none; }

.wsst-back-to-top {
	position: fixed; bottom: 1.25rem; z-index: 90; display: inline-flex; align-items: center; justify-content: center; width: 48px; height: 48px;
	background: var(--wsst-primary); color: var(--wsst-on-primary); border: 0; border-radius: 50%; cursor: pointer;
	box-shadow: 0 8px 22px rgba(0, 0, 0, .25); opacity: 0; visibility: hidden; transform: translateY(12px); transition: opacity .3s, transform .3s, visibility .3s;
}
.wsst-back-to-top--right { right: 1.25rem; }
.wsst-back-to-top--left { left: 1.25rem; }
.wsst-back-to-top.is-visible { opacity: 1; visibility: visible; transform: none; }
.wsst-back-to-top:hover { background: var(--wsst-primary-hover); }

/* ==========================================================================
   9. Preloader
   ========================================================================== */
.wsst-preloader { position: fixed; inset: 0; z-index: 100000; display: flex; align-items: center; justify-content: center; background: var(--wsst-bg); transition: opacity .5s, visibility .5s; }
.wsst-preloader.is-hidden { opacity: 0; visibility: hidden; }
.wsst-preloader span { display: block; }
.wsst-preloader--spinner span { width: 46px; height: 46px; border: 4px solid var(--wsst-border); border-top-color: var(--wsst-primary); border-radius: 50%; animation: wsst-spin .8s linear infinite; }
.wsst-preloader--pulse span { width: 46px; height: 46px; background: var(--wsst-primary); border-radius: 50%; animation: wsst-pulse 1s ease-in-out infinite; }
.wsst-preloader--bar span { width: min(220px, 60vw); height: 4px; background: linear-gradient(90deg, var(--wsst-primary) 50%, var(--wsst-border) 50%) 0 0 / 200% 100%; border-radius: 4px; animation: wsst-bar 1.1s linear infinite; }
@keyframes wsst-spin { to { transform: rotate(360deg); } }
@keyframes wsst-pulse { 0%, 100% { transform: scale(.6); opacity: .5; } 50% { transform: scale(1); opacity: 1; } }
@keyframes wsst-bar { to { background-position: -200% 0; } }

/* ==========================================================================
   10. Scroll-reveal animations (opt-in via data-wsst-anim; JS-only)
   ========================================================================== */
.js .wsst-anim-on [data-wsst-anim] {
	opacity: 0;
	transition: opacity var(--wsst-anim-dur) var(--wsst-ease), transform var(--wsst-anim-dur) var(--wsst-ease), translate .25s ease, box-shadow .25s ease, border-color .25s;
	transition-delay: calc(var(--wsst-i, 0) * var(--wsst-stagger)), calc(var(--wsst-i, 0) * var(--wsst-stagger)), 0s, 0s, 0s;
}
.js .wsst-anim-fade-up [data-wsst-anim] { transform: translateY(32px); }
.js .wsst-anim-fade-down [data-wsst-anim] { transform: translateY(-32px); }
.js .wsst-anim-fade-left [data-wsst-anim] { transform: translateX(32px); }
.js .wsst-anim-fade-right [data-wsst-anim] { transform: translateX(-32px); }
.js .wsst-anim-zoom-in [data-wsst-anim] { transform: scale(.92); }
.js .wsst-anim-on [data-wsst-anim].is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
	.js .wsst-anim-on [data-wsst-anim] { opacity: 1; transform: none; transition: none; }
	*, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; }
	.wsst-slide .wsst-slide__content > * { opacity: 1; transform: none; transition: none; }
	.wsst-slider--fade .wsst-slide, .wsst-slider--slide .wsst-slider__track { transition-duration: .01ms; }
}

@media print {
	.site-header, .site-footer, .wsst-back-to-top, .wsst-floating-social, .wsst-slider__controls { display: none !important; }
}

/* ==========================================================================
   11. FAQ accordion (home section + [wsst_faq] shortcode)
   ========================================================================== */
.wsst-faq { display: grid; gap: 2.5rem; }
.wsst-faq__list { display: grid; gap: .85rem; width: 100%; max-width: 860px; margin-inline: auto; }
.wsst-faq__item { background: var(--wsst-card-bg, var(--wsst-surface)); border: 1px solid var(--wsst-border); border-radius: var(--wsst-radius-card); transition: border-color .2s, box-shadow .2s; }
.wsst-faq__item[open] { border-color: var(--wsst-primary); box-shadow: 0 10px 28px rgba(0, 0, 0, .08); }
.wsst-faq__q { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.15rem 1.35rem; color: var(--wsst-heading); font-weight: 600; line-height: 1.4; cursor: pointer; list-style: none; }
.wsst-faq__q::-webkit-details-marker { display: none; }
.wsst-faq__q .wsst-icon { flex: none; color: var(--wsst-primary); transition: transform .25s; }
.wsst-faq__item[open] .wsst-faq__q .wsst-icon { transform: rotate(180deg); }
.wsst-faq__a { padding: 0 1.35rem 1.25rem; }
.wsst-faq__a > :last-child { margin-bottom: 0; }
.wsst-bg-primary .wsst-faq__q, .wsst-bg-dark .wsst-faq__q, .wsst-bg-primary .wsst-faq__q .wsst-icon, .wsst-bg-dark .wsst-faq__q .wsst-icon { color: inherit; }
.wsst-bg-primary .wsst-faq__item[open], .wsst-bg-dark .wsst-faq__item[open] { border-color: rgba(255, 255, 255, .6); }
.wsst-faq--shortcode { margin-block: 1.5rem; gap: 0; }
@media (min-width: 900px) {
	.wsst-faq--split { grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: 4rem; align-items: start; }
	.wsst-faq--split .wsst-section__head { margin: 0; text-align: left; position: sticky; top: calc(var(--wsst-header-h) + 2rem); }
	.wsst-faq--split .wsst-faq__list { max-width: none; margin: 0; }
}

/* ==========================================================================
   12. Services Area (home section + [wsst_areas] shortcode)
   ========================================================================== */
.wsst-section__head.wsst-align-left { margin-left: 0; margin-right: 0; text-align: left; max-width: 820px; }
.wsst-section--areas .wsst-section__head { margin-bottom: 2.25rem; }
.wsst-areas__list { margin: 0; padding: 0; list-style: none; column-gap: 2.5rem; }
.wsst-areas--cols-2 .wsst-areas__list { columns: 2; }
.wsst-areas--cols-3 .wsst-areas__list { columns: 3; }
.wsst-areas--cols-4 .wsst-areas__list { columns: 4; }
@media (max-width: 991px) { .wsst-areas--cols-3 .wsst-areas__list, .wsst-areas--cols-4 .wsst-areas__list { columns: 2; } }
@media (max-width: 575px) { .wsst-areas .wsst-areas__list { columns: 1; } }
.wsst-areas__item { display: flex; align-items: center; gap: .7rem; padding: .5rem 0; break-inside: avoid; }
.wsst-areas__item a, .wsst-areas__item span:not(.wsst-areas__icon) { color: inherit; text-decoration: none; }
.wsst-areas__item a:hover { color: var(--wsst-primary); text-decoration: underline; }
.wsst-areas__icon { display: inline-flex; flex: none; color: var(--wsst-primary); }
.wsst-areas--tone-accent .wsst-areas__icon, .wsst-areas--tone-accent .wsst-eyebrow { color: var(--wsst-accent); }
.wsst-bg-primary .wsst-areas__icon, .wsst-bg-dark .wsst-areas__icon { color: var(--wsst-accent); }
.wsst-bg-primary .wsst-areas__item a:hover, .wsst-bg-dark .wsst-areas__item a:hover { color: inherit; }
.wsst-areas--shortcode { margin-block: 1.5rem; }

/* ==========================================================================
   13. Services: showcase cards (coloured card, icon, badge, photo)
   ========================================================================== */
.wsst-services--showcase .wsst-grid { gap: 1.75rem; }
.wsst-service--showcase { display: flex; flex-direction: column; padding: 0; overflow: hidden; background: var(--wsst-tint); color: var(--wsst-tint-text); border: 0; text-decoration: none; }
.wsst-service--showcase:hover { color: var(--wsst-tint-text); }
.wsst-service__top { display: flex; flex-direction: column; align-items: flex-start; gap: .9rem; padding: 1.5rem 1.4rem 1.35rem; }
.wsst-service--showcase .wsst-service__icon { width: 66px; height: 66px; margin: 0; background: rgba(255, 255, 255, .9); color: var(--wsst-primary); border-radius: 50%; }
.wsst-service--showcase:hover .wsst-service__icon { background: rgba(255, 255, 255, .9); color: var(--wsst-primary); }
.wsst-service--showcase .wsst-service__icon img { width: 68%; height: 68%; object-fit: contain; }
.wsst-pill { display: inline-block; padding: .28rem .85rem; background: #0e6b50; color: #fff; border-radius: 999px; font-size: .72rem; font-weight: 700; line-height: 1.2; }
.wsst-pill--brown { background: #7b4a12; }
.wsst-pill--primary { background: var(--wsst-primary); color: var(--wsst-on-primary); }
.wsst-pill--accent { background: var(--wsst-accent); color: var(--wsst-on-accent); }
.wsst-service--showcase .wsst-service__title { margin: .35rem 0 0; color: inherit; font-size: 1.25rem; font-weight: 500; }
.wsst-service--showcase .wsst-service__text { display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 5; overflow: hidden; margin: 0; font-size: .84rem; line-height: 1.6; text-align: justify; opacity: .82; }
.wsst-service__media { display: block; height: 220px; margin-top: auto; overflow: hidden; background: rgba(255, 255, 255, .35); border-radius: 0; }
.wsst-service__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.wsst-image-zoom .wsst-service--showcase:hover .wsst-service__media img { transform: scale(1.05); }
.wsst-service__media--empty { display: flex; align-items: center; justify-content: center; color: rgba(0, 0, 0, .16); }
.wsst-hover-lift .wsst-service--showcase:hover { border-color: transparent; }

/* ==========================================================================
   14. Page templates: Services / Faq / Contact us
   ========================================================================== */
.wsst-page-intro { padding-block: 2.5rem 0; }
.wsst-page-intro .entry-content { max-width: 860px; margin-inline: auto; }
.wsst-page--services .wsst-section:not(.wsst-page-intro), .wsst-page--faq .wsst-section:not(.wsst-page-intro), .wsst-page--contact .wsst-section:not(.wsst-page-intro) { padding-block: clamp(2.5rem, 1.5rem + 4vw, 4.5rem); }
.wsst-empty { padding: 2rem; text-align: center; color: var(--wsst-muted); background: var(--wsst-surface); border: 1px dashed var(--wsst-border); border-radius: var(--wsst-radius-card); }

/* FAQ page */
.wsst-faq--page { display: block; max-width: 860px; margin-inline: auto; }
.wsst-faq__group-title { margin: 2.5rem 0 1rem; font-size: 1.3rem; }
.wsst-faq__group-title:first-child { margin-top: 0; }
.wsst-faq--page .wsst-faq__list { max-width: none; }

/* Contact page */
.wsst-contact { display: grid; gap: 2.5rem; align-items: start; }
@media (min-width: 992px) { .wsst-contact { grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: 4rem; } .wsst-contact--single { grid-template-columns: minmax(0, 1fr); max-width: 640px; margin-inline: auto; } }
.wsst-contact__title { margin-bottom: .75rem; }
.wsst-contact__text { margin-bottom: 1.75rem; opacity: .9; }
.wsst-contact__list { display: grid; gap: 1.25rem; margin: 0 0 1.75rem; padding: 0; list-style: none; }
.wsst-contact__list li { display: flex; align-items: flex-start; gap: 1rem; }
.wsst-contact__list strong { display: block; color: var(--wsst-heading); }
.wsst-contact__list a { color: inherit; text-decoration: none; }
.wsst-contact__list a:hover { color: var(--wsst-primary); text-decoration: underline; }
.wsst-contact__icon { display: inline-flex; align-items: center; justify-content: center; flex: none; width: 48px; height: 48px; color: var(--wsst-primary); background: rgba(var(--wsst-primary-rgb), .12); border-radius: 50%; }
.wsst-contact__form { padding: clamp(1.5rem, 1rem + 2vw, 2.5rem); }
.wsst-form-grid { display: grid; gap: 1rem; grid-template-columns: 1fr; margin-bottom: 1rem; }
@media (min-width: 640px) { .wsst-form-grid { grid-template-columns: 1fr 1fr; } }
.wsst-form-row { margin-bottom: 0; }
.wsst-form-row label { display: block; margin-bottom: .35rem; font-size: .92rem; }
.wsst-form-row label span { color: var(--wsst-primary); }
.wsst-form-actions { margin-top: 1.25rem; }
.wsst-form-status { margin-top: 1rem; }
.wsst-form-status:not(:empty) { padding: .85rem 1.1rem; border-left: 4px solid var(--wsst-muted); background: var(--wsst-surface); border-radius: var(--wsst-radius); }
.wsst-form-status.is-success { border-color: #16a34a; background: rgba(22, 163, 74, .12); }
.wsst-form-status.is-error { border-color: #dc2626; background: rgba(220, 38, 38, .1); }
.wsst-contact-map { line-height: 0; }
.wsst-contact-map iframe { display: block; width: 100%; height: clamp(300px, 40vw, 460px); border: 0; }

/* ==========================================================================
   15. Services: LIST layout (one service per row)
   ========================================================================== */
.wsst-service-list { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }

/* Showcase cards as rows: photo on the side, content beside it */
.wsst-service-list .wsst-service--showcase { flex-direction: row; align-items: stretch; min-height: 230px; }
.wsst-service-list .wsst-service--showcase .wsst-service__top { flex: 1; justify-content: center; padding: 1.75rem 2.25rem; }
.wsst-service-list .wsst-service--showcase .wsst-service__text { display: block; -webkit-line-clamp: unset; overflow: visible; text-align: left; font-size: .95rem; opacity: .85; }
.wsst-service-list .wsst-service--showcase .wsst-service__media { order: -1; flex: 0 0 34%; height: auto; min-height: 230px; margin: 0; border-radius: 0; }
.wsst-service-list .wsst-service--img-right .wsst-service__media { order: 2; }

/* Classic cards as compact rows: icon | title + text | link */
.wsst-service-list .wsst-service:not(.wsst-service--showcase) { display: grid; grid-template-columns: auto minmax(0, 1fr) auto; grid-template-areas: "icon title more" "icon text more"; align-items: center; column-gap: 1.5rem; row-gap: .25rem; padding: 1.5rem 1.75rem; }
.wsst-service-list .wsst-service:not(.wsst-service--showcase) .wsst-service__icon { grid-area: icon; margin: 0; }
.wsst-service-list .wsst-service:not(.wsst-service--showcase) .wsst-service__title { grid-area: title; align-self: end; margin: 0; }
.wsst-service-list .wsst-service:not(.wsst-service--showcase) .wsst-service__text { grid-area: text; align-self: start; margin: 0; }
.wsst-service-list .wsst-service:not(.wsst-service--showcase) .wsst-service__more { grid-area: more; margin: 0; white-space: nowrap; }

/* Phones: stack (photo on top) */
@media (max-width: 767px) {
	.wsst-service-list .wsst-service--showcase { flex-direction: column; min-height: 0; }
	.wsst-service-list .wsst-service--showcase .wsst-service__top { padding: 1.4rem 1.4rem 1.5rem; }
	.wsst-service-list .wsst-service--showcase .wsst-service__media,
	.wsst-service-list .wsst-service--img-right .wsst-service__media { order: -1; flex: none; width: 100%; height: 200px; min-height: 0; }
	.wsst-service-list .wsst-service:not(.wsst-service--showcase) { grid-template-columns: auto minmax(0, 1fr); grid-template-areas: "icon title" "icon text" ". more"; padding: 1.25rem; column-gap: 1rem; }
}

/* ==========================================================================
   16. Services: CAROUSEL layout (native scroll-snap; buttons, dots, autoplay by carousel.js)
   ========================================================================== */
.wsst-carousel { --wsst-gap: 1.5rem; --pv: 1; }
@media (min-width: 640px) { .wsst-carousel { --pv: 2; } }
@media (min-width: 992px) { .wsst-carousel--cols-3 { --pv: 3; } .wsst-carousel--cols-4 { --pv: 4; } }
.wsst-carousel__track {
	display: flex; gap: var(--wsst-gap); padding: .85rem .25rem 1.4rem; margin-inline: -.25rem;
	overflow-x: auto; overscroll-behavior-x: contain; scroll-snap-type: x mandatory; scroll-behavior: smooth;
	scrollbar-width: none; -webkit-overflow-scrolling: touch;
}
.wsst-carousel__track::-webkit-scrollbar { display: none; }
.wsst-carousel__track:focus-visible { outline-offset: 4px; }
.wsst-carousel__track > * { flex: 0 0 calc((100% - (var(--pv) - 1) * var(--wsst-gap)) / var(--pv)); min-width: 0; scroll-snap-align: start; }
.wsst-carousel .wsst-service--slide[data-wsst-anim] { --wsst-i: 0 !important; }

.wsst-carousel__controls { display: flex; align-items: center; justify-content: center; gap: 1rem; margin-top: .25rem; }
.wsst-carousel.is-static .wsst-carousel__controls, .no-js .wsst-carousel__controls { display: none; }
.wsst-carousel__arrow, .wsst-carousel__pause {
	display: inline-flex; align-items: center; justify-content: center; padding: 0; color: var(--wsst-heading); background: var(--wsst-bg);
	border: 1px solid var(--wsst-border); border-radius: 50%; cursor: pointer; transition: background-color .2s, color .2s, border-color .2s;
}
.wsst-carousel__arrow { width: 46px; height: 46px; }
.wsst-carousel__pause { width: 34px; height: 34px; }
.wsst-carousel__arrow:hover:not(:disabled), .wsst-carousel__pause:hover { color: var(--wsst-on-primary); background: var(--wsst-primary); border-color: var(--wsst-primary); }
.wsst-carousel__arrow:disabled { opacity: .35; cursor: default; }
.wsst-carousel__pause .is-play { display: none; }
.wsst-carousel__pause.is-paused .is-play { display: block; }
.wsst-carousel__pause.is-paused .is-pause { display: none; }
.wsst-carousel__dots { display: flex; gap: .5rem; }
.wsst-carousel__dot { position: relative; width: 11px; height: 11px; padding: 0; background: var(--wsst-border); border: 0; border-radius: 999px; cursor: pointer; transition: width .3s, background-color .3s; }
.wsst-carousel__dot::after { content: ""; position: absolute; inset: -14px -5px; } /* larger touch target */
.wsst-carousel__dot.is-active { width: 30px; background: var(--wsst-primary); }
.wsst-bg-primary .wsst-carousel__arrow, .wsst-bg-primary .wsst-carousel__pause { color: #fff; background: rgba(255, 255, 255, .15); border-color: rgba(255, 255, 255, .5); }
.wsst-bg-primary .wsst-carousel__dot { background: rgba(255, 255, 255, .45); }
.wsst-bg-primary .wsst-carousel__dot.is-active { background: #fff; }
@media (prefers-reduced-motion: reduce) { .wsst-carousel__track { scroll-behavior: auto; } }

/* ==========================================================================
   17. Services Booking form (quote-style card)
   ========================================================================== */
.wsst-booking { overflow: hidden; background: var(--wsst-bg); border: 1px solid var(--wsst-border); border-radius: var(--wsst-radius-card); box-shadow: 0 18px 44px rgba(0, 0, 0, .1); }
.wsst-booking__head { padding: 1.4rem 1.6rem; color: var(--wsst-on-primary); background: linear-gradient(135deg, var(--wsst-primary), var(--wsst-secondary)); }
.wsst-booking__title { margin: 0 0 .3rem; color: inherit; font-size: 1.4rem; }
.wsst-booking__sub { margin: 0; font-size: .92rem; opacity: .92; }
.wsst-booking__form { padding: 1.5rem 1.6rem 1.75rem; }
.wsst-booking__form .wsst-form-grid { margin-bottom: 1rem; }
.wsst-booking__form .wsst-form-actions { display: flex; flex-wrap: wrap; gap: .75rem; }
.wsst-booking__form .wsst-form-actions .wsst-btn { flex: 1 1 200px; }
.wsst-booking-wrap { max-width: 920px; }
.wsst-booking-below { margin-top: 2.5rem; }
.wsst-layout--booking { align-items: start; }
@media (min-width: 992px) {
	.wsst-layout--booking { grid-template-columns: minmax(0, 1fr) 400px; }
	.wsst-booking-aside .wsst-booking { position: sticky; top: calc(var(--wsst-header-h) + 1.5rem); }
	.admin-bar .wsst-booking-aside .wsst-booking { top: calc(var(--wsst-header-h) + 3.5rem); }
}
.wsst-booking-aside .wsst-form-grid { grid-template-columns: 1fr; }
@media (min-width: 640px) and (max-width: 991px) { .wsst-booking-aside .wsst-form-grid { grid-template-columns: 1fr 1fr; } }

/* ==========================================================================
   18. Home hero content section
   ========================================================================== */
.wsst-hero { position: relative; display: flex; align-items: center; min-height: var(--wsst-hero-h, 70vh); padding-block: clamp(3.5rem, 2rem + 6vw, 7rem); overflow: hidden; color: #fff; scroll-margin-top: var(--wsst-header-h); }
.wsst-hero--bg-gradient, .wsst-hero--bg-image { background-color: var(--wsst-footer-bg); }
.wsst-hero--bg-gradient { background-image: linear-gradient(135deg, var(--wsst-footer-bg) 0%, color-mix(in srgb, var(--wsst-footer-bg) 78%, var(--wsst-primary)) 100%); }
.wsst-hero--bg-image { background-size: cover; background-position: center; }
.wsst-hero--bg-light { background: var(--wsst-surface); color: var(--wsst-text); }
.wsst-hero__overlay { position: absolute; inset: 0; background: rgba(0, 0, 0, var(--wsst-hero-overlay, .65)); }
.wsst-hero__inner { position: relative; z-index: 1; display: grid; gap: 3rem; align-items: center; }
@media (min-width: 992px) { .wsst-hero--split.has-side .wsst-hero__inner { grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); gap: 4rem; } }
.wsst-hero--centered .wsst-hero__content { max-width: 820px; margin-inline: auto; text-align: center; }
.wsst-hero--split:not(.has-side) .wsst-hero__content { max-width: 760px; }

.wsst-hero__eyebrow { display: inline-block; margin-bottom: 1.1rem; padding: .35rem 1rem; background: var(--wsst-accent); color: var(--wsst-on-accent); border-radius: 999px; font-size: .8rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.wsst-hero__title { margin: 0 0 1.1rem; color: #fff; font-size: clamp(2.2rem, 1.3rem + 3.6vw, 4rem); line-height: 1.1; }
.wsst-hero--bg-light .wsst-hero__title { color: var(--wsst-heading); }
.wsst-hero__hl { color: var(--wsst-hero-hl, var(--wsst-accent)); }
.wsst-hero--bg-light .wsst-hero__hl { color: var(--wsst-primary); }
.wsst-hero__text { max-width: 620px; margin: 0 0 1.5rem; font-size: clamp(1rem, .95rem + .4vw, 1.2rem); opacity: .95; }
.wsst-hero--centered .wsst-hero__text { margin-inline: auto; }
.wsst-hero__points { display: grid; gap: .6rem; margin: 0 0 1.75rem; padding: 0; list-style: none; }
.wsst-hero--centered .wsst-hero__points { justify-content: center; }
.wsst-hero__points li { display: flex; align-items: center; gap: .65rem; font-weight: 500; }
.wsst-hero--centered .wsst-hero__points li { justify-content: center; }
.wsst-hero__points .wsst-icon { flex: none; color: var(--wsst-hero-hl, var(--wsst-accent)); }
.wsst-hero--bg-light .wsst-hero__points .wsst-icon { color: var(--wsst-primary); }
.wsst-hero__buttons { display: flex; flex-wrap: wrap; gap: .75rem; margin-bottom: 1.5rem; }
.wsst-hero--centered .wsst-hero__buttons { justify-content: center; }
.wsst-hero__rating { display: flex; align-items: center; flex-wrap: wrap; gap: .6rem; margin: 0; font-size: .95rem; font-weight: 600; }
.wsst-hero--centered .wsst-hero__rating { justify-content: center; }
.wsst-hero__stars { display: inline-flex; gap: 2px; color: #facc15; }
.wsst-hero__stars .wsst-icon { fill: currentColor; }

.wsst-hero__side { position: relative; min-width: 0; }
.wsst-hero__side--form .wsst-booking { box-shadow: 0 28px 64px rgba(0, 0, 0, .35); color: var(--wsst-text); }
.wsst-hero__frame { overflow: hidden; aspect-ratio: 9 / 8; background: linear-gradient(135deg, var(--wsst-primary), var(--wsst-secondary)); border-radius: var(--wsst-radius-card); box-shadow: 0 28px 64px rgba(0, 0, 0, .35); }
.wsst-hero__frame img { width: 100%; height: 100%; object-fit: cover; }
.wsst-hero__placeholder { display: flex; align-items: center; justify-content: center; height: 100%; color: var(--wsst-on-primary); opacity: .5; }
.wsst-hero__badge { position: absolute; left: -.75rem; bottom: -1.25rem; padding: 1rem 1.5rem; background: var(--wsst-accent); color: var(--wsst-on-accent); border-radius: var(--wsst-radius-card); box-shadow: 0 14px 30px rgba(0, 0, 0, .3); text-align: center; }
.wsst-hero__badge strong { display: block; font: 800 1.9rem/1 var(--wsst-font-heading); }
.wsst-hero__badge span { font-size: .82rem; font-weight: 600; }

/* Transparent header: leave room for it above the first hero */
.wsst-header-transparent .wsst-home > .wsst-hero:first-child { padding-top: calc(var(--wsst-header-h) + 3.5rem); }
@media (max-width: 991px) { .wsst-hero { min-height: 0; } .wsst-hero__badge { left: .75rem; } }

/* ==========================================================================
   19. Math captcha (contact + booking forms)
   ========================================================================== */
.wsst-captcha { margin-top: 1rem; }
.wsst-captcha__row { display: flex; align-items: center; gap: .6rem; flex-wrap: wrap; }
.wsst-captcha__q { display: inline-flex; align-items: center; min-height: 40px; padding: 0 1rem; background: var(--wsst-surface); border: 1px solid var(--wsst-border); border-radius: var(--wsst-radius); color: var(--wsst-heading); font-size: 1.1rem; font-weight: 700; letter-spacing: .04em; white-space: nowrap; }
.wsst-captcha__a { width: 110px; text-align: center; font-size: 1.05rem; font-weight: 600; }
.wsst-captcha__refresh { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; padding: 0; color: var(--wsst-heading); background: var(--wsst-bg); border: 1px solid var(--wsst-border); border-radius: var(--wsst-radius); cursor: pointer; transition: background-color .2s, color .2s, border-color .2s; }
.wsst-captcha__refresh:hover { color: var(--wsst-on-primary); background: var(--wsst-primary); border-color: var(--wsst-primary); }
.wsst-captcha__help { margin: .35rem 0 0; color: var(--wsst-muted); font-size: .82rem; }

/* ==========================================================================
   20. Footer / sidebar widgets: About, Our Services, Contact Us
   ========================================================================== */
/* About widget: one stacked block - heading, then logo, then text, then social icons.
   (Class names are deliberately different from the home page "About" section, which is a two-column grid.) */
.wsst-about-widget { display: block; }
.wsst-about-widget > .site-logo, .wsst-about-widget > .wsst-footer__name, .wsst-about-widget > .site-title { margin-bottom: 1rem; }
.wsst-about-widget__text { margin: 0; }
.wsst-about-widget__text p { margin: 0 0 1rem; }
.wsst-about-widget__text > :last-child { margin-bottom: 0; }
.wsst-about-widget .wsst-social { margin-top: 1.25rem; }
.wsst-about-widget__more, .wsst-widget-more a:not(.wsst-btn) { display: inline-flex; align-items: center; gap: .4rem; font-weight: 600; text-decoration: none; }
.wsst-widget-list { display: grid; gap: .1rem; margin: 0 0 1rem; padding: 0; list-style: none; }
.widget .wsst-widget-list li, .site-footer .widget .wsst-widget-list li { display: flex; align-items: center; gap: .5rem; padding: .4rem 0; }
.wsst-widget-list .wsst-icon { flex: none; opacity: .7; }
.wsst-widget-list a { text-decoration: none; }
.wsst-widget-list a:hover { text-decoration: underline; }
.wsst-widget-contact-list { margin: 0 0 1.25rem; }
.widget .wsst-widget-contact .wsst-footer__contact .wsst-icon { color: var(--wsst-primary); }
.site-footer .widget .wsst-widget-contact .wsst-footer__contact .wsst-icon { color: var(--wsst-accent); }
.wsst-widget-more { margin: 0; }
.wsst-widget-more .wsst-btn { min-height: 42px; padding: .6rem 1.3rem; }
.site-footer .wsst-widget-more .wsst-btn { color: var(--wsst-on-accent); }
.site-footer .wsst-widget-more .wsst-btn:hover { color: var(--wsst-on-accent); }
.wsst-widget-note { font-size: .85rem; opacity: .8; }

/* ==========================================================================
   21. Blogs: cards (photo, heading, short description, read more), category chips
   ========================================================================== */
.wsst-post-card--blog { display: flex; flex-direction: column; overflow: hidden; height: 100%; }
.wsst-post-card--blog .wsst-post-card__media { display: block; aspect-ratio: 3 / 2; overflow: hidden; background: var(--wsst-surface); }
.wsst-post-card--blog .wsst-post-card__media img { width: 100%; height: 100%; object-fit: cover; }
.wsst-post-card__ph { display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; color: var(--wsst-on-primary); background: linear-gradient(135deg, var(--wsst-primary), var(--wsst-secondary)); opacity: .9; }
.wsst-post-card__ph .wsst-icon { opacity: .55; }
.wsst-post-card--blog .wsst-post-card__body { display: flex; flex-direction: column; flex: 1; padding: 1.4rem 1.5rem 1.6rem; }
.wsst-post-card--blog .wsst-post-card__title { margin: 0 0 .6rem; font-size: 1.2rem; line-height: 1.3; }
.wsst-post-card--blog .wsst-post-card__excerpt { flex: 1; margin-bottom: 1rem; }
.wsst-post-card--blog .wsst-post-card__excerpt p { margin: 0; color: var(--wsst-text); font-size: .95rem; line-height: 1.6; }
.wsst-post-card--blog .wsst-readmore { margin-top: auto; align-self: flex-start; }
.wsst-post-card--blog .wsst-meta { margin-bottom: .6rem; font-size: .8rem; }
.wsst-meta a { text-decoration: none; }
.wsst-meta a:hover { text-decoration: underline; }
.wsst-blog-grid { align-items: stretch; }
.wsst-carousel__track > .wsst-post-card--blog { height: auto; }
.wsst-chips { display: flex; flex-wrap: wrap; justify-content: center; gap: .5rem; margin-bottom: 2.25rem; }
.wsst-chip { display: inline-block; padding: .4rem 1rem; color: var(--wsst-heading); background: var(--wsst-surface); border: 1px solid var(--wsst-border); border-radius: 999px; font-size: .88rem; font-weight: 600; text-decoration: none; transition: background-color .2s, color .2s, border-color .2s; }
.wsst-chip:hover, .wsst-chip.is-active { color: var(--wsst-on-primary); background: var(--wsst-primary); border-color: var(--wsst-primary); }
.wsst-page--blogs .pagination { margin-top: 3rem; }

/* ==========================================================================
   22. Hero text position + booking popup
   ========================================================================== */
@media (min-width: 992px) {
	.wsst-hero--split.has-side.wsst-hero--valign-start .wsst-hero__inner { align-items: start; }
	.wsst-hero--split.has-side.wsst-hero--valign-center .wsst-hero__inner { align-items: center; }
}
/* Phones and tablets: the form is not squeezed under the text; the Book Now button opens it as a popup.
   (Without JavaScript the form simply stays visible.) */
@media (max-width: 991px) {
	.js .wsst-hero__side--form { display: none; }
}
.wsst-booking.is-attention { animation: wsstAttention 1.4s ease; }
@keyframes wsstAttention { 0%, 100% { box-shadow: 0 28px 64px rgba(0, 0, 0, .35); } 30% { box-shadow: 0 0 0 5px var(--wsst-accent), 0 28px 64px rgba(0, 0, 0, .35); } }

html.wsst-modal-open { overflow: hidden; }
.wsst-modal { position: fixed; inset: 0; z-index: 100000; display: flex; padding: clamp(12px, 4vh, 40px) 12px; overflow-y: auto; overscroll-behavior: contain; }
.wsst-modal[hidden] { display: none; }
.wsst-modal__backdrop { position: fixed; inset: 0; background: rgba(10, 15, 25, .7); }
.wsst-modal__panel { position: relative; z-index: 1; width: 100%; max-width: 700px; margin: auto; outline: 0; animation: wsstModalIn .22s ease; }
.wsst-modal__close { position: absolute; top: 12px; right: 12px; z-index: 3; display: grid; place-items: center; width: 40px; height: 40px; padding: 0; color: #111827; background: rgba(255, 255, 255, .96); border: 0; border-radius: 50%; box-shadow: 0 4px 14px rgba(0, 0, 0, .3); cursor: pointer; transition: transform .2s; }
.wsst-modal__close:hover { transform: scale(1.08); }
.wsst-modal__body .wsst-booking { box-shadow: 0 30px 80px rgba(0, 0, 0, .5); }
@keyframes wsstModalIn { from { opacity: 0; transform: translateY(16px) scale(.98); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .wsst-modal__panel, .wsst-booking.is-attention { animation: none; } }

/* ==========================================================================
   23. Related posts (single post)
   ========================================================================== */
.wsst-related { padding-block: clamp(2.5rem, 2rem + 3vw, 4.5rem); border-top: 1px solid var(--wsst-border); }
.wsst-related__title { margin: 0 0 1.75rem; font-size: clamp(1.5rem, 1.2rem + 1vw, 2rem); }

/* ==========================================================================
   24. Recent posts widget (thumbnail + title + date)
   ========================================================================== */
.wsst-recent { display: grid; gap: 0; margin: 0; padding: 0; list-style: none; }
.widget .wsst-recent__item { display: flex; align-items: center; gap: .9rem; margin: 0; padding: .8rem 0; border-bottom: 1px solid var(--wsst-border); }
.widget .wsst-recent__item:first-child { padding-top: .2rem; }
.widget .wsst-recent__item:last-child { padding-bottom: 0; border-bottom: 0; }
.wsst-recent__thumb { flex: none; display: block; width: 76px; height: 76px; overflow: hidden; background: var(--wsst-surface); border-radius: var(--wsst-radius); }
.wsst-recent__thumb img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.wsst-recent__item:hover .wsst-recent__thumb img { transform: scale(1.06); }
.wsst-recent__ph { display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; color: var(--wsst-on-primary); background: linear-gradient(135deg, var(--wsst-primary), var(--wsst-secondary)); }
.wsst-recent__ph .wsst-icon { opacity: .6; }
.wsst-recent__body { min-width: 0; }
.wsst-recent__title { display: -webkit-box; overflow: hidden; -webkit-box-orient: vertical; -webkit-line-clamp: 2; color: var(--wsst-heading); font-weight: 600; line-height: 1.35; text-decoration: none; }
.wsst-recent__title:hover { color: var(--wsst-primary); }
.wsst-recent__date { display: inline-flex; align-items: center; gap: .35rem; margin-top: .3rem; color: var(--wsst-muted); font-size: .8rem; }
.site-footer .wsst-recent__title { color: inherit; }
.site-footer .wsst-recent__title:hover { color: var(--wsst-accent); }
.site-footer .wsst-recent__date { color: inherit; opacity: .75; }
.site-footer .wsst-recent__item { border-color: rgba(255, 255, 255, .12); }

/* ==========================================================================
   25. Custom About us page
   ========================================================================== */
.wsst-hero-about { padding-block: clamp(2.75rem, 2rem + 3vw, 4.5rem) clamp(2.25rem, 1.8rem + 2vw, 3.5rem); color: #fff; }
.wsst-hero-about__title { margin: .5rem 0 .6rem; font-size: clamp(2rem, 1.4rem + 2.4vw, 3.1rem); }
.wsst-hero-about__sub { max-width: 640px; margin: 0; font-size: 1.05rem; opacity: .9; }
.wsst-about-stats__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 1.5rem; text-align: center; }
.wsst-about-stats__item strong { display: block; color: var(--wsst-primary); font: 800 clamp(1.7rem, 1.3rem + 1.4vw, 2.4rem)/1 var(--wsst-font-heading); }
.wsst-about-stats__item span { display: block; margin-top: .35rem; color: var(--wsst-muted); font-size: .88rem; }
.wsst-about-story__grid { display: grid; gap: 3rem; align-items: center; }
@media (min-width: 992px) { .wsst-about-story__grid { grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr); } }
.wsst-about-story__media { aspect-ratio: 1 / 1; overflow: hidden; border-radius: var(--wsst-radius-card); }
.wsst-about-story__media img { width: 100%; height: 100%; object-fit: cover; }
.wsst-about-story__ph { display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; color: var(--wsst-on-primary); background: linear-gradient(135deg, var(--wsst-primary), var(--wsst-secondary)); opacity: .85; }
.wsst-about-story__mission { margin: 1.75rem 0 0; padding: 1.1rem 1.4rem; background: var(--wsst-surface); border-left: 4px solid var(--wsst-primary); border-radius: var(--wsst-radius); font-style: italic; }
.wsst-about-values__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1.5rem; }
.wsst-about-values__item { padding: 1.75rem; background: var(--wsst-card-bg, var(--wsst-surface)); border-radius: var(--wsst-radius-card); }
.wsst-about-values__icon { display: inline-flex; align-items: center; justify-content: center; width: 52px; height: 52px; margin-bottom: 1rem; color: var(--wsst-primary); background: var(--wsst-bg); border-radius: 50%; }
.wsst-about-values__item h3 { margin: 0 0 .5rem; font-size: 1.1rem; }
.wsst-about-values__item p { margin: 0; color: var(--wsst-text); font-size: .92rem; line-height: 1.6; }
.wsst-about-faq { max-width: 860px; }

/* ==========================================================================
   26. Service categories: "view all services" back link
   ========================================================================== */
.wsst-services__back { margin: 0 0 1.5rem; }
.wsst-services__back a { display: inline-flex; align-items: center; gap: .4rem; color: var(--wsst-primary); font-weight: 600; text-decoration: none; }
.wsst-services__back a:hover { text-decoration: underline; }
.wsst-services__back .wsst-icon--flip { transform: scaleX(-1); }
