@charset "UTF-8";
/* =================================================================== 
 * Monica Main Stylesheet
 * Template Ver. 1.0.0
 * 12-13-2022
 * ------------------------------------------------------------------
 *
 * TOC:
 * # SETTINGS
 *		## fonts
 *    	## colors
 *	  	## spacing and typescale
 *		## grid variables
 * # CSS RESET
 * # GRID
 *		## extra large devices
 *		## large devices
 *		## medium devices 
 *		## tablet devices
 *		## mobile devices
 *		## small mobile devices
 *		## additional column stackpoints 
 * # BASE SETUP
 * # UTILITY CLASSES
 * # TYPOGRAPHY 
 *		## additional typography & helper classes
 *		## lists
 *		## media 
 *		## spacing
 * # PRELOADER
 *		## page loaded
 * # FORM 
 *		## style placeholder text
 *		## change autocomplete styles in Chrome
 * # BUTTONS
 * # TABLE
 * # COMPONENTS
 *		## pagination 
 *		## alert box 
 *		## skillbars
 *		## stats tabs
 * # PROJECT-WIDE SHARED STYLES
 *		## list items
 *		## social list
 *		## blog card
 *		## testimonials
 *		## swiper overrides
 * # GRID-BASED LAYOUTS
 *		## grid block
 *		## list grid
 * # PAGE WRAP
 * # SITE HEADER
 *		## logo
 *		## main navigation
 *		## mobile menu toggle
 * # PAGEHEADER & PAGECONTENT
 * # INTRO
 *		## intro content
 *		## intro scroll down
 *		## intro transitions
 * # ABOUT
 * # EXPERTISE
 * # CLIENTS
 *		## clients list
 * # CTA
 * # JOURNAL
 * # FOOTER
 *		## newsletter
 *		## copyright
 *		## go top
 * # BLOG STYLES 
 * # PAGE STYLES 
 *		## services page
 *		## contact page
 *
 * ------------------------------------------------------------------ */


/* ===================================================================
 * # SETTINGS
 *
 *
 * ------------------------------------------------------------------- */

/* ------------------------------------------------------------------- 
 * ## fonts 
 * ------------------------------------------------------------------- */
@import url("https://fonts.googleapis.com/css2?family=DM+Serif+Display&family=Roboto+Flex:opsz,wght@8..144,300;8..144,400;8..144,500;8..144,600&display=swap");

html,
body {
	max-width: 100%;
	overflow-x: clip;
	margin: 0;
	padding: 0;
}

:root {
	--font-1: "Roboto Flex", sans-serif;
	--font-2: "DM Serif Display", Serif;

	/* monospace
   */
	--font-mono: Consolas, "Andale Mono", Courier, "Courier New", monospace;
}

/* ------------------------------------------------------------------- 
 * ## colors
 * ------------------------------------------------------------------- */
:root {
	/* color-1(#BC6C25)
   * color-2(#283618)
   * color-3(#FEF5E4)
   */
	--color-1: hsla(28, 67%, 44%, 1);
	--color-2: hsla(88, 38%, 22%, 1);
	--color-3: hsla(39, 93%, 95%, 1);

	/* theme color variations
   */
	--color-1-lightest: hsla(28, 67%, 91%, 1);
	--color-1-lighter: hsla(28, 67%, 64%, 1);
	--color-1-light: hsla(28, 67%, 54%, 1);
	--color-1-dark: hsla(28, 67%, 34%, 1);
	--color-1-darker: hsla(28, 67%, 24%, 1);
	--color-1-darkest: hsla(28, 67%, 10%, 1);

	--color-2-lightest: hsla(88, 38%, 55%, 1);
	--color-2-lighter: hsla(88, 38%, 42%, 1);
	--color-2-light: hsla(88, 38%, 32%, 1);
	--color-2-dark: hsla(88, 38%, 15%, 1);
	--color-2-darker: hsla(88, 38%, 2%, 1);

	--color-3-light: hsla(39, 93%, 100%, 1);
	--color-3-dark: hsla(39, 93%, 85%, 1);
	--color-3-darker: hsla(39, 93%, 75%, 1);

	/* feedback colors
   * color-error(#ffd1d2), color-success(#c8e675), 
   * color-info(#d7ecfb), color-notice(#fff099)
   */
	--color-error: hsla(359, 100%, 91%, 1);
	--color-success: hsla(76, 69%, 68%, 1);
	--color-info: hsla(205, 82%, 91%, 1);
	--color-notice: hsla(51, 100%, 80%, 1);
	--color-error-content: hsla(359, 50%, 50%, 1);
	--color-success-content: hsla(76, 29%, 28%, 1);
	--color-info-content: hsla(205, 32%, 31%, 1);
	--color-notice-content: hsla(51, 30%, 30%, 1);

	/* shades 
   * generated using 
   * Tint & Shade Generator 
   * (https                     ://maketintsandshades.com/)
   */
	--color-black: #000000;
	--color-gray-19: #121212;
	--color-gray-18: #242525;
	--color-gray-17: #363737;
	--color-gray-16: #484949;
	--color-gray-15: #5b5c5c;
	--color-gray-14: #6d6e6e;
	--color-gray-13: #7f8080;
	--color-gray-12: #919292;
	--color-gray-11: #a3a5a5;
	--color-gray-10: #b5b7b7;
	--color-gray-9: #bcbebe;
	--color-gray-8: #c4c5c5;
	--color-gray-7: #cbcdcd;
	--color-gray-6: #d3d4d4;
	--color-gray-5: #dadbdb;
	--color-gray-4: #e1e2e2;
	--color-gray-3: #e9e9e9;
	--color-gray-2: #f0f1f1;
	--color-gray-1: #f8f8f8;
	--color-white: #ffffff;

	/* text
   */
	--color-text: var(--color-gray-18);
	--color-text-dark: #181818;
	--color-text-light: var(--color-gray-14);
	--color-placeholder: var(--color-gray-12);

	/* link
   */
	--color-link: var(--color-1);
	--color-link-hover: var(--color-2-lighter);
	--color-link-active: var(--color-2-lighter);

	/* buttons
   */
	--color-btn: var(--color-gray-4);
	--color-btn-text: var(--color-text);
	--color-btn-hover: var(--color-gray-5);
	--color-btn-hover-text: var(--color-text);
	--color-btn-primary: var(--color-1);
	--color-btn-primary-text: var(--color-2-dark);
	--color-btn-primary-hover: var(--color-1-light);
	--color-btn-primary-hover-text: var(--color-2-dark);
	--color-btn-stroke: var(--color-text-dark);
	--color-btn-stroke-text: var(--color-text-dark);
	--color-btn-stroke-hover: var(--color-text-dark);
	--color-btn-stroke-hover-text: var(--color-white);

	/* preloader
   */
	--color-preloader-bg: #151515;
	--color-loader: var(--color-white);
	--color-loader-light: var(--color-2-light);
	--color-warning-light: #fefee8;
	--color-error: #ef4444;
	--color-error-light: #fef2f2;
	--color-body: #0D0D12;
	--color-border: rgba(0, 0, 0, 0.1);
	--border-radius: 5px;
}

/* ------------------------------------------------------------------- 
 * ## spacing and typescale
 * ------------------------------------------------------------------- */
:root {
	/* spacing
   * base font size: 20px 
   * vertical space unit : 32px
   */
	--base-size: 62.5%;
	--multiplier: 1;
	--base-font-size: calc(2rem * var(--multiplier));
	--space: calc(3.2rem * var(--multiplier));

	/* vertical spacing 
   */
	--vspace-0_125: calc(0.125 * var(--space));
	--vspace-0_25: calc(0.25 * var(--space));
	--vspace-0_375: calc(0.375 * var(--space));
	--vspace-0_5: calc(0.5 * var(--space));
	--vspace-0_625: calc(0.625 * var(--space));
	--vspace-0_75: calc(0.75 * var(--space));
	--vspace-0_875: calc(0.875 * var(--space));
	--vspace-1: calc(var(--space));
	--vspace-1_25: calc(1.25 * var(--space));
	--vspace-1_5: calc(1.5 * var(--space));
	--vspace-1_75: calc(1.75 * var(--space));
	--vspace-2: calc(2 * var(--space));
	--vspace-2_5: calc(2.5 * var(--space));
	--vspace-3: calc(3 * var(--space));
	--vspace-3_5: calc(3.5 * var(--space));
	--vspace-4: calc(4 * var(--space));
	--vspace-4_5: calc(4.5 * var(--space));
	--vspace-5: calc(5 * var(--space));
	--vspace-5_5: calc(5.5 * var(--space));
	--vspace-6: calc(6 * var(--space));
	--vspace-6_5: calc(6.5 * var(--space));
	--vspace-7: calc(7 * var(--space));
	--vspace-7_5: calc(7.5 * var(--space));
	--vspace-8: calc(8 * var(--space));
	--vspace-8_5: calc(8.5 * var(--space));
	--vspace-9: calc(9 * var(--space));
	--vspace-9_5: calc(9.5 * var(--space));
	--vspace-10: calc(10 * var(--space));

	/* type scale
   * ratio 1        :2 | base: 20px
   * -------------------------------------------------------
   *
   * --text-huge-3    = (148.60px)
   * --text-huge-2    = (123.83px)
   * --text-huge-1    = (103.20px)
   * --text-display-3 = (86.00px)
   * --text-display-2 = (71.66px)
   * --text-display-1 = (59.72px)
   * --text-xxxl      = (49.77px)
   * --text-xxl       = (41.47px)
   * --text-xl        = (34.56px)
   * --text-lg        = (28.80px)
   * --text-md        = (24.00px)
   * --text-size      = (20.00px) BASE
   * --text-sm        = (16.67px)
   * --text-xs        = (13.89px)
   *
   * ---------------------------------------------------------
   */
	--text-scale-ratio: 1.2;
	--text-size: var(--base-font-size);
	--text-xs: calc((var(--text-size) / var(--text-scale-ratio)) / var(--text-scale-ratio));
	--text-sm: calc(var(--text-xs) * var(--text-scale-ratio));
	--text-md: calc(var(--text-sm) * var(--text-scale-ratio) * var(--text-scale-ratio));
	--text-lg: calc(var(--text-md) * var(--text-scale-ratio));
	--text-xl: calc(var(--text-lg) * var(--text-scale-ratio));
	--text-xxl: calc(var(--text-xl) * var(--text-scale-ratio));
	--text-xxxl: calc(var(--text-xxl) * var(--text-scale-ratio));
	--text-display-1: calc(var(--text-xxxl) * var(--text-scale-ratio));
	--text-display-2: calc(var(--text-display-1) * var(--text-scale-ratio));
	--text-display-3: calc(var(--text-display-2) * var(--text-scale-ratio));
	--text-huge-1: calc(var(--text-display-3) * var(--text-scale-ratio));
	--text-huge-2: calc(var(--text-huge-1) * var(--text-scale-ratio));
	--text-huge-3: calc(var(--text-huge-2) * var(--text-scale-ratio));

	/* default button height
   */
	--vspace-btn: var(--vspace-2);
}

/* on mobile devices below 600px, change the value of '--multiplier' 
 * to adjust the values of base font size and vertical space unit.
 */
@media screen and (max-width: 600px) {
	:root {
		--multiplier: .9375;
	}
}

/* ------------------------------------------------------------------- 
 * ## grid variables
 * ------------------------------------------------------------------- */
:root {

	/* widths for rows and containers
   */
	--width-sixteen-cols: 1760px;
	--width-default: 1320px;
	--width-wide: 1600px;
	--width-wider: 1800px;
	--width-narrow: 1200px;
	--width-narrower: 1000px;
	--width-narrowest: 800px;
	--width-full: 100%;
	--width-grid-max: var(--width-default);

	/* gutter
   */
	--gutter: 2.4rem;
}

/* on large screen devices
 */
@media screen and (max-width: 1000px) {
	:root {
		--gutter: 2.2rem;
	}
}

/* on small devices
 */
@media screen and (max-width: 600px) {
	:root {
		--gutter: 1rem;
	}
}



/* ====================================================================
 * # CSS RESET
 *
 *
 * --------------------------------------------------------------------
 * http://meyerweb.com/eric/tools/css/reset/ 
 * v2.0 | 20110126
 * License: none (public domain)
 * -------------------------------------------------------------------- */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
	display: block;
}

body {
	line-height: 1;
}

ol,
ul {
	list-style: none;
}

blockquote,
q {
	quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: "";
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}


/* ===================================================================
 * # GRID v5.0.0
 *
 *
 * -------------------------------------------------------------------
 * - Grid system based on the flex display property.
 *
 * - Grid breakpoints are based on MAXIMUM WIDTH media queries, 
 *   meaning they apply to that one breakpoint and ALL THOSE BELOW IT.
 *
 * - Grid columns without a specified width will automatically layout 
 *   as equal width columns.
 *
 * - On viewports 400px and below, all grid columns will stacked 
 *   vertically
 *
 * ------------------------------------------------------------------- */

/* row 
 */
.row {
	display: flex;
	flex-flow: row wrap;
	width: min(92%, var(--width-grid-max));
	margin: 0 auto;
}

.row .row {
	width: auto;
	margin-left: calc(var(--gutter) * -1);
	margin-right: calc(var(--gutter) * -1);
}

/* column
 */
.column {
	flex: 1;
	padding: 0 var(--gutter);
}

.collapse>.column,
.column.collapse {
	padding: 0;
}

/* row utility classes
 */
.row.row-wrap {
	flex-wrap: wrap;
}

.row.row-nowrap {
	flex-wrap: nowrap;
}

.row.row-y-top {
	align-items: flex-start;
}

.row.row-y-bottom {
	align-items: flex-end;
}

.row.row-y-center {
	align-items: center;
}

.row.row-stretch {
	align-items: stretch;
}

.row.row-baseline {
	align-items: baseline;
}

.row.row-x-left {
	justify-content: flex-start;
}

.row.row-x-right {
	justify-content: flex-end;
}

.row.row-x-center {
	justify-content: center;
}

.row.row-center {
	align-items: center;
	justify-content: center;
}

/* ------------------------- -------------------------------------------
 * ## extra large devices (1201px and above)
 * -------------------------------------------------------------------- */
.xl-1 {
	flex: none;
	width: 8.3333333333%;
}

.xl-2 {
	flex: none;
	width: 16.6666666667%;
}

.xl-3 {
	flex: none;
	width: 25%;
}

.xl-4 {
	flex: none;
	width: 33.3333333333%;
}

.xl-5 {
	flex: none;
	width: 41.6666666667%;
}

.xl-6 {
	flex: none;
	width: 50%;
}

.xl-7 {
	flex: none;
	width: 58.3333333333%;
}

.xl-8 {
	flex: none;
	width: 66.6666666667%;
}

.xl-9 {
	flex: none;
	width: 75%;
}

.xl-10 {
	flex: none;
	width: 83.3333333333%;
}

.xl-11 {
	flex: none;
	width: 91.6666666667%;
}

.xl-12 {
	flex: none;
	width: 100%;
}

/* --------------------------------------------------------------------
 * ## large devices (1001px to 1200px)
 * -------------------------------------------------------------------- */
@media screen and (max-width: 1200px) {
	.lg-1 {
		flex: none;
		width: 8.3333333333%;
	}

	.lg-2 {
		flex: none;
		width: 16.6666666667%;
	}

	.lg-3 {
		flex: none;
		width: 25%;
	}

	.lg-4 {
		flex: none;
		width: 33.3333333333%;
	}

	.lg-5 {
		flex: none;
		width: 41.6666666667%;
	}

	.lg-6 {
		flex: none;
		width: 50%;
	}

	.lg-7 {
		flex: none;
		width: 58.3333333333%;
	}

	.lg-8 {
		flex: none;
		width: 66.6666666667%;
	}

	.lg-9 {
		flex: none;
		width: 75%;
	}

	.lg-10 {
		flex: none;
		width: 83.3333333333%;
	}

	.lg-11 {
		flex: none;
		width: 91.6666666667%;
	}

	.lg-12 {
		flex: none;
		width: 100%;
	}
}

/* --------------------------------------------------------------------
 * ## medium devices (801px to 1000px)
 * -------------------------------------------------------------------- */
@media screen and (max-width: 1000px) {
	.md-1 {
		flex: none;
		width: 8.3333333333%;
	}

	.md-2 {
		flex: none;
		width: 16.6666666667%;
	}

	.md-3 {
		flex: none;
		width: 25%;
	}

	.md-4 {
		flex: none;
		width: 33.3333333333%;
	}

	.md-5 {
		flex: none;
		width: 41.6666666667%;
	}

	.md-6 {
		flex: none;
		width: 50%;
	}

	.md-7 {
		flex: none;
		width: 58.3333333333%;
	}

	.md-8 {
		flex: none;
		width: 66.6666666667%;
	}

	.md-9 {
		flex: none;
		width: 75%;
	}

	.md-10 {
		flex: none;
		width: 83.3333333333%;
	}

	.md-11 {
		flex: none;
		width: 91.6666666667%;
	}

	.md-12 {
		flex: none;
		width: 100%;
	}
}

/* --------------------------------------------------------------------
 * ## tablet devices (601px to 800px)  
 * -------------------------------------------------------------------- */
@media screen and (max-width: 800px) {
	.tab-1 {
		flex: none;
		width: 8.3333333333%;
	}

	.tab-2 {
		flex: none;
		width: 16.6666666667%;
	}

	.tab-3 {
		flex: none;
		width: 25%;
	}

	.tab-4 {
		flex: none;
		width: 33.3333333333%;
	}

	.tab-5 {
		flex: none;
		width: 41.6666666667%;
	}

	.tab-6 {
		flex: none;
		width: 50%;
	}

	.tab-7 {
		flex: none;
		width: 58.3333333333%;
	}

	.tab-8 {
		flex: none;
		width: 66.6666666667%;
	}

	.tab-9 {
		flex: none;
		width: 75%;
	}

	.tab-10 {
		flex: none;
		width: 83.3333333333%;
	}

	.tab-11 {
		flex: none;
		width: 91.6666666667%;
	}

	.tab-12 {
		flex: none;
		width: 100%;
	}
}

/* --------------------------------------------------------------------
 * ## mobile devices (401px to 600px)  
 * -------------------------------------------------------------------- */
@media screen and (max-width: 600px) {
	.row {
		width: 100%;
		padding-left: 6vw;
		padding-right: 6vw;
	}

	.row .row {
		padding-left: 0;
		padding-right: 0;
	}

	.mob-1 {
		flex: none;
		width: 8.3333333333%;
	}

	.mob-2 {
		flex: none;
		width: 16.6666666667%;
	}

	.mob-3 {
		flex: none;
		width: 25%;
	}

	.mob-4 {
		flex: none;
		width: 33.3333333333%;
	}

	.mob-5 {
		flex: none;
		width: 41.6666666667%;
	}

	.mob-6 {
		flex: none;
		width: 50%;
	}

	.mob-7 {
		flex: none;
		width: 58.3333333333%;
	}

	.mob-8 {
		flex: none;
		width: 66.6666666667%;
	}

	.mob-9 {
		flex: none;
		width: 75%;
	}

	.mob-10 {
		flex: none;
		width: 83.3333333333%;
	}

	.mob-11 {
		flex: none;
		width: 91.6666666667%;
	}

	.mob-12 {
		flex: none;
		width: 100%;
	}
}

/* --------------------------------------------------------------------
 * ## small mobile devices (up to 400px)
 * -------------------------------------------------------------------- */

/* stack columns vertically
 */
@media screen and (max-width: 400px) {
	.row .row {
		margin-left: 0;
		margin-right: 0;
	}

	.column {
		flex: none;
		width: 100%;
		margin-left: 0;
		margin-right: 0;
		padding: 0;
	}
}

/* --------------------------------------------------------------------
 * ## additional column stackpoints 
 * -------------------------------------------------------------------- */
@media screen and (max-width: 900px) {
	.stack-on-900 {
		flex: none;
		width: 100%;
		margin-left: 0;
		margin-right: 0;
	}
}

@media screen and (max-width: 700px) {
	.stack-on-700 {
		flex: none;
		width: 100%;
		margin-left: 0;
		margin-right: 0;
	}
}

@media screen and (max-width: 550px) {
	.stack-on-550 {
		flex: none;
		width: 100%;
		margin-left: 0;
		margin-right: 0;
	}
}


/* ===================================================================
 * # BASE SETUP
 *
 *
 * ------------------------------------------------------------------- */
html {
	font-size: var(--base-size);
	box-sizing: border-box;
}

*,
*::before,
*::after {
	box-sizing: inherit;
}

html,
body {
	min-height: 100%;
	/* Changed from height: 100% to fix mobile scrolling bug */
}

body {
	background-color: var(--color-body);
	-webkit-overflow-scrolling: touch;
	-webkit-text-size-adjust: 100%;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

p {
	font-size: inherit;
	text-rendering: optimizeLegibility;
}

a {
	text-decoration: none;
}

svg,
img,
video {
	max-width: 100%;
	height: auto;
}

pre {
	overflow: auto;
}

/* Lenis Smooth Scroll
 * ------------------------------------------------------------------- */
html.lenis {
	height: auto;
}

.lenis.lenis-smooth {
	scroll-behavior: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
	overscroll-behavior: contain;
}

.lenis.lenis-stopped {
	overflow: hidden;
}

.lenis.lenis-scrolling iframe {
	pointer-events: none;
}


div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
p,
blockquote,
th,
td {
	margin: 0;
	padding: 0;
}

input[type=email],
input[type=number],
input[type=search],
input[type=text],
input[type=tel],
input[type=url],
input[type=password],
textarea {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}


/* ===================================================================
 * # UTILITY CLASSES
 *
 *
 * ------------------------------------------------------------------- */

/* flex item alignment classes
 */
.u-flexitem-center {
	margin: auto;
	align-self: center;
}

.u-flexitem-left {
	margin-right: auto;
	align-self: center;
}

.u-flexitem-right {
	margin-left: auto;
	align-self: center;
}

.u-flexitem-x-center {
	margin-right: auto;
	margin-left: auto;
}

.u-flexitem-x-left {
	margin-right: auto;
}

.u-flexitem-x-right {
	margin-left: auto;
}

.u-flexitem-y-center {
	align-self: center;
}

.u-flexitem-y-top {
	align-self: flex-start;
}

.u-flexitem-y-bottom {
	align-self: flex-end;
}

/* misc helper classes
 */
.u-screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	-webkit-clip-path: inset(50%);
	clip-path: inset(50%);
	height: 1px;
	width: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	border: 0;
	position: absolute;
	word-wrap: normal !important;
}

.u-clearfix:after {
	content: "";
	display: table;
	clear: both;
}

.u-flex-center {
	align-items: center;
	justify-content: center;
}

.u-hidden {
	display: none;
}

.u-invisible {
	visibility: hidden;
}

.u-antialiased {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.u-overflow-hidden {
	overflow: hidden;
}

.u-remove-top {
	margin-top: 0;
}

.u-remove-bottom {
	margin-bottom: 0;
}

.u-add-half-bottom {
	margin-bottom: var(--vspace-0_5);
}

.u-add-bottom {
	margin-bottom: var(--vspace-1);
}

.u-no-border {
	border: none;
}

.u-fullwidth {
	width: 100%;
}

.u-pull-left {
	float: left;
}

.u-pull-right {
	float: right;
}


/* ===================================================================
 * # TYPOGRAPHY 
 *
 *
 * ------------------------------------------------------------------- 
 * type scale - ratio 1:2 | base: 20px
 * -------------------------------------------------------------------
 *
 * --text-huge-3    = (148.60px)
 * --text-huge-2    = (123.83px)
 * --text-huge-1    = (103.20px)
 * --text-display-3 = (86.00px)
 * --text-display-2 = (71.66px)
 * --text-display-1 = (59.72px)
 * --text-xxxl      = (49.77px)
 * --text-xxl       = (41.47px)
 * --text-xl        = (34.56px)
 * --text-lg        = (28.80px)
 * --text-md        = (24.00px)
 * --text-size      = (20.00px) BASE
 * --text-sm        = (16.67px)
 * --text-xs        = (13.89px)
 *
 * -------------------------------------------------------------------- */

/* --------------------------------------------------------------------
 * ## base type styles
 * -------------------------------------------------------------------- */
body {
	font-family: var(--font-1);
	font-size: var(--base-font-size);
	font-weight: 400;
	line-height: var(--vspace-1);
	color: var(--color-text);
}

/* links
 */
a {
	color: var(--color-link);
	transition: all 0.3s ease-in-out;
}

a:focus,
a:hover,
a:active {
	color: var(--color-link-hover);
}

a:hover,
a:active {
	outline: 0;
}

/* headings
 */
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
	font-family: var(--font-2);
	font-weight: 400;
	color: var(--color-text-dark);
	font-variant-ligatures: common-ligatures;
	text-rendering: optimizeLegibility;
}

h1,
.h1 {
	margin-top: var(--vspace-2_5);
	margin-bottom: var(--vspace-0_75);
}

h2,
.h2,
h3,
.h3,
h4,
.h4 {
	margin-top: var(--vspace-2);
	margin-bottom: var(--vspace-0_75);
}

h5,
.h5,
h6,
.h6 {
	margin-top: var(--vspace-1_75);
	margin-bottom: var(--vspace-0_5);
}

h1,
.h1 {
	font-size: var(--text-display-2);
	line-height: calc(2.25 * var(--space));
	letter-spacing: -0.015em;
}

@media screen and (max-width: 500px) {

	h1,
	.h1 {
		font-size: var(--text-xxxl);
		line-height: calc(1.625 * var(--space));
	}
}

h2,
.h2 {
	font-size: var(--text-xxl);
	line-height: calc(1.375 * var(--space));
	letter-spacing: -0.012em;
}

h3,
.h3 {
	font-size: var(--text-xl);
	line-height: calc(1.125 * var(--space));
}

h4,
.h4 {
	font-size: var(--text-lg);
	line-height: var(--vspace-1);
}

h5,
.h5 {
	font-size: var(--text-md);
	line-height: var(--vspace-0_875);
}

h6,
.h6 {
	font-family: var(--font-1);
	font-weight: 600;
	font-size: var(--text-sm);
	line-height: var(--vspace-0_75);
	text-transform: uppercase;
	letter-spacing: 0.3rem;
}

/* emphasis, italic,
 * strong, bold and small text
 */
em,
i,
strong,
b {
	font-size: inherit;
	line-height: inherit;
}

em,
i {
	font-style: italic;
}

strong,
b {
	font-weight: 600;
	color: var(--color-text-dark);
}

small {
	font-size: 80%;
	font-weight: 400;
	line-height: var(--vspace-0_5);
}

/* blockquotes
 */
blockquote {
	margin: 0 0 var(--vspace-1) 0;
	padding: var(--vspace-1) var(--vspace-1_5);
	border-left: 2px solid var(--color-text-dark);
	position: relative;
}

blockquote p {
	font-family: var(--font-1);
	font-weight: 400;
	font-size: var(--text-lg);
	font-style: normal;
	line-height: var(--vspace-1_25);
	color: var(--color-text-dark);
	padding: 0;
}

blockquote cite {
	display: block;
	font-family: var(--font-1);
	font-weight: 400;
	font-size: var(--text-sm);
	line-height: var(--vspace-0_75);
	font-style: normal;
}

blockquote cite:before {
	content: "— ";
}

blockquote cite,
blockquote cite a,
blockquote cite a:visited {
	color: var(--color-text-light);
	border: none;
}

@media screen and (max-width: 500px) {
	blockquote {
		padding: var(--vspace-0_75) var(--vspace-0_75);
	}

	blockquote p {
		font-size: var(--text-md);
		line-height: var(--vspace-1);
	}
}

/* figures
 */
figure img,
p img {
	margin: 0;
	vertical-align: bottom;
}

figure {
	display: block;
	margin-left: 0;
	margin-right: 0;
}

figure img+figcaption {
	margin-top: var(--vspace-1);
}

figcaption {
	/* font-style: italic; */
	font-size: var(--text-sm);
	text-align: center;
	margin-bottom: 0;
}

/* preformatted, code
 */
var,
kbd,
samp,
code,
pre {
	font-family: var(--font-mono);
}

pre {
	padding: var(--vspace-0_75) var(--vspace-1) var(--vspace-1);
	background: var(--color-gray-2);
	overflow-x: auto;
}

code {
	font-size: var(--text-sm);
	line-height: 1.6rem;
	margin: 0 0.2rem;
	padding: calc((var(--vspace-1) - 1.6rem) / 2 - 0.1rem) 0.7rem;
	white-space: nowrap;
	background: var(--color-gray-2);
	border: 1px solid var(--color-gray-5);
	color: var(--color-text);
	border-radius: 3px;
}

pre>code {
	display: block;
	white-space: pre;
	line-height: var(--vspace-1);
	padding: 0;
	margin: 0;
	border: none;
}

/* deleted text, abbreviation,
 * & mark text
 */
del {
	text-decoration: line-through;
}

abbr {
	font-family: var(--font-1);
	font-weight: 600;
	font-variant: small-caps;
	text-transform: lowercase;
	letter-spacing: 0.1em;
	color: var(--color-text-dark);
}

abbr[title],
dfn[title] {
	border-bottom: 1px dotted;
	cursor: help;
	text-decoration: none;
}

mark {
	background: var(--color-1-light);
	color: var(--color-text);
}

/* horizontal rule
 */
hr {
	border: solid var(--color-border);
	border-width: 0.1rem 0 0;
	clear: both;
	margin: var(--vspace-2) 0 calc(var(--vspace-2) - 1px);
	height: 0;
}

hr.fancy {
	border: none;
	margin: var(--vspace-2) 0;
	height: var(--vspace-1);
	text-align: center;
}

hr.fancy::before {
	content: "*****";
	letter-spacing: 0.3em;
}

/* --------------------------------------------------------------------
 * ## additional typography & helper classes
 * -------------------------------------------------------------------- */
.lead,
.attention-getter {
	font-family: var(--font-1);
	font-size: var(--text-xl);
	line-height: var(--vspace-1_75);
}

@media screen and (max-width: 800px) {

	.lead,
	.attention-getter {
		font-size: calc(var(--text-size) * 1.1);
		line-height: calc(1.125 * var(--space));
	}
}

.pull-quote {
	position: relative;
	padding: 0;
	margin-top: 0;
	text-align: center;
}

.pull-quote blockquote {
	border: none;
	margin: 0 auto;
	max-width: 62rem;
	padding-top: var(--vspace-2_5);
	position: relative;
}

.pull-quote blockquote p {
	font-weight: 400;
	color: var(--color-text-dark);
}

.pull-quote blockquote:before {
	content: "";
	display: block;
	height: var(--vspace-1);
	width: var(--vspace-1);
	background-repeat: no-repeat;
	background: center center;
	background-size: contain;
	background-image: url(../images/icons/icon-quote.svg);
	transform: translate(-50%, 0, 0);
	position: absolute;
	top: var(--vspace-1);
	left: 50%;
}

.drop-cap:first-letter {
	float: left;
	font-family: var(--font-1);
	font-weight: 600;
	font-size: calc(3 * var(--space));
	line-height: 1;
	padding: 0 0.125em 0 0;
	text-transform: uppercase;
	background: transparent;
	color: var(--color-text-dark);
}

.text-center {
	text-align: center;
}

.text-left {
	text-align: left;
}

.text-right {
	text-align: right;
}

/* --------------------------------------------------------------------
 * ## lists
 * -------------------------------------------------------------------- */
ol {
	list-style: decimal;
}

ul {
	list-style: disc;
}

li {
	display: list-item;
}

ol,
ul {
	margin-left: 1.6rem;
}

ul li {
	padding-left: 0.4rem;
}

ul ul,
ul ol,
ol ol,
ol ul {
	margin: 1.6rem 0 1.6rem 1.6rem;
}

ul.disc li {
	display: list-item;
	list-style: none;
	padding: 0 0 0 0.8rem;
	position: relative;
}

ul.disc li::before {
	content: "";
	display: inline-block;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--color-1);
	position: absolute;
	left: -0.8em;
	top: calc(50% - 4px);
	vertical-align: middle;
}

dt {
	margin: 0;
	color: var(--color-1);
}

dt strong {
	color: var(--color-1);
}

dd {
	margin: 0 0 0 2rem;
}

/* definition list line style 
 */
.lining dt,
.lining dd {
	display: inline;
	margin: 0;
}

.lining dt+dt:before,
.lining dd+dt:before {
	content: "\a";
	white-space: pre;
}

.lining dd+dd:before {
	content: ", ";
}

.lining dd+dd:before {
	content: ", ";
}

.lining dd:before {
	content: ": ";
	margin-left: -0.2em;
}

/* definition list dictionary style 
 */
.dictionary-style dt {
	display: inline;
	counter-reset: definitions;
}

.dictionary-style dt+dt:before {
	content: ", ";
	margin-left: -0.2em;
}

.dictionary-style dd {
	display: block;
	counter-increment: definitions;
}

.dictionary-style dd:before {
	content: counter(definitions, decimal) ". ";
}

/* ------------------------------------------------------------------- 
 * ## media 
 * ------------------------------------------------------------------- */

/* floated image
 */
img.u-pull-right {
	margin: var(--vspace-0_5) 0 var(--vspace-0_5) var(--vspace-0_875);
}

img.u-pull-left {
	margin: var(--vspace-0_5) var(--vspace-0_875) var(--vspace-0_5) 0;
}

/* responsive video container
 */
.video-container {
	--aspect-ratio: 16/9;
	position: relative;
	height: 0;
	overflow: hidden;
	padding-bottom: calc(100% / (var(--aspect-ratio)));
}

.video-container iframe,
.video-container object,
.video-container embed,
.video-container video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/* --------------------------------------------------------------------
 * ## spacing
 * -------------------------------------------------------------------- */
fieldset,
button,
.btn {
	margin-bottom: var(--vspace-0_5);
}

input,
textarea,
select,
pre,
blockquote,
figure,
figcaption,
table,
p,
ul,
ol,
dl,
form,
img,
.video-container,
.ss-custom-select {
	margin-bottom: var(--vspace-1);
}



/* ===================================================================
 * # PRELOADER
 * 
 * 
 * -------------------------------------------------------------------
 * - markup:
 *
 * <div id="preloader">
 *     <div id="loader" class="dots-fade">
 *         <div></div>
 *         <div></div>
 *         <div></div>
 *     </div>
 * </div>
 *
 * - loader class:
 * <dots-fade | dots-jump | dots-pulse>
 *
 * ------------------------------------------------------------------- */
#preloader {
	position: fixed;
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
	align-items: center;
	background: var(--color-preloader-bg);
	z-index: 500;
	height: 100vh;
	width: 100%;
	opacity: 1;
	overflow: hidden;
}

.no-js #preloader {
	display: none;
}

#loader {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	color: var(--color-white);
	font-family: var(--font-2);
	font-size: calc(var(--text-display-3) * 1.2);
}

.loader-words {
	position: relative;
	height: calc(var(--text-display-3) * 1.2);
	width: 100%;
}

.loader-word {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
	white-space: nowrap;
	/* Prevents text from wrapping to a new line */
	min-width: 500px;
	/* Prevents word wrapping on smaller screens */
	opacity: 0;
	/* All words start hidden */
}

/* --- PRELOADER ANIMATION LOOP --- */
/* This animation will loop until the page is loaded. */

.loader-word {
	animation-name: wordLoop;
	animation-duration: 4.5s;
	/* Total duration of one full loop */
	animation-timing-function: steps(1, end);
	animation-iteration-count: infinite;
}

/* Stagger the start of each word's animation */
.loader-word:nth-child(1) {
	animation-delay: 1.0s;
}

/* Hello */
.loader-word:nth-child(2) {
	animation-delay: 1.5s;
}

/* ഹലോ */
.loader-word:nth-child(3) {
	animation-delay: 2.0s;
}

/* नमस्ते */
.loader-word:nth-child(4) {
	animation-delay: 2.5s;
}

/* Bonjour */
.loader-word:nth-child(5) {
	animation-delay: 3.0s;
}

/* Ciao */
.loader-word:nth-child(6) {
	animation-delay: 3.5s;
}

/* 你好 */

@keyframes wordLoop {
	0% {
		opacity: 1;
	}

	/* Appear */
	11.11% {
		opacity: 1;
	}

	/* Stay visible for 0.5s (0.5 / 4.5) */
	11.12% {
		opacity: 0;
	}

	/* Disappear */
	100% {
		opacity: 0;
	}
}

/* --- FINAL ANIMATION ON PAGE LOAD --- */
/* When .ss-loaded is added, override the loop and show the final word. */

.ss-loaded .loader-word {
	animation: none !important;
	/* Stop the looping animation */
	opacity: 0;
	/* Hide all words by default */
}

.ss-loaded .loader-word:last-child {
	animation: fadeIn 0.2s linear forwards !important;
	/* Fade in the last word and keep it visible */
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

/* ------------------------------------------------------------------- 
 * ## page loaded
 * ------------------------------------------------------------------- */
.ss-loaded #preloader {
	transform: translateY(-100%) skewY(-12deg);
	transform-origin: 0% 100%;
	transition: transform 0.8s cubic-bezier(0.7, 0, 0.3, 1);
}

.ss-loaded #preloader #loader {
	opacity: 0;
	transition: opacity 0.4s ease-in-out;
}

.ss-show .s-intro__content-pretitle,
.ss-show .s-intro__content-title,
.ss-show .s-intro__scroll-down {
	animation: contentSlideIn 0.8s cubic-bezier(0.7, 0, 0.3, 1) 0.4s backwards;
}

@keyframes contentSlideIn {
	from {
		opacity: 0;
		transform: translateY(100px);
	}
}



/* ===================================================================
 * # FORM 
 *
 *
 * ------------------------------------------------------------------- */
fieldset {
	border: none;
	padding: 0;
}

input[type=email],
input[type=number],
input[type=search],
input[type=text],
input[type=tel],
input[type=url],
input[type=password],
textarea,
select {
	--input-height: var(--vspace-2);
	--input-line-height: var(--vspace-1);
	--input-vpadding: calc(((var(--input-height) - var(--input-line-height)) / 2) - 1px);
	display: block;
	height: var(--input-height);
	padding: var(--input-vpadding) calc(2.4rem - 1px);
	border: 0;
	outline: 0;
	color: var(--color-placeholder);
	font-family: var(--font-1);
	font-size: var(--text-sm);
	font-size: calc(var(--text-size) * 0.8889);
	line-height: var(--input-line-height);
	max-width: 100%;
	background-color: var(--color-gray-3);
	border: 1px solid transparent;
	transition: all 0.3s ease-in-out;
	border-radius: var(--border-radius);
}

.ss-custom-select {
	position: relative;
	padding: 0;
}

.ss-custom-select select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	text-indent: 0.01px;
	text-overflow: "";
	margin: 0;
	vertical-align: middle;
}

.ss-custom-select select option {
	padding-left: 2rem;
	padding-right: 2rem;
}

.ss-custom-select select::-ms-expand {
	display: none;
}

.ss-custom-select::after {
	border-bottom: 2px solid rgb(0, 0, 0);
	border-right: 2px solid rgb(0, 0, 0);
	content: "";
	display: block;
	height: 8px;
	width: 8px;
	margin-top: -7px;
	pointer-events: none;
	position: absolute;
	right: 2.4rem;
	top: 50%;
	transition: all 0.15s ease-in-out;
	transform-origin: 66% 66%;
	transform: rotate(45deg);
}

textarea {
	min-height: calc(8 * var(--space));
}

input[type=email]:focus,
input[type=number]:focus,
input[type=search]:focus,
input[type=text]:focus,
input[type=tel]:focus,
input[type=url]:focus,
input[type=password]:focus,
textarea:focus,
select:focus {
	color: var(--color-black);
	background-color: white;
	box-shadow: 0 0 5px var(--color-1);
	border: 1px solid var(--color-1-light);
}

label,
legend {
	font-family: var(--font-1);
	font-weight: 600;
	font-size: var(--text-sm);
	line-height: var(--vspace-0_5);
	margin-bottom: var(--vspace-0_5);
	color: var(--color-text-dark);
	display: block;
}

input[type=checkbox],
input[type=radio] {
	display: inline;
}

label>.label-text {
	display: inline-block;
	margin-left: 1rem;
	font-family: var(--font-1);
	line-height: inherit;
}

label>input[type=checkbox],
label>input[type=radio] {
	margin: 0;
	position: relative;
	top: 2px;
}

/* ------------------------------------------------------------------- 
 * ## style placeholder text
 * ------------------------------------------------------------------- */

::-moz-placeholder {
	/* Mozilla Firefox 19+ */
	color: var(--color-placeholder);
	opacity: 1;
}

:-ms-input-placeholder {
	/* Internet Explorer 10-11 */
	color: var(--color-placeholder);
}

::placeholder {
	/* Most modern browsers support this now. */
	color: var(--color-placeholder);
}

/* ------------------------------------------------------------------- 
 * ## change autocomplete styles in Chrome
 * ------------------------------------------------------------------- */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
	-webkit-text-fill-color: var(--color-1);
	-webkit-transition: background-color 5000s ease-in-out 0s;
	transition: background-color 5000s ease-in-out 0s;
}

/* ===================================================================
 * # BUTTONS
 *
 *
 * ------------------------------------------------------------------- */
.btn,
button,
input[type=submit],
input[type=reset],
input[type=button] {
	--btn-height: var(--vspace-btn);
	display: inline-block;
	font-family: var(--font-1);
	font-weight: 500;
	font-size: calc(var(--text-size) * 0.9);
	height: var(--btn-height);
	line-height: calc(var(--btn-height) - 4px);
	padding: 0 3.6rem;
	margin: 0 0.4rem var(--vspace-0_5) 0;
	color: var(--color-btn-text);
	text-decoration: none;
	text-align: center;
	white-space: nowrap;
	cursor: pointer;
	transition: all 0.3s;
	border-radius: var(--border-radius);
	background-color: var(--color-btn);
	border: 2px solid var(--color-btn);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.btn:focus,
button:focus,
input[type=submit]:focus,
input[type=reset]:focus,
input[type=button]:focus,
.btn:hover,
button:hover,
input[type=submit]:hover,
input[type=reset]:hover,
input[type=button]:hover {
	background-color: var(--color-btn-hover);
	border-color: var(--color-btn-hover);
	color: var(--color-btn-hover-text);
	outline: 0;
}

/* button primary
 */
.btn.btn--primary,
button.btn--primary,
input[type=submit].btn--primary,
input[type=reset].btn--primary,
input[type=button].btn--primary {
	background: var(--color-btn-primary);
	border-color: var(--color-btn-primary);
	color: var(--color-btn-primary-text);
}

.btn.btn--primary:focus,
button.btn--primary:focus,
input[type=submit].btn--primary:focus,
input[type=reset].btn--primary:focus,
input[type=button].btn--primary:focus,
.btn.btn--primary:hover,
button.btn--primary:hover,
input[type=submit].btn--primary:hover,
input[type=reset].btn--primary:hover,
input[type=button].btn--primary:hover {
	background: var(--color-btn-primary-hover);
	border-color: var(--color-btn-primary-hover);
	color: var(--color-btn-primary-hover-text);
}

/* button modifiers
 */
.btn.u-fullwidth,
button.u-fullwidth {
	width: 100%;
	margin-right: 0;
}

.btn--small,
button.btn--small {
	--btn-height: calc(var(--vspace-btn) - 1.6rem);
}

.btn--medium,
button.btn--medium {
	--btn-height: calc(var(--vspace-btn) + .8rem);
}

.btn--large,
button.btn--large {
	--btn-height: calc(var(--vspace-btn) + 1.6rem);
}

.btn--stroke,
button.btn--stroke {
	background: transparent !important;
	border: 2px solid var(--color-btn-stroke);
	color: var(--color-btn-stroke-text);
}

.btn--stroke:focus,
button.btn--stroke:focus,
.btn--stroke:hover,
button.btn--stroke:hover {
	background: var(--color-btn-stroke-hover) !important;
	border: 2px solid var(--color-btn-stroke-hover);
	color: var(--color-btn-stroke-hover-text);
}

.btn--pill,
button.btn--pill {
	padding-left: 3.2rem !important;
	padding-right: 3.2rem !important;
	border-radius: 1000px !important;
}


/* ===================================================================
 * # TABLE
 *
 *
 * ------------------------------------------------------------------- */
table {
	border-width: 0;
	width: 100%;
	max-width: 100%;
	font-family: var(--font-1);
	border-collapse: collapse;
}

th,
td {
	padding: var(--vspace-0_5) 3.2rem calc(var(--vspace-0_5) - 1px);
	text-align: left;
	border-bottom: 1px solid var(--color-border);
}

th {
	padding: var(--vspace-0_5) 3.2rem;
	color: var(--color-text-dark);
	font-family: var(--font-1);
	font-weight: 600;
}

th:first-child,
td:first-child {
	padding-left: 0;
}

th:last-child,
td:last-child {
	padding-right: 0;
}

.table-responsive {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}



/* ===================================================================
 * # COMPONENTS
 *
 *
 * ------------------------------------------------------------------- */

/* -------------------------------------------------------------------
 * ## pagination 
 * ------------------------------------------------------------------- */
.pgn {
	--pgn-num-height: calc(var(--vspace-1) + .4rem);
	margin: 0 auto var(--vspace-1);
	text-align: center;
}

.pgn ul {
	display: inline-flex;
	flex-flow: row wrap;
	justify-content: center;
	list-style: none;
	margin-left: 0;
	position: relative;
	padding: 0 6rem;
}

.pgn ul li {
	margin: 0;
	padding: 0;
}

.pgn__num {
	font-family: var(--font-1);
	font-weight: 600;
	font-size: var(--text-size);
	line-height: var(--vspace-1);
	display: block;
	padding: 0.2rem 1.2rem;
	height: var(--pgn-num-height);
	margin: 0.2rem 0.2rem;
	color: var(--color-text-dark);
	border-radius: var(--border-radius);
	transition: all, 0.3s, ease-in-out;
}

.pgn__num:focus,
.pgn__num:hover {
	background: var(--color-text-dark);
	color: var(--color-white);
}

.pgn .current,
.pgn .current:focus,
.pgn .current:hover {
	background: var(--color-text-dark);
	color: var(--color-white);
}

.pgn .inactive,
.pgn .inactive:focus,
.pgn .inactive:hover {
	opacity: 0.4;
	cursor: default;
}

.pgn__prev,
.pgn__next {
	display: inline-flex;
	flex-flow: row wrap;
	justify-content: center;
	align-items: center;
	height: var(--pgn-num-height);
	width: 4.8rem;
	line-height: var(--vspace-1);
	border-radius: 4px;
	padding: 0;
	margin: 0;
	opacity: 1;
	font: 0/0 a;
	text-shadow: none;
	color: transparent;
	transition: all, 0.3s, ease-in-out;
	position: absolute;
	top: 50%;
	transform: translate(0, -50%);
}

.pgn__prev:focus,
.pgn__prev:hover,
.pgn__next:focus,
.pgn__next:hover {
	background: var(--color-text-dark);
}

.pgn__prev svg,
.pgn__next svg {
	height: 2.4rem;
	width: 2.4rem;
	transition: all, 0.3s, ease-in-out;
}

.pgn__prev svg path,
.pgn__next svg path {
	fill: var(--color-text-dark);
}

.pgn__prev:focus svg path,
.pgn__prev:hover svg path,
.pgn__next:focus svg path,
.pgn__next:hover svg path {
	fill: white;
}

.pgn__prev {
	left: 0;
}

.pgn__next {
	right: 0;
}

.pgn__prev.inactive,
.pgn__next.inactive {
	opacity: 0.4;
	cursor: default;
}

.pgn__prev.inactive:focus,
.pgn__prev.inactive:hover,
.pgn__next.inactive:focus,
.pgn__next.inactive:hover {
	background-color: transparent;
}

/* ------------------------------------------------------------------- 
 * responsive:
 * pagination
 * ------------------------------------------------------------------- */
@media screen and (max-width: 600px) {
	.pgn ul {
		padding: 0 5.2rem;
	}
}

/* ------------------------------------------------------------------- 
 * ## alert box 
 * ------------------------------------------------------------------- */
.alert-box {
	padding: var(--vspace-0_75) 4rem var(--vspace-0_75) 3.2rem;
	margin-bottom: var(--vspace-1);
	border-radius: var(--border-radius);
	font-family: var(--font-1);
	font-weight: 500;
	font-size: var(--text-sm);
	line-height: var(--vspace-0_75);
	opacity: 1;
	visibility: visible;
	position: relative;
}

.alert-box__close {
	position: absolute;
	display: block;
	right: 1.6rem;
	top: 1.6rem;
	cursor: pointer;
	width: 12px;
	height: 12px;
}

.alert-box__close::before,
.alert-box__close::after {
	content: "";
	display: inline-block;
	width: 1px;
	height: 12px;
	position: absolute;
	top: 0;
	left: 5px;
}

.alert-box__close::before {
	transform: rotate(45deg);
}

.alert-box__close::after {
	transform: rotate(-45deg);
}

.alert-box--error {
	background-color: var(--color-error);
	color: var(--color-error-content);
}

.alert-box--error .alert-box__close::before,
.alert-box--error .alert-box__close::after {
	background-color: var(--color-error-content);
}

.alert-box--success {
	background-color: var(--color-success);
	color: var(--color-success-content);
}

.alert-box--success .alert-box__close::before,
.alert-box--success .alert-box__close::after {
	background-color: var(--color-success-content);
}

.alert-box--info {
	background-color: var(--color-info);
	color: var(--color-info-content);
}

.alert-box--info .alert-box__close::before,
.alert-box--info .alert-box__close::after {
	background-color: var(--color-info-content);
}

.alert-box--notice {
	background-color: var(--color-notice);
	color: var(--color-notice-content);
}

.alert-box--notice .alert-box__close::before,
.alert-box--notice .alert-box__close::after {
	background-color: var(--color-notice-content);
}

.alert-box.hideit {
	opacity: 0;
	visibility: hidden;
	transition: all 0.5s;
}

/* ------------------------------------------------------------------- 
 * ## skillbars
 * ------------------------------------------------------------------- */
.skill-bars {
	list-style: none;
	margin: var(--vspace-2) 0 var(--vspace-1);
}

.skill-bars li {
	height: 0.4rem;
	background: var(--color-gray-5);
	width: 100%;
	margin-bottom: calc(var(--vspace-2) - 0.4rem);
	padding: 0;
	position: relative;
}

.skill-bars li strong {
	position: absolute;
	left: 0;
	top: calc(var(--vspace-1) * 1.25 * -1);
	font-family: var(--font-1);
	font-weight: 600;
	color: var(--color-text);
	text-transform: uppercase;
	letter-spacing: 0.2em;
	font-size: var(--text-xs);
	line-height: var(--vspace-0_75);
}

.skill-bars li .progress {
	background: var(--color-text);
	position: relative;
	height: 100%;
}

.skill-bars li .progress span {
	display: block;
	font-family: var(--font-1);
	color: white;
	font-size: 1rem;
	line-height: 1;
	background: var(--color-text);
	padding: var(--vspace-0_25);
	border-radius: 4px;
	position: absolute;
	right: 0;
	top: calc((var(--vspace-1) + 0.8rem) * -1);
}

.skill-bars li .progress span::after {
	position: absolute;
	left: 50%;
	bottom: -10px;
	margin-left: -5px;
	width: 0;
	height: 0;
	border: 5px solid transparent;
	border-top-color: var(--color-text, var(--color-black));
	content: "";
}

.skill-bars li .percent5 {
	width: 5%;
}

.skill-bars li .percent10 {
	width: 10%;
}

.skill-bars li .percent15 {
	width: 15%;
}

.skill-bars li .percent20 {
	width: 20%;
}

.skill-bars li .percent25 {
	width: 25%;
}

.skill-bars li .percent30 {
	width: 30%;
}

.skill-bars li .percent35 {
	width: 35%;
}

.skill-bars li .percent40 {
	width: 40%;
}

.skill-bars li .percent45 {
	width: 45%;
}

.skill-bars li .percent50 {
	width: 50%;
}

.skill-bars li .percent55 {
	width: 55%;
}

.skill-bars li .percent60 {
	width: 60%;
}

.skill-bars li .percent65 {
	width: 65%;
}

.skill-bars li .percent70 {
	width: 70%;
}

.skill-bars li .percent75 {
	width: 75%;
}

.skill-bars li .percent80 {
	width: 80%;
}

.skill-bars li .percent85 {
	width: 85%;
}

.skill-bars li .percent90 {
	width: 90%;
}

.skill-bars li .percent95 {
	width: 95%;
}

.skill-bars li .percent100 {
	width: 100%;
}

/* --------------------------------------------------------------------
 * ## stats tabs
 * -------------------------------------------------------------------- */
.stats-tabs {
	padding: 0;
	margin: var(--vspace-1) 0;
}

.stats-tabs li {
	display: inline-block;
	margin: 0 1.6rem var(--vspace-0_5) 0;
	padding: 0 1.5rem 0 0;
	border-right: 1px solid var(--color-border);
}

.stats-tabs li:last-child {
	margin: 0;
	padding: 0;
	border: none;
}

.stats-tabs li a {
	display: block;
	font-family: var(--font-1);
	font-size: var(--text-lg);
	font-weight: 600;
	line-height: var(--vspace-1_5);
	border: none;
	color: var(--color-text-dark);
}

.stats-tabs li a:hover {
	color: var(--color-1);
}

.stats-tabs li a em {
	display: block;
	margin: 0;
	font-family: var(--font-1);
	font-size: var(--text-sm);
	line-height: var(--vspace-0_5);
	font-weight: 400;
	font-style: normal;
	color: var(--color-text-light);
}



/* ===================================================================
 * # PROJECT-WIDE SHARED STYLES
 *
 *
 * ------------------------------------------------------------------- */
.width-sixteen-col {
	--width-grid-max: var(--width-sixteen-cols);
}

.width-narrower {
	--width-grid-max: var(--width-narrower);
}

.text-body-sm {
	font-size: calc(var(--text-size) * 0.95);
	line-height: calc(0.9375 * var(--space));
}

.text-pretitle {
	font-family: var(--font-1);
	font-size: var(--text-md);
	line-height: var(--vspace-1);
	color: var(--color-1);
	transform: translate(0.2em, 0);
	margin-top: 0;
}

.text-display-title {
	font-size: var(--text-display-2);
	line-height: 1.0606;
	letter-spacing: -0.012em;
	color: var(--color-text-dark);
	margin-top: 0;
	margin-bottom: var(--vspace-1_5);
}

/* ------------------------------------------------------------------- 
 * ## list items
 * ------------------------------------------------------------------- */
.list-items.show-ctr {
	counter-reset: ctr;
}

.show-ctr .list-items__item-header {
	display: flex;
	margin-bottom: var(--vspace-0_75);
	align-items: baseline;
}

.show-ctr .list-items__item-header .list-items__item-title,
.show-ctr .list-items__item-header .list-items__item-small-title {
	margin: 0;
}

.show-ctr .list-items__item-header::before {
	content: counter(ctr, decimal-leading-zero) ".";
	counter-increment: ctr;
	display: block;
	font-family: var(--font-1);
	font-weight: 500;
	font-size: 1.1em;
	line-height: 1;
	color: var(--color-1);
	margin-right: var(--vspace-0_25);
	margin-bottom: var(--vspace-0_25);
}

.list-items__item.u-remove-bottom {
	margin-bottom: 0;
}

.list-items__item-title,
.list-items__item-small-title {
	color: var(--color-text-dark);
	margin-top: 0;
}

.list-items__item-icon {
	display: inline-block;
	margin-bottom: var(--vspace-0_5);
	display: flex;
	justify-content: center;
	align-items: center;
	height: var(--vspace-2);
	width: var(--vspace-2);
	border-radius: 50%;
	background-color: var(--color-3);
	box-shadow: 0 1px 1px rgba(0, 0, 0, 0.03), 0 2px 2px rgba(0, 0, 0, 0.03), 0 4px 4px rgba(0, 0, 0, 0.03);
}

.list-items__item-icon svg {
	height: var(--vspace-1);
	width: var(--vspace-1);
}

.list-items__item-icon svg path {
	fill: var(--color-1);
}

/* ------------------------------------------------------------------- 
 * ## social list
 * ------------------------------------------------------------------- */
.social-list {
	display: flex;
	align-items: center;
	list-style: none;
	margin: 0;
}

.social-list li {
	padding-left: 0;
	margin-right: 1.2rem;
}

.social-list li:last-child {
	margin-right: 0;
}

.social-list a {
	display: flex;
	align-items: center;
}

.social-list a:focus svg path,
.social-list a:hover svg path {
	fill: var(--color-3);
}

.social-list svg {
	height: var(--vspace-1);
	width: var(--vspace-1);
}

.social-list svg path,
.social-list svg circle {
	fill: rgba(255, 255, 255, 0.5);
	transition: all 0.5s;
}

/* ------------------------------------------------------------------- 
 * ## blog card
 * ------------------------------------------------------------------- */
.blog-card__header {
	margin-bottom: var(--vspace-0_75);
}

.blog-card__cat-links {
	font-size: var(--text-sm);
}

.blog-card__cat-links a {
	color: var(--color-1);
}

.blog-card__title {
	margin: 0;
	line-height: 1.1574;
}

.blog-card__title a {
	color: var(--color-text-dark);
}

/* --------------------------------------------------------------------
 * ## testimonials
 * -------------------------------------------------------------------- */
.s-testimonials {
	padding-top: var(--vspace-4);
	padding-bottom: var(--vspace-3);
	background-color: var(--color-3);
}

.s-testimonials__header {
	margin-bottom: var(--vspace-1);
}

.s-testimonials__header .text-pretitle {
	margin-bottom: var(--vspace-0_125);
}

.s-testimonials__header h3 {
	margin-top: 0;
}

.s-testimonials .testimonials {
	margin: 0;
}

.testimonials {
	margin-top: var(--vspace-3);
	position: relative;
}

.testimonials__slider {
	padding-bottom: var(--vspace-2_5);
}

.testimonials__author {
	display: inline-block;
	min-height: var(--vspace-2);
	margin-bottom: var(--vspace-0_625);
	padding-left: calc(2.25 * var(--space));
	position: relative;
}

.testimonials__avatar {
	width: var(--vspace-1_75);
	height: var(--vspace-1_75);
	border-radius: 100%;
	outline: none;
	position: absolute;
	top: 0;
	left: 0;
}

.testimonials__cite {
	display: block;
}

.testimonials__cite strong,
.testimonials__cite span {
	font-style: normal;
	transition: all 0.3s ease-in-out;
}

.testimonials__cite strong {
	font-size: calc(var(--text-size) * 0.9);
	font-weight: 500;
	line-height: var(--vspace-0_75);
	color: var(--color-text-dark);
}

.testimonials__cite span {
	display: block;
	font-size: var(--text-xs);
	font-weight: 400;
	line-height: var(--vspace-0_5);
	color: var(--color-text-light);
}

/* ------------------------------------------------------------------- 
 * ## swiper overrides
 * ------------------------------------------------------------------- */
.swiper-container .swiper-pagination-bullets .swiper-pagination-bullet {
	margin: 0 1.2rem;
}

.swiper-container .swiper-pagination-bullet {
	width: 8px;
	height: 8px;
	background: var(--color-gray-12);
	opacity: 1;
}

.swiper-container .swiper-pagination-bullet-active {
	background: var(--color-gray-19);
	opacity: 1;
}

.swiper-container .swiper-pagination-bullet:only-child {
	visibility: hidden;
}

/* ------------------------------------------------------------------- 
 * responsive:
 * project-wide and shared styles
 * ------------------------------------------------------------------- */
@media screen and (max-width: 1200px) {
	.text-display-title {
		font-size: clamp(4rem, 8vw, var(--text-display-2));
	}
}

@media screen and (max-width: 800px) {
	.testimonials__slide {
		text-align: center;
	}

	.testimonials__cite {
		text-align: left;
	}
}

@media screen and (max-width: 500px) {
	.text-pretitle {
		font-size: var(--text-size);
		line-height: var(--vspace-0_75);
	}

	.show-ctr .list-items__item-header::before {
		font-size: 0.9em;
		margin-right: var(--vspace-0_125);
	}
}



/* ===================================================================
 * # GRID-BASED LAYOUTS
 *
 *
 * ------------------------------------------------------------------- */

/* --------------------------------------------------------------------
 * ## grid block
 * -------------------------------------------------------------------- */
.grid-block {
	--col: 12;
	--grid-gap-h: calc(var(--gutter) * 2);
	--grid-gap-v: var(--vspace-1);
	display: grid;
	grid-template-columns: repeat(var(--col), [col] 1fr);
	-moz-column-gap: var(--grid-gap-h);
	column-gap: var(--grid-gap-h);
	row-gap: var(--grid-gap-v);
}

.grid-block.no-h-gutter {
	--grid-gap-h: 0;
}

.grid-block.no-v-gutter {
	--grid-gap-h: 0;
}

.grid-block .grid-full {
	grid-column: 1/-1;
}

.grid-section-split {
	--col: 16;
	grid-template-rows: auto 1fr;
}

.grid-section-split__header {
	grid-column: 1/span 6;
	grid-row: 1/2;
	align-self: start;
}

.grid-section-split__header>* {
	width: min(55rem, 95%);
}

.grid-section-split__primary {
	grid-column: 9/span 8;
	grid-row: 1/3;
	margin-top: var(--vspace-1);
}

.grid-section-split__bottom {
	grid-column: 1/span 4;
	grid-row: 2;
}

/* ------------------------------------------------------------------- 
 * ## list grid
 * ------------------------------------------------------------------- */
.grid-list-items {
	--gap: calc(var(--gutter) * 2);
	--min-width: 360px;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(var(--min-width), 100%), 1fr));
	-moz-column-gap: var(--gap);
	column-gap: var(--gap);
}

.grid-list-items__item {
	margin-bottom: var(--vspace-0_5);
}

/* ------------------------------------------------------------------- 
 * responsive:
 * grid layouts
 * ------------------------------------------------------------------- */
@media screen and (max-width: 1600px) {
	.grid-section-split__header {
		grid-column: 1/span 8;
	}

	.grid-section-split__primary {
		grid-column: 9/span 8;
	}

	.grid-section-split__bottom {
		grid-column: 1/span 4;
	}
}

@media screen and (max-width: 1200px) {
	.grid-section-split__header {
		grid-column: 1/-1;
	}

	.grid-section-split__header>* {
		width: auto;
	}

	.grid-section-split__primary {
		grid-column: 1/-1;
		grid-row: auto;
		margin-top: 0;
	}

	.grid-section-split__bottom {
		grid-column: 1/-1;
		grid-row: auto;
	}
}

@media screen and (max-width: 800px) {
	.grid-block {
		--col: 8;
	}
}

@media screen and (max-width: 600px) {
	.grid-block {
		--col: 4;
	}
}



/* ===================================================================
 * # PAGE WRAP
 *
 *
 * ------------------------------------------------------------------- */
.s-pagewrap {
	display: flex;
	flex-direction: column;
	min-height: 100%;
	position: relative;
}


/* ===================================================================
 * # SITE HEADER
 *
 *
 * ------------------------------------------------------------------- */
.s-header {
	z-index: 1000;
	position: fixed;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	max-width: 100vw;
	padding: 2.5rem 5%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: rgba(20, 20, 20, 0);
	border-radius: 0px;
	transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

/* --------------------------------------------------------------------
 * ## logo
 * -------------------------------------------------------------------- */
.s-header__logo {
	z-index: 3;
	line-height: 1;
	display: flex;
	align-items: center;
}

.s-header__logo a.logo {
	display: block;
	margin: 0;
	padding: 0;
	outline: 0;
	border: none;
}

.s-header__logo img {
	width: 135px;
	margin: 0;
	vertical-align: bottom;
	transition: width 0.4s cubic-bezier(0.25, 1, 0.5, 1), transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* --------------------------------------------------------------------
 * ## main navigation
 * -------------------------------------------------------------------- */
.s-header__nav {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 2.5rem;
	align-items: center;
}

.s-header__menu-links {
	list-style: none;
	display: flex;
	gap: 2.5rem;
	margin: 0;
	padding: 0;
}

.s-header__menu-links li {
	padding-left: 0;
	margin: 0;
}

.s-header__menu-links a {
	display: block;
	font-family: var(--font-1);
	/* Use base sans-serif */
	font-weight: 400;
	font-size: 1.6rem;
	line-height: var(--vspace-1);
	color: #FFFFFF;
	position: relative;
	text-decoration: none;
	transition: color 0.3s ease, font-size 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Underline Hover Animation */
.s-header__menu-links a::after {
	content: '';
	position: absolute;
	bottom: -1px;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: #FFFFFF;
	transform: scaleX(0);
	transform-origin: right center;
	transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.s-header__menu-links a:hover::after,
.s-header__menu-links .current a::after {
	transform: scaleX(1);
	transform-origin: left center;
}

.s-header__menu-links a:focus,
.s-header__menu-links a:hover {
	color: var(--color-3);
}

/* --------------------------------------------------------------------
 * ## CTA button
 * -------------------------------------------------------------------- */
.s-header__contact {
	display: flex;
	align-items: center;
}

/* From Uiverse.io by Creatlydev - Adapted */
.button {
	line-height: 1;
	text-decoration: none;
	display: inline-flex;
	border: none;
	cursor: pointer;
	align-items: center;
	gap: 1rem;
	background-color: var(--clr);
	color: #0E1013;
	border-radius: 10rem;
	font-weight: 600;
	padding: 0.75rem 1.5rem;
	padding-left: 8px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	transition: background-color 0.3s;
	font-family: var(--font-1), sans-serif;
	font-size: 1.5rem;
}

.button__icon-wrapper {
	flex-shrink: 0;
	width: 25px;
	height: 25px;
	position: relative;
	color: var(--clr);
	background-color: #0E1013;
	border-radius: 50%;
	display: grid;
	place-items: center;
	overflow: hidden;
}

.button:hover {
	background-color: #0E1013;
	color: var(--clr);
}

.button:hover .button__icon-wrapper {
	color: #0E1013;
	background-color: var(--clr);
}

.button__icon-svg--copy {
	position: absolute;
	transform: translate(-150%, 150%);
}

.button:hover .button__icon-svg:first-child {
	transition: transform 0.3s ease-in-out;
	transform: translate(150%, -150%);
}

.button:hover .button__icon-svg--copy {
	transition: transform 0.3s ease-in-out 0.1s;
	transform: translate(0);
}

/* --------------------------------------------------------------------
 * ## Scrolled / Sticky State
 * -------------------------------------------------------------------- */
.s-header.scrolled {
	top: 20px;
	width: 90%;
	max-width: 1100px;
	padding: 1rem 2rem;
	background: rgba(33, 35, 38, 0.4);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	left: 50%;
	transform: translateX(-50%);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Shrink items slightly when sticky */
.s-header.scrolled .s-header__logo img {
	width: 100px;
	transform: translateY(4px);
}

.s-header.scrolled .s-header__menu-links a {
	font-size: 1.5rem;
}

/* --------------------------------------------------------------------
 * ## mobile menu toggle
 * -------------------------------------------------------------------- */
.s-header__menu-toggle {
	--toggle-block-width: 44px;
	--toggle-line-width: 28px;
	--toggle-line-height: 2px;
	display: none;
	width: var(--toggle-block-width);
	height: var(--toggle-block-width);
	position: absolute;
	right: calc(var(--gutter) * 2);
	top: 50%;
	transform: translateY(-50%);
}

.s-header__menu-toggle span {
	display: block;
	background-color: var(--color-3);
	width: var(--toggle-line-width);
	height: var(--toggle-line-height);
	margin-top: -1px;
	font: 0/0 a;
	text-shadow: none;
	color: transparent;
	transition: all 0.5s;
	position: absolute;
	right: calc((var(--toggle-block-width) - var(--toggle-line-width)) / 2);
	top: 50%;
}

.s-header__menu-toggle span::before,
.s-header__menu-toggle span::after {
	content: "";
	width: 100%;
	height: 100%;
	background-color: inherit;
	transition: all 0.5s;
	position: absolute;
	left: 0;
}

.s-header__menu-toggle span::before {
	top: -10px;
}

.s-header__menu-toggle span::after {
	bottom: -10px;
}

/* is clicked */
.s-header__menu-toggle.is-clicked span {
	background-color: rgba(255, 255, 255, 0);
	transition: all 0.1s;
}

.s-header__menu-toggle.is-clicked span::before,
.s-header__menu-toggle.is-clicked span::after {
	background-color: var(--color-3);
}

.s-header__menu-toggle.is-clicked span::before {
	top: 0;
	transform: rotate(135deg);
}

.s-header__menu-toggle.is-clicked span::after {
	bottom: 0;
	transform: rotate(225deg);
}

/* ------------------------------------------------------------------- 
 * responsive: site-header
 * ------------------------------------------------------------------- */
@media screen and (max-width: 1024px) {
	.s-header {
		padding: 1.5rem 5%;
	}

	.s-header.scrolled {
		width: 95%;
	}

	.s-header__menu-links,
	.s-header__nav {
		gap: 1.5rem;
	}
}

@media screen and (max-width: 900px) {

	/* Mobile Menu Logic overrides */
	.s-header__nav {
		display: none;
	}

	.s-header__menu-toggle {
		display: none !important;
	}

	.s-header__contact {
		margin: 0;
		margin-left: auto;
	}

	.s-header.scrolled {
		border-radius: 30px;
	}
}

@media screen and (max-width: 600px) {
	.s-header__logo img {
		width: 100px;
	}
}

/* ===================================================================
 * # PAGEHEADER & PAGECONTENT
 *
 *
 * ------------------------------------------------------------------- */
.s-pageheader {
	padding-top: var(--vspace-6);
	padding-bottom: var(--vspace-3);
	background-color: var(--color-2-dark);
	text-align: center;
}

.s-pageheader .page-title {
	margin-top: 0;
	font-size: clamp(5.2rem, 10vw, var(--text-huge-1));
	line-height: 1.0465;
	color: var(--color-3);
}

.s-pageheader .page-title__small-type {
	display: block;
	margin-bottom: 0;
}

.s-pagecontent {
	padding-top: var(--vspace-4);
	padding-bottom: var(--vspace-3);
}

.s-pagecontent .pageintro {
	margin-bottom: var(--vspace-2_5);
}

.s-pagecontent .pageintro h1,
.s-pagecontent .pageintro h2 {
	margin-top: 0;
	margin-bottom: var(--vspace-1_5);
}

.s-pagecontent .pagination {
	margin-top: var(--vspace-2);
}

/* ------------------------------------------------------------------- 
 * responsive:
 * pageheader & pagecontent
 * ------------------------------------------------------------------- */
@media screen and (max-width: 1200px) {

	.s-pagecontent .pageintro h1,
	.s-pagecontent .pageintro h2 {
		text-align: center;
	}
}

@media screen and (max-width: 800px) {
	.s-pageheader {
		padding-top: var(--vspace-5);
		padding-bottom: var(--vspace-2);
	}

	.s-pagecontent .pageintro {
		margin-bottom: var(--vspace-1_5);
	}
}

@media screen and (max-width: 600px) {
	.s-pagecontent {
		padding-top: var(--vspace-3);
	}
}



/* ===================================================================
 * # INTRO
 *
 *
 * ------------------------------------------------------------------- */
.hero-container {
	width: 100%;
	/* Changed from 100vw */
	min-height: 100svh;
	position: relative;
	overflow: visible;
	background-color: #0D0D12;
}

.aurora-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: calc(100% + 250px);
	display: flex;
	justify-content: center;
	align-items: center;
	filter: blur(150px);
}

.blob-1 {
	position: absolute;
	width: 45vw;
	height: 45vh;
	background: rgba(64, 180, 172, 0.45);
	top: 25%;
	left: 35%;
	border-radius: 50%;
	animation: float 10s infinite ease-in-out alternate;
}

.blob-2 {
	position: absolute;
	width: 55vw;
	height: 55vh;
	background: rgba(123, 77, 212, 0.35);
	top: 35%;
	left: 20%;
	border-radius: 50%;
	animation: float 10s infinite ease-in-out alternate-reverse;
	animation-delay: -5s;
}

.blob-3 {
	position: absolute;
	width: 35vw;
	height: 35vh;
	background: rgba(245, 240, 230, 0.25);
	top: 30%;
	left: 45%;
	border-radius: 50%;
	animation: float 10s infinite ease-in-out alternate;
	animation-delay: -2s;
}

@keyframes float {
	0% {
		transform: translate(0, 0) scale(1) rotate(0deg);
	}

	33% {
		transform: translate(5%, -5%) scale(1.05) rotate(5deg);
	}

	66% {
		transform: translate(-5%, 5%) scale(0.95) rotate(-5deg);
	}

	100% {
		transform: translate(2%, -2%) scale(1.1) rotate(2deg);
	}
}

.noise-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: calc(100% + 250px);
	pointer-events: none;
	z-index: 10;
	background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyBAMAAADsEZWCAAAAGFBMVEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/H0ZkAAAACHRSTlMAAAAAAAAANwI3LxsAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAEKSURBVDiNnVU7E8IwDBzI0A0nI2/YQIdXyBtwvA7Bv89pXkUu2E21l16Szx+LsmxV0999K5yB5q9P+yQ5L7wK5N+h7wTf8kfwC+2t9T1+Jz9y7J8tB/c9H60Z47U0+H/l2bIeH1tH3tN/fLw/G/Ie9y99H+X5T15v7V3//1M67/n2U6/Y9H7x/mP4N7F/2K9n7H9R+b/j/eP3d/v2V/P/Ffd9f939k5/791H/z/mPrw95vx97vv7y/l+9/91+j/vY4/1/sN/b+P9Tz/d6eK+t37574HtfH/l+3Nfl/P9xHnvfn//v8P7r7R/n+R3H+P83z/u/H/I7rnv/z+/3u/8D5D5//v30+1f3H9zntXz8fzH//X/l73e8N8t7f/P3j7j/X0v59w/5P/l4j/I+7717/H/y/I+z+Z4f3/L8/w9u7/n9f8j7A1L1P2Gq/3HjAAAAAElFTkSuQmCC");
	background-repeat: repeat;
	opacity: 0.04;
	transform: translate3d(0, 0, 0);
	will-change: transform;
}

@supports (-webkit-touch-callout: none) {
	.noise-overlay {
		/* Provide an even lighter visual noise treatment for iOS WebKit */
		opacity: 0.02;
	}
}

/* Layer 2 - Macro Typography & Spatial Grid Lockup */
.contrast-mask {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: calc(100% + 250px);
	z-index: 5;
	pointer-events: none;
	background: radial-gradient(circle at center, rgba(13, 13, 17, 0.35) 0%, transparent 70%);
}

.content-layer {
	position: absolute;
	inset: 0;
	z-index: 10;
	display: flex;
	align-items: center;
	/* Centers the whole block vertically */
	justify-content: center;
	/* Centers the whole block horizontally */
	width: 100%;
	padding: 0 5%;
	/* Gives some breathing room on mobile */
}

.hero-title {
	display: flex;
	flex-direction: column;
	width: 100%;
	max-width: 100%;
	font-family: 'Inter', 'SF Pro Display', Helvetica, sans-serif;
	font-size: clamp(5rem, 14vw, 16rem);
	font-weight: 500;
	text-transform: uppercase;
	line-height: 1.08;
	letter-spacing: -0.04em;
	transform: translateY(-4vh);
}

/* The Spatial Coordinates */
.word-1 {
	align-self: flex-start;
	margin-left: 22vw;
}

.word-2 {
	align-self: flex-end;
	margin-right: 12vw;
}

.word-3 {
	align-self: flex-start;
	margin-left: 26vw;
}

/* Animated Reveal Mask */
.overflow-hidden {
	overflow: hidden;
}

.word-inner {
	transform: translateY(110%);
	will-change: transform;
}

.hero-title .word-inner {
	background: linear-gradient(180deg, #f3ecda 30%, #cddce6 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	color: transparent;
}

.ss-show .word-inner {
	transform: translateY(0%);
	transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.ss-show .word-1 .word-inner {
	transition-delay: 0s;
}

.ss-show .word-2 .word-inner {
	transition-delay: 0.04s;
}

.ss-show .word-3 .word-inner {
	transition-delay: 0.08s;
}

.ss-show .asterisk-icon .word-inner {
	transition-delay: 0.12s;
}

.ss-show .hero-subtext .word-inner {
	transition-delay: 0.16s;
}

/* Base utility classes for alignment if not provided by framework */
.block {
	display: block;
}

.flex {
	display: flex;
}

.items-center {
	align-items: center;
}

/* Elevated Button */
.btn-elevated-arrow {
	width: 140px;
	height: 140px;
	border-radius: 50%;
	border: 1px solid #F3ECDA;
	background: transparent;
	color: #F3ECDA;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	padding: 0;
	margin: 0;
	-webkit-background-clip: initial;
	-webkit-text-fill-color: initial;
	background-clip: initial;
	outline: none;
	margin-left: 2vw;
}

.elevated-arrow-svg {
	width: 50%;
	height: 50%;
	transform: rotate(-45deg);
	transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.btn-elevated-arrow:hover .elevated-arrow-svg {
	transform: rotate(0deg);
}

/* Layer 3 - Accents & Micro-copy */
.asterisk-icon {
	position: absolute;
	top: 22vh;
	left: 18vw;
	width: 8vw;
	min-width: 80px;
	z-index: 15;
	opacity: 0.9;
}

.hero-subtext {
	position: absolute;
	top: 42vh;
	left: 17vw;
	font-size: clamp(1.2rem, 1.3vw, 2.2rem);
	font-weight: 500;
	max-width: 380px;
	font-family: 'Inter', sans-serif;
	color: #CDDCE6;
	line-height: 1.5;
	letter-spacing: -0.01em;
	z-index: 15;
	opacity: 0.85;
	text-align: left;
	text-indent: 90px;
	/* Adjust this number to push the first word further right */
}

.bottom-anchors {
	position: absolute;
	bottom: 10vh;
	left: 5vw;
	right: 5vw;
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	z-index: 15;
	font-family: 'Inter', sans-serif;
	font-size: clamp(1rem, 1.3vw, 3rem);
	font-weight: 500;
	color: #F3ECDA;
}

.anchor-left {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 1.5rem;
}


.discover-text {
	text-decoration: underline;
	text-underline-offset: 6px;
	text-decoration-thickness: 1px;
	padding-bottom: 4px;
	font-size: 2.5rem;
	/* Try 1.5rem, or use clamp() like your other text! */

	/* --- NEW: Move it around --- */
	position: absolute;
	bottom: 0vh;
	/* Pushes it up from the bottom edge */
	left: -0.65vw;
	/* Pushes it right from the left edge */
	z-index: 15;
	/* Keeps it above the background */
	font-weight: 400;
}

/* ------------------------------------------------------------------- 
 * Section Backgrounds:
 * ------------------------------------------------------------------- */
.hero-container~section:not(.s-about):not(.s-clients),
.hero-container~footer,
.s-expertise,
.s-services,
.s-journal,
.s-cta {
	background-color: #0D0D12;
	/* Default dark background */
}

/* ------------------------------------------------------------------- 
 * Section Text Colors (About and below):
 * ------------------------------------------------------------------- */
.hero-container~section,
.hero-container~footer {
	color: #F3ECDA;
	--color-text: #F3ECDA;
	--color-text-dark: #F3ECDA;
	--color-text-light: #F3ECDA;
	--color-3: #F3ECDA;
}

/* Re-apply specific background for journal if needed, cascading handles it usually if specific class is later, 
   but ensuring base opacity is key. */

/* --------------------------------------------------------------------
 * ## intro content
 * -------------------------------------------------------------------- */
.s-intro__content {
	z-index: 2;
	align-items: center;
	height: 100%;
	color: var(--color-3);
	padding-top: var(--content-padding-top);
	padding-bottom: var(--content-padding-bottom);
	position: relative;
}

.s-intro__content-inner {
	--col: 16;
	--grid-gap-v: var(--vspace-0_5);
}

.s-intro__content-text {
	z-index: 2;
	grid-column: 1/span 11;
	margin-top: var(--vspace-1);
}

.s-intro__content-pretitle {
	margin-bottom: var(--vspace-0_125);
	padding-left: 10rem;
	color: var(--color-3);
	transform: translate(-9.6rem, 0);
	position: relative;
}

.s-intro__content-pretitle::before {
	content: "";
	display: block;
	width: 8rem;
	height: 1px;
	background-color: var(--color-1);
	position: absolute;
	top: 50%;
	left: 0;
}

.s-intro__content-title {
	font-size: clamp(5rem, 7vw, 11.6rem);
	line-height: 1;
	margin-top: 0;
	margin-bottom: var(--vspace-1_25);
	color: var(--color-3);
}

.s-intro__content-title em {
	font-family: var(--font-2);
	/* Serif font for emphasis */
	font-style: italic;
	font-weight: 400;
	/* Regular weight for serif */
}

.s-intro__content-media {
	grid-column: 12/-1;
	grid-row: span 2;
	justify-self: end;
	align-self: center;
}

.s-intro__content-media-inner {
	position: relative;
}

.s-intro__content-media img {
	z-index: 2;
	width: max(440px, 10vw);
	margin: 0;
	-o-object-fit: cover;
	object-fit: cover;
	aspect-ratio: 2/2.5;
	vertical-align: bottom;
	box-shadow: 0 60px 40px -40px rgba(0, 0, 0, 0.2);
	position: relative;
}

.s-intro__content-media .lines {
	--line-color: var(--color-1-darker);
	width: 100%;
	height: 18%;
	border-top: 1px solid var(--line-color);
	border-bottom: 1px solid var(--line-color);
	transform: translate(-35%, 0);
	position: absolute;
	left: 0;
	bottom: 6%;
}

.s-intro__content-media .lines:before,
.s-intro__content-media .lines:after {
	content: "";
}

.s-intro__content-media .lines:before,
.s-intro__content-media .lines:after,
.s-intro__content-media .lines span {
	display: block;
	width: 100%;
	height: 1px;
	background-color: var(--line-color);
	position: absolute;
	right: 0;
}

.s-intro__content-media .lines::before {
	top: 25%;
}

.s-intro__content-media .lines::after {
	top: 75%;
}

.s-intro__content-media .lines span {
	top: 50%;
}

/* --------------------------------------------------------------------
 * ## intro scroll down
 * -------------------------------------------------------------------- */
.s-intro__scroll-down {
	z-index: 2;
	grid-column: 1/10;
	grid-row: 2;
}

.s-intro__scroll-down a {
	display: inline-flex;
	align-items: center;
	color: var(--color-3);
}

.s-intro__scroll-down span {
	display: block;
	font-family: var(--font-1);
	font-size: var(--text-size);
	font-weight: 300;
	line-height: var(--vspace-2);
}

.s-intro__scroll-down .scroll-icon {
	display: flex;
	justify-content: center;
	align-items: center;
	height: var(--vspace-1_5);
	width: var(--vspace-1_5);
	border-radius: 50%;
	border: 1px solid var(--color-1);
	margin-right: var(--vspace-0_5);
}

.s-intro__scroll-down svg {
	height: var(--vspace-0_875);
	width: var(--vspace-0_875);
	stroke: var(--color-3);
}

/* --------------------------------------------------------------------
 * ## intro transitions
 * -------------------------------------------------------------------- */
.ss-home .s-header__inner,
.s-intro__content-media img,
.s-intro__content-media .lines,
.s-intro__content-title,
.s-intro__content-pretitle,
.s-intro__scroll-down {
	transition-timing-function: cubic-bezier(0.28, 0.12, 0.22, 1);
	transition-duration: 0.9s;
	transition-delay: 0s;
	opacity: 0;
}

.ss-home .s-header__inner {
	transition-duration: 0.6s;
}

.ss-home .s-header__inner,
.s-intro__content-media .lines {
	transition-property: opacity;
}

.s-intro__content-media img {
	transition-property: opacity, transform;
	transform: translate(-100px, 0);
}

.s-intro__content-pretitle {
	transition-property: opacity, transform;
	transform: translate(-9.6rem, 150px);
}

.s-intro__content-title,
.s-intro__scroll-down {
	transition-property: opacity, transform;
	transform: translateY(150px);
}

.no-js .ss-home .s-header__inner,
.no-js .s-intro__content-media .lines,
.ss-show .ss-home .s-header__inner,
.ss-show .s-intro__content-media .lines {
	opacity: 1;
}

.no-js .s-intro__content-media img,
.ss-show .s-intro__content-media img {
	opacity: 1;
	transform: translate(0, 0);
}

.no-js .s-intro__content-pretitle,
.ss-show .s-intro__content-pretitle {
	opacity: 1;
	transform: translate(-9.6rem, 0);
}

.no-js .s-intro__content-title,
.no-js .s-intro__scroll-down,
.ss-show .s-intro__content-title,
.ss-show .s-intro__scroll-down {
	opacity: 1;
	transform: translateY(0);
}

.no-js .s-intro__content-media img,
.ss-show .s-intro__content-media img {
	transition-delay: 0.6s;
}

.no-js .s-intro__content-media .lines,
.ss-show .s-intro__content-media .lines {
	transition-delay: 0.9s;
}

.no-js .s-intro__content-pretitle,
.ss-show .s-intro__content-pretitle {
	transition-delay: 1.2s;
}

.no-js .s-intro__content-title,
.ss-show .s-intro__content-title {
	transition-delay: 1.5s;
}

.no-js .s-intro__scroll-down,
.ss-show .s-intro__scroll-down {
	transition-delay: 1.8s;
	bottom: 0;
}

/* ------------------------------------------------------------------- 
 * responsive:
 * intro
 * ------------------------------------------------------------------- */
@media screen and (max-width: 900px) {
	.s-intro {
		--content-padding-top: max(12rem, 18vh);
		height: auto;
	}

	.s-intro__content-inner {
		--col: 8;
		--grid-gap-v: 0;
	}

	.s-intro__content-text {
		grid-column-end: span 8;
	}

	.s-intro__content-title {
		font-size: clamp(4rem, 10vw, 10.4rem);
	}

	.s-intro__content-title br {
		display: none;
	}

	.s-intro__content-media {
		grid-column: 4/-1;
		grid-row: 2;
	}

	.s-intro__content-media .lines {
		transform: translate(-90%, 0);
	}

	.s-intro__scroll-down {
		grid-column-end: span 4;
		grid-row: 2;
		margin-top: var(--vspace-0_5);
	}

	.no-js .s-intro__content-pretitle,
	.ss-show .s-intro__content-pretitle {
		transition-delay: 0.6s;
	}

	.no-js .s-intro__content-title,
	.ss-show .s-intro__content-title {
		transition-delay: 0.9s;
	}

	.no-js .s-intro__content-media img,
	.ss-show .s-intro__content-media img {
		transition-delay: 1.5s;
	}

	.no-js .s-intro__content-media .lines,
	.ss-show .s-intro__content-media .lines {
		transition-delay: 1.8s;
	}

	.no-js .s-intro__scroll-down,
	.ss-show .s-intro__scroll-down {
		transition-delay: 2.1s;
		bottom: 0;
	}
}

@media screen and (max-width: 800px) {
	.s-intro__scroll-down span {
		font-size: var(--text-sm);
	}
}

@media screen and (max-width: 600px) {
	.s-intro {
		--content-padding-top: max(12rem, 16vh);
	}

	.s-intro__content-media {
		grid-column: 6/-1;
		/* Move more to right */
		margin-top: -45rem;
		/* Move higher up */
		z-index: 0;
		/* Behind text if necessary */
		width: 150%;
		/* Bigger */
		transform: translateX(15%);
		/* More to the right */
	}

	.s-intro__content-media .lines {
		width: 200%;
		transform: translate(-100%, 0);
	}
}

@media screen and (max-width: 560px) {
	.s-intro__content-pretitle {
		padding-left: 9.6rem;
	}

	.s-intro__content-pretitle::before {
		width: 8.6rem;
	}

	.s-intro__scroll-down {
		margin-left: var(--vspace-0_25);
	}

	.s-intro__scroll-down span {
		display: none;
	}
}



/* Wave emoji animation */
@keyframes wave-hand {
	0% {
		transform: rotate(0deg);
	}

	10% {
		transform: rotate(-10deg);
	}

	20% {
		transform: rotate(12deg);
	}

	30% {
		transform: rotate(-8deg);
	}

	40% {
		transform: rotate(10deg);
	}

	50% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(0deg);
	}
}

.wave {
	display: inline-block;
	transform-origin: 70% 70%;
	animation: wave-hand 2.5s ease-in-out infinite;
}

/* ===================================================================
 * # ABOUT
 *
 *
 * ------------------------------------------------------------------- */
.s-about {
	padding-top: var(--vspace-4);
	padding-bottom: var(--vspace-1);
	background-color: transparent;
	color: var(--color-3);
	overflow: visible;
	position: relative;
	z-index: 20;
}

.s-about .section-header {
	z-index: 2;
}

.s-about .text-display-title {
	color: #F3ECDA;
}

.s-about__content-imgbg {
	aspect-ratio: 1/1;
	width: 25vw;
	transform: translate(-40%, 3%);
	margin: -20% 0 0 0;
	opacity: 0.25;
	grid-column: 1/span 5;
	grid-row: 1/span 1;
}

.s-about__content-main .attention-getter,
.s-about__content-main .lead {
	font-weight: 300;
}

.s-about__content-btn {
	--color-btn-stroke: var(--color-3);
	--color-btn-stroke-text: var(--color-3);
	--color-btn-stroke-hover: var(--color-3);
	--color-btn-stroke-hover-text: var(--color-2-dark);
	transform: translateY(-165px);
}

.s-about__social {
	margin-top: var(--vspace-0_75);
	justify-content: center;
}

.s-about__social svg path,
.s-about__social svg circle {
	fill: var(--color-3);
}

/* Karaoke/Fill-in text effect */
#gradient-text .char {
	color: #444;
	/* Dim initial color */
	transition: color 0.1s ease-in-out;
}

#gradient-text .char.active {
	color: var(--color-3);
	/* Active (bright) color */
}

/* Highlight word container styles */
.highlight-word {
	display: inline;
	/* Ensure it flows with text */
}

/* Conditional styling for active chars inside highlight-word */
.highlight-word .char.active {
	font-family: var(--font-2);
	font-style: italic;
	font-weight: normal;
	font-size: 1.35em;
	transition: color 0.1s ease-in-out, font-style 0.3s ease, font-weight 0.3s ease, font-size 0.3s ease;
}


/* ------------------------------------------------------------------- 
 * responsive:
 * about
 * ------------------------------------------------------------------- */
@media screen and (max-width: 1200px) {
	.s-about__content-btn {
		transform: translateY(0);
		margin-top: var(--vspace-1);
	}
}

@media screen and (max-width: 800px) {
	.s-about {
		padding-top: var(--vspace-2);
		padding-bottom: var(--vspace-1);
	}

	.s-about__content-imgbg {
		grid-column: 1/span 4;
		width: 60vw;
	}
}



/* ===================================================================
 * # EXPERTISE
 *
 *
 * ------------------------------------------------------------------- */
.s-expertise {
	padding-top: var(--vspace-6);
	padding-bottom: var(--vspace-6);
	background-color: var(--color-2-dark);
	color: var(--color-3);
}

.expertise-container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: calc(var(--gutter) * 2);
	align-items: flex-start;
}

.expertise-left {
	position: -webkit-sticky;
	position: sticky;
	top: 12rem;
	height: fit-content;
}

.expertise-left .text-display-title {
	color: var(--color-3);
}

.expertise-right .list-items__item-title {
	color: var(--color-3);
}

.expertise-right .grid-list-items {
	--min-width: 0;
	grid-template-columns: 1fr;
	row-gap: var(--vspace-2);
}

.expertise-left .btn--stroke {
	--color-btn-stroke: var(--color-3);
	--color-btn-stroke-text: var(--color-3);
	--color-btn-stroke-hover: var(--color-3);
	--color-btn-stroke-hover-text: var(--color-2-dark);
}

.expertise-right .list-items__item {
	opacity: 0;
	transform: translateY(50px);
	transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.expertise-right .list-items__item.is-visible {
	opacity: 1;
	transform: translateY(0);
}

/* ------------------------------------------------------------------- 
 * responsive:
 * expertise
 * ------------------------------------------------------------------- */
@media screen and (max-width: 1000px) {
	.s-expertise {
		padding-top: var(--vspace-4);
		padding-bottom: var(--vspace-4);
	}

	.expertise-container {
		grid-template-columns: 1fr;
		gap: var(--vspace-2);
	}

	.expertise-left {
		position: static;
		margin-bottom: var(--vspace-1);
	}
}



/* ===================================================================
 * # CLIENTS
 *
 *
 * ------------------------------------------------------------------- */

/* --------------------------------------------------------------------
 * ## clients carousel
 * -------------------------------------------------------------------- */
.s-clients {
	padding-top: 0;
	margin-top: -6rem;
	padding-bottom: 50px;
	background-color: transparent;
	/* Dark background matching intro */
	overflow: visible;
	position: relative;
	z-index: 15;
}

/* Header Refinements */
.s-clients .section-header h2 em {
	font-style: italic;
	cursor: default;
}

.s-clients .section-header h2 em .highlight-text {
	position: relative;
	display: inline-block;
}

.s-clients .section-header h2 em .highlight-text::after {
	content: "";
	position: absolute;
	left: 10px;
	/* Gap from the first 'g' */
	bottom: -10px;
	/* Position below the text with spacing */
	width: 0;
	height: 3px;
	/* Underline thickness */
	background-color: #FEFAE0;
	/* Match text color */
	transition: width 0.4s ease-out;
}

/* Hover on parent EM triggers underline on child SPAN */
.s-clients .section-header h2 em:hover .highlight-text::after {
	width: calc(100% - 20px);
	/* stop short of the last 'g' */
}

.s-clients__heading {
	text-align: center;
	color: rgba(255, 255, 255, 0.8);
	font-weight: 300;
	font-size: 2.1rem;
	/* thin and small */
	font-family: 'Inter', sans-serif;
	margin-bottom: var(--vspace-1);
	letter-spacing: 0.5px;
}

.highlight-underline {
	position: relative;
	display: inline-block;
}

.highlight-underline::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -2px;
	width: 0;
	height: 2px;
	background-color: rgba(255, 255, 255, 0.8);
	/* match text color */
	transition: width 0.8s cubic-bezier(0.25, 1, 0.5, 1) 0.2s;
	/* scroll animation ease */
}

/* Expand underline when element scrolls into view */
.animate-on-scroll.is-visible .highlight-underline::after {
	width: 100%;
}

.text-original,
.text-animated {
	transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1) 0.2s;
}

.text-animated {
	opacity: 0;
	font-style: italic;
	font-weight: 500;
}

.text-original {
	position: absolute;
	left: 50%;
	top: 0;
	transform: translateX(-50%);
	opacity: 1;
	white-space: nowrap;
}

.animate-on-scroll.is-visible .text-original {
	opacity: 0;
}

.animate-on-scroll.is-visible .text-animated {
	opacity: 1;
}

.logo-carousel {
	position: relative;
	width: 100%;
	overflow: hidden;
	mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
	-webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.logo-carousel__track {
	display: flex;
	flex-wrap: nowrap;
	/* FORCE nowrap used for marquee */
	align-items: center;
	gap: 10rem;
	/* Increased spacing for bigger logos */
	width: max-content;
	animation: scroll 40s linear infinite;
}

.logo-carousel__track img {
	height: 8rem;
	/* Further Increased size */
	width: auto;
	filter: brightness(0) invert(1);
	/* Pure white */
	opacity: 0.3;
	/* Fully opaque at all times */
	transition: none;
	/* No transition needed */
}

/* Removed hover effect to keep brightness constant */

@keyframes scroll {
	0% {
		transform: translateX(0);
	}

	100% {
		transform: translateX(-50%);
		/* Move by half (one full set of logos) */
	}
}

/* Hide original client list styles if any remain targeted by old class */
.clients-list {
	display: none;
}



@media screen and (max-width: 600px) {
	.logo-carousel__track {
		animation-duration: 20s;
		/* Faster on mobile */
	}

	.s-clients__heading {
		font-size: 1.5rem;
		margin-left: -1.8rem;
		margin-right: -1.8rem;
	}
}

/* ===================================================================
 * # CTA
 *
 *
 * ------------------------------------------------------------------- */
.s-cta {
	padding-top: 400px;
	padding-bottom: 400px;
	background-color: #0D0D12;
	color: var(--color-3);
}

.s-cta .text-pretitle {
	color: var(--color-2);
}

.s-cta .text-display-title {
	color: var(--color-3);
}

.s-cta .attention-getter,
.s-cta .lead {
	font-weight: 300;
}

/* Blur Reveal Animation (Scroll Scrubbed) */
.blur-reveal {
	--reveal-progress: 0;
	opacity: var(--reveal-progress);
	filter: blur(calc((1 - var(--reveal-progress)) * 12px));
	transform: translateY(calc((1 - var(--reveal-progress)) * 40px));
	will-change: opacity, filter, transform;
}

/* Mouse Trail Effect */
.trail-image {
	position: fixed;
	top: 0;
	left: 0;
	pointer-events: none;
	z-index: 100;
	width: clamp(120px, 12vw, 200px);
	aspect-ratio: 4/5;
	object-fit: cover;
	border-radius: 0;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
	will-change: transform, opacity;
}

/* ------------------------------------------------------------------- 
 * responsive:
 * CTA
 * ------------------------------------------------------------------- */
@media screen and (max-width: 1000px) {
	.s-cta__content .btn {
		width: 100%;
		margin-right: 0;
	}
}

@media screen and (max-width: 800px) {
	.s-cta .text-display-title {
		white-space: normal !important;
		font-size: 14vw !important;
		line-height: 0.95 !important;
	}

	.cta-word {
		display: block;
	}

	.cta-br {
		display: none;
	}
}



/* ===================================================================
 * # JOURNAL
 *
 *
 * ------------------------------------------------------------------- */
.s-journal {
	padding-top: var(--vspace-6);
	padding-bottom: var(--vspace-3);
	background-color: #181818;
	color: rgba(255, 255, 255, 0.6);
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.s-journal a {
	color: var(--color-1);
}

.s-journal a:focus,
.s-journal a:hover {
	color: var(--color-3-dark);
}

.s-journal h3 a {
	color: var(--color-3);
}

.s-journal h3 a:focus,
.s-journal h3 a:hover {
	color: var(--color-3);
}

.s-journal .section-header {
	margin: 0 auto;
}

.s-journal .text-display-title,
.s-journal h3 {
	color: var(--color-3);
}

.s-journal .text-pretitle,
.s-journal .text-display-title {
	width: min(900px, 100%);
	margin: 0 auto;
}

.s-journal .blog-card-title a {
	color: var(--color-3);
}

.s-journal__content-main {
	margin-top: var(--vspace-2);
}



/* ===================================================================
 * # FOOTER
 *
 *
 * ------------------------------------------------------------------- */
footer {
	position: relative;
	width: 100%;
	min-height: 600px;
	padding: 200px 40px 80px 40px;
	font-family: var(--font-1), 'Inter', Helvetica, sans-serif;
	overflow: hidden;
}

.footer-container {
	display: flex;
	flex-direction: column;
	width: 100%;
	height: 100%;
	min-height: 400px;
	/* Align with footer minimum height */
	padding-left: 4vw;
	padding-right: 4vw;
}

.footer-top-row {
	display: flex;
	width: 100%;
	flex: 1;
	color: #F4F1EB;
	padding-top: 4rem;
	/* add some padding to detach from the edge */
	flex-wrap: wrap;
	/* responsive safety */
}

.footer-bottom-row {
	display: flex;
	width: 100%;
	justify-content: space-between;
	align-items: flex-end;
	margin-top: 5rem;
	padding-bottom: 2rem;
	color: #F4F1EB;
	flex-wrap: wrap;
	gap: 2rem;
}

.footer-col-main {
	flex: 0 0 50%;
	max-width: 50%;
	padding-right: 2rem;
}

.footer-col-links,
.footer-col-social {
	flex: 0 0 25%;
	max-width: 25%;
}

.footer-heading {
	font-family: var(--font-1), 'Inter', Helvetica, sans-serif;
	color: #F3ECDA;
	font-size: clamp(7rem, 12vw, 12rem);
	line-height: 0.85;
	margin-top: 0;
	margin-bottom: -10rem;
	font-weight: 700;
}

.footer-heading .serif-italic {
	font-family: var(--font-2), 'Playfair Display', 'Merriweather', serif;
	font-style: italic;
	font-weight: 400;
	/* Serif elegantly displays at regular weight */
}

.footer-small-heading {
	font-family: var(--font-1), 'Inter', Helvetica, sans-serif;
	color: #F3ECDA;
	font-size: 2rem;
	letter-spacing: 3px;
	margin-bottom: 2rem;
	margin-top: 0;
	font-weight: 300;
	text-transform: uppercase;
	opacity: 0.7;
}

.footer-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-list li {
	margin-bottom: 1rem;
	padding-left: 0;
}

.footer-list a {
	color: #F3ECDA;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 15px;
	font-size: clamp(2.5rem, 4vw, 4.5rem);
	font-weight: 400;
	transition: color 0.3s ease, opacity 0.3s ease;
	margin-bottom: 2rem;
	position: relative;
}

.footer-list a::after {
	content: '';
	position: absolute;
	bottom: -15px;
	left: 0;
	width: 100%;
	height: 3px;
	background-color: #F3ECDA;
	transform: scaleX(0);
	transform-origin: right center;
	transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.footer-list a:hover::after {
	transform: scaleX(1);
	transform-origin: left center;
}

.footer-list a:hover {
	opacity: 0.8;
	color: #F3ECDA;
}

.footer-list svg {
	width: 1em;
	height: 1em;
	color: #F3ECDA;
}

/* Adjust columns for smaller screens */
@media screen and (max-width: 800px) {
	.footer-col-main {
		flex: 0 0 100%;
		max-width: 100%;
		padding-right: 0;
		margin-bottom: 3rem;
	}

	.footer-col-links,
	.footer-col-social {
		flex: 0 0 50%;
		max-width: 50%;
	}

	.footer-brand {
		align-items: flex-start;
	}
}

/* Stacking for mobile */
@media screen and (max-width: 768px) {
	.footer-top-row {
		flex-direction: column;
		align-items: center;
		text-align: center;
		gap: 0;
	}

	.footer-col-main {
		margin-bottom: 4rem;
	}

	.footer-col-links,
	.footer-col-social {
		flex: 0 0 100%;
		max-width: 100%;
		display: flex;
		flex-direction: column;
		align-items: center;
		margin-bottom: 3rem;
	}

	.footer-bottom-row {
		flex-direction: column;
		align-items: center;
		text-align: center;
		gap: 3rem;
		margin-top: 2rem;
	}

	.footer-contact {
		align-items: center;
	}

	.footer-brand {
		align-items: center;
	}
}

.footer-contact {
	display: flex;
	flex-direction: column;
}

.footer-contact-label {
	font-family: var(--font-2), 'Playfair Display', 'Merriweather', serif;
	font-style: italic;
	font-size: 3rem;
	font-weight: 400;
	margin-bottom: -1rem;
	margin-left: 0.3rem;
	color: #c9c3b3;
}

.footer-contact-email {
	font-family: var(--font-1), 'Inter', Helvetica, sans-serif;
	font-size: clamp(3rem, 6vw, 9rem);
	color: #F3ECDA;
	text-decoration: none;
	font-weight: 700;
	/* Made email text very bold */
	transition: opacity 0.3s ease;
	line-height: 1;
	position: relative;
	display: inline-block;
}

.footer-contact-email::after {
	content: '';
	position: absolute;
	bottom: -20px;
	left: 0;
	width: 100%;
	height: 5px;
	background-color: #F3ECDA;
	transform: scaleX(0);
	transform-origin: right center;
	transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.footer-contact-email:hover::after {
	transform: scaleX(1);
	transform-origin: left center;
}

.footer-contact-email:hover {
	opacity: 0.8;
	color: #F3ECDA;
}

.footer-brand {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 10px;
	transform: translateY(93px);
}

.footer-logo {
	max-width: clamp(300px, 25vw, 600px);
	height: auto;

}

.footer-copyright {
	font-size: 1.85rem;
	color: #F4F1EB;
	opacity: 0.7;
	transform: translateY(-95px);
}




/* ===================================================================
 * # BLOG STYLES 
 *
 *
 * ------------------------------------------------------------------- */
.entry__header {
	--width-grid-max: min(90%, var(--width-narrower));
}

.entry__title {
	margin-top: 0;
	font-size: clamp(5rem, 7vw, var(--text-display-3));
	line-height: 1.1163;
	color: var(--color-3);
}

.entry__meta {
	display: flex;
	flex-flow: row wrap;
	align-items: center;
	justify-content: center;
	font-size: calc(var(--text-size) * 0.9);
	font-weight: 300;
	color: rgba(255, 255, 255, 0.7);
	margin-top: var(--vspace-1);
}

.entry__meta a {
	color: rgba(255, 255, 255, 0.7);
}

.entry__meta .cat-links a::after {
	content: ", ";
}

.entry__meta .cat-links a:last-child::after {
	display: none;
}

.entry__meta>[class*=entry__meta] {
	display: flex;
	align-items: center;
	margin: 0 var(--vspace-0_75);
}

.entry__meta>[class*=entry__meta] svg {
	margin-right: 0.4rem;
	height: var(--vspace-0_875);
	width: var(--vspace-0_875);
}

.entry__meta>[class*=entry__meta] svg path,
.entry__meta>[class*=entry__meta] svg circle {
	stroke: var(--color-1);
}

.entry__content {
	padding-top: var(--vspace-3);
}

.entry__media {
	margin-top: var(--vspace-0_5);
	margin-bottom: var(--vspace-2_5);
}

.entry__media .featured-image {
	margin: 0;
}

.entry__media img {
	vertical-align: bottom;
}

.entry__primary figure {
	margin: var(--vspace-2) 0;
}

/* post navigation
 */
.post-nav {
	display: flex;
	margin-top: var(--vspace-2_5);
	padding: var(--vspace-1_25) 0 var(--vspace-2);
	border-top: 1px solid var(--color-border);
	border-bottom: 1px solid var(--color-border);
	position: relative;
}

.post-nav::before {
	content: "";
	display: block;
	width: 1px;
	height: 100%;
	background-color: var(--color-border);
	position: absolute;
	top: 0;
	left: 50%;
	bottom: 0;
}

.post-nav__prev,
.post-nav__next {
	flex: none;
	width: 50%;
}

.post-nav__prev {
	padding-right: calc(var(--gutter) + 1.2rem);
}

.post-nav__next {
	padding-left: calc(var(--gutter) + 1.2rem);
	margin-left: auto;
}

.post-nav a {
	font-family: var(--font-1);
	font-size: var(--text-md);
	line-height: 1.1667;
	color: var(--color-text);
}

.post-nav span {
	display: block;
	font-family: var(--font-1);
	font-weight: 400;
	font-size: var(--text-sm);
	line-height: var(--vspace-1);
	color: var(--color-1);
	margin-left: 0.2rem;
	margin-bottom: var(--vspace-0_25);
}

/* related post
 */
.related-posts {
	margin-top: var(--vspace-1_5);
}

.related-posts h4 {
	font-family: var(--font-1);
	font-size: var(--text-md);
	margin-bottom: var(--vspace-1_25);
}

/* ------------------------------------------------------------------- 
 * responsive:
 * blog styles
 * ------------------------------------------------------------------- */
@media screen and (max-width: 900px) {
	.entry__media {
		margin-top: 0;
		margin-bottom: var(--vspace-2);
	}
}

@media screen and (max-width: 800px) {
	.entry__header {
		padding-top: var(--vspace-4_5);
	}

	.post-nav {
		display: block;
		text-align: center;
	}

	.post-nav::before {
		display: none;
	}

	.post-nav>div:first-child {
		margin-bottom: var(--vspace-1);
	}

	.post-nav__prev,
	.post-nav__next {
		flex: none;
		width: 100%;
		padding: 0;
	}
}



/* ===================================================================
 * # PAGE STYLES 
 *
 *
 * ------------------------------------------------------------------- */
.pagemedia {
	margin-bottom: var(--vspace-2_5);
}

.pagemedia figure,
.pagemedia img {
	margin-bottom: 0;
}

.pagemedia img {
	vertical-align: bottom;
}

.pagemain .column:first-child>*:first-child {
	margin-top: 0;
}

/* --------------------------------------------------------------------
 * ## services page
 * -------------------------------------------------------------------- */
.list-services {
	list-style: none;
	font-size: calc(var(--text-size) * 0.95);
	font-weight: 400;
	color: var(--color-text-dark);
	border-top: 1px dotted var(--color-border);
	margin-top: calc(var(--vspace-0_25) * -1);
	margin-left: 0;
}

.list-services li {
	display: block;
	border-bottom: 1px dotted var(--color-border);
	padding: 0.6rem 0;
	padding-left: 2.8rem;
	position: relative;
}

.list-services li::before {
	content: "";
	display: block;
	height: 6px;
	width: 6px;
	background-color: var(--color-2);
	border-radius: 50%;
	position: absolute;
	left: 0.4rem;
	top: calc(0.8rem + var(--vspace-0_375));
}

/* --------------------------------------------------------------------
 * ## contact page
 * -------------------------------------------------------------------- */
.contact-cta {
	margin-bottom: var(--vspace-2);
}

.contact-btn {
	display: flex;
	justify-content: center;
	align-items: center;
}

.contact-btn svg {
	margin-right: 1rem;
	height: var(--vspace-0_75);
	width: var(--vspace-0_75);
}

.contact-btn svg path {
	fill: var(--color-text);
}

.contact-block {
	margin-bottom: var(--vspace-1_25);
}

.contact-block a {
	color: var(--color-text);
}

.contact-block a:focus,
.contact-block a:hover {
	color: var(--color-link);
}

.contact-block h6 {
	margin-top: 0;
	margin-bottom: var(--vspace-0_125);
}

.contact-social {
	margin-top: var(--vspace-0_375);
}

.contact-social svg path {
	fill: var(--color-text);
}

.contact-list {
	list-style: none;
	margin-left: 0;
}

.contact-list li {
	padding-left: 0;
}

/* Intro title character styling */
.s-intro__content-title .char {
	display: inline-block;
	color: var(--color-3);
	transition: color 0.1s ease-in-out;
}

.s-intro__content-title .char.active {
	color: var(--color-3);
}

/* Highlight word styling in intro title */
.s-intro__content-title .highlight-word {
	display: inline;
}

.s-intro__content-title .highlight-word .char.active {
	font-family: var(--font-2);
	font-style: italic;
	font-weight: normal;
	font-size: 1.35em;
	transition: color 0.1s ease-in-out, font-style 0.3s ease, font-weight 0.3s ease, font-size 0.3s ease;
}


/* ------------------------------------------------------------------- 
 * ## hero section enhancements
 * ------------------------------------------------------------------- */

/* Highlighted text styling - 'results-driven' */
.s-intro__content-title .highlight-text {
	font-style: italic;
	font-family: var(--font-2);
	/* Using existing serif font for elegance */
}

/* Value Points Section */
.s-intro__value-points {
	display: flex;
	flex-wrap: wrap;
	gap: 2.4rem;
	margin-top: var(--vspace-1_5);
	margin-bottom: var(--vspace-2);
}

.value-point {
	display: flex;
	align-items: center;
	gap: 0.8rem;
	font-family: var(--font-1);
	font-size: var(--text-md);
	color: var(--color-text);
}

.value-point .check-icon {
	flex-shrink: 0;
	width: 2rem;
	height: 2rem;
	color: var(--color-1);
	/* Using existing theme color */
	stroke-width: 2.5;
}

.value-point span {
	font-weight: 500;
}

/* Trusted Service Section */
.s-intro__trusted-service {
	display: flex;
	align-items: center;
	gap: 1.6rem;
	margin-top: var(--vspace-1_5);
}

.trusted-avatars {
	display: flex;
	align-items: center;
}

.trusted-avatars .avatar {
	width: 4rem;
	height: 4rem;
	border-radius: 50%;
	border: 3px solid var(--color-white);
	object-fit: cover;
	transition: transform 0.3s ease;
}

/* Overlapping avatars effect */
.trusted-avatars .avatar:not(:first-child) {
	margin-left: -1.2rem;
}

/* Hover effect - avatars move up slightly */
.trusted-avatars .avatar:hover {
	transform: translateY(-4px);
	z-index: 10;
	position: relative;
}

.trusted-info {
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
}

.trusted-stars {
	display: flex;
	gap: 0.2rem;
}

.trusted-stars svg {
	width: 1.6rem;
	height: 1.6rem;
	color: var(--color-1);
	/* Using existing theme color for stars */
}

.trusted-text {
	font-family: var(--font-1);
	font-size: var(--text-sm);
	color: var(--color-text);
	font-weight: 500;
}

/* Responsive adjustments for hero enhancements */
@media screen and (max-width: 800px) {
	.s-intro__value-points {
		gap: 1.6rem;
	}

	.value-point {
		font-size: var(--text-size);
	}

	.s-intro__trusted-service {
		flex-direction: column;
		align-items: flex-start;
		gap: 1.2rem;
	}
}

@media screen and (max-width: 600px) {
	.s-intro__value-points {
		flex-direction: column;
		gap: 1.2rem;
	}

	.trusted-avatars .avatar {
		width: 3.2rem;
		height: 3.2rem;
		border-width: 2px;
	}

	.trusted-avatars .avatar:not(:first-child) {
		margin-left: -0.8rem;
	}
}

/* --------------------------------------------------------------------
 * ## intro values
 * -------------------------------------------------------------------- */
.s-intro__values {
	display: flex;
	flex-wrap: wrap;
	gap: 3.2rem;
	margin-top: var(--vspace-1_5);
	opacity: 0;
	/* styling for animation */
	transform: translateY(150px);
	/* styling for animation */
}

.s-intro__value-item {
	display: flex;
	align-items: center;
	font-family: var(--font-1);
	font-size: 1.8rem;
	line-height: 1.3;
	color: var(--color-2-lightest);
	/* Muted text color like reference */
	font-weight: 400;
}

.s-intro__value-item svg {
	width: 2.2rem;
	height: 2.2rem;
	stroke: var(--color-success);
	/* Green check */
	margin-right: 0.8rem;
	flex-shrink: 0;
}

/* Animations matching existing intro elements */
.no-js .s-intro__values,
.ss-show .s-intro__values {
	opacity: 1;
	transform: translateY(0);
	transition-property: opacity, transform;
	transition-duration: 0.9s;
	transition-timing-function: cubic-bezier(0.28, 0.12, 0.22, 1);
	transition-delay: 1.8s;
}

@media screen and (max-width: 800px) {
	.s-intro__values {
		justify-content: center;
	}
}

@media screen and (max-width: 600px) {
	.s-intro__values {
		gap: 0.8rem;
		flex-direction: column;
		align-items: flex-start;
		/* Left align */
		/* Center on mobile because intro text is centered */
		margin-top: var(--vspace-1);
		padding-left: 0;
		/* Move to left edge */
	}

	.s-intro__value-item {
		font-size: 1.5rem;
		/* Smaller font on mobile */
	}
}

/* --------------------------------------------------------------------
 * ## intro trusted
 * -------------------------------------------------------------------- */
.s-intro__trusted {
	display: flex;
	align-items: center;
	gap: 2.4rem;
	margin-top: var(--vspace-2);
	opacity: 0;
	transform: translateY(150px);
}

.trusted-avatars {
	display: flex;
	padding-left: 1.2rem;
}

.trusted-avatars img {
	width: 4.8rem;
	height: 4.8rem;
	border-radius: 50%;
	border: 3px solid var(--color-2-dark);
	margin-left: -1.6rem;
	transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	position: relative;
	/* Default stacking handled by nth-child below */
}

/* Stacking order: Leftmost on top */
.trusted-avatars img:nth-child(1) {
	z-index: 5;
}

.trusted-avatars img:nth-child(2) {
	z-index: 4;
}

.trusted-avatars img:nth-child(3) {
	z-index: 3;
}

.trusted-avatars img:nth-child(4) {
	z-index: 2;
}

.trusted-avatars img:nth-child(5) {
	z-index: 1;
}

/* Hover effect: Subtle lift, NO z-index change */
.trusted-avatars img:hover {
	transform: translateY(-5px);
}

.trusted-divider {
	width: 6rem;
	height: 1px;
	background-color: #ffffff;
	/* Pure white */
	opacity: 0.5;
	/* Slightly substantial but not overpowering */
	margin: 0 0.8rem;
}

.trusted-content {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.trusted-stars {
	display: flex;
	gap: 0.4rem;
	margin-bottom: 0.4rem;
}

.trusted-stars svg {
	width: 1.8rem;
	height: 1.8rem;
	color: #ffffff;
	fill: currentColor;
}

.trusted-text {
	font-family: var(--font-1);
	font-size: 1.5rem;
	color: var(--color-gray-10);
	/* Light gray for text */
	font-weight: 400;
	line-height: 1.2;
}

/* Animations matching existing intro elements */
.no-js .s-intro__trusted,
.ss-show .s-intro__trusted {
	opacity: 1;
	transform: translateY(0);
	transition-property: opacity, transform;
	transition-duration: 0.9s;
	transition-timing-function: cubic-bezier(0.28, 0.12, 0.22, 1);
	transition-delay: 2.0s;
}

@media screen and (max-width: 800px) {
	.s-intro__trusted {
		flex-direction: column;
		gap: 1.6rem;
		text-align: left;
		/* Left align */
		align-items: flex-start;
		/* Flex start */
		padding-left: 0;
		/* Move to left edge */
		transform: scale(0.9);
		/* Smaller */
		transform-origin: left top;
	}

	.trusted-divider {
		display: none;
	}

	.trusted-avatars {
		justify-content: flex-start;
		/* Left align */
		padding-left: 0;
	}

	.trusted-avatars img {
		margin: 0 -0.8rem;
	}

	.trusted-avatars img:first-child {
		margin-left: 0;
	}

	.trusted-content {
		align-items: flex-start;
		/* Left align */
	}
}

/* ===================================================================
 * Mobile Hero Fix
 * =================================================================== */
@media screen and (max-width: 900px) {
	.hero-container {
		display: grid !important;
		grid-template-columns: min-content 1fr;
		grid-template-rows: auto auto auto;
		align-content: center;
		padding: 120px 5% 60px 5% !important;
		height: auto !important;
		min-height: 100svh;
	}

	.asterisk-icon {
		position: static !important;
		grid-column: 1;
		grid-row: 1;
		width: clamp(6rem, 16vw, 9rem) !important;
		min-width: 2.5rem !important;
		align-self: start;
		margin-top: 0.3em;
		margin-right: 3vw;
		opacity: 1;
	}

	.content-layer {
		position: static !important;
		grid-column: 1 / -1;
		grid-row: 1;
		padding: 0 !important;
		width: 100%;
		display: block !important;
	}

	.hero-title {
		position: static !important;
		transform: none !important;
		align-items: flex-start !important;
		font-size: clamp(7rem, 13vw, 8rem) !important;
		line-height: 1.1 !important;
		width: 100%;
		margin: 0 !important;
	}

	.word-1 {
		align-self: flex-start !important;
		margin-left: calc(clamp(2.5rem, 9vw, 4rem) + 7vw) !important;
		margin-right: 0 !important;
	}

	.word-2,
	.word-3 {
		align-self: flex-start !important;
		margin-left: 0 !important;
		margin-right: 0 !important;
	}

	.hero-subtext {
		position: static !important;
		grid-column: 1 / -1;
		grid-row: 2;
		margin-top: 3rem !important;
		text-indent: 0 !important;
		font-size: clamp(1.9rem, 4.5vw, 1.4rem) !important;
		max-width: 100% !important;
		text-align: left !important;
		padding: 0 !important;
		left: auto !important;
		top: auto !important;
	}

	.bottom-anchors {
		display: none !important;
	}

	.word-3 .word-inner {
		flex-direction: column !important;
		align-items: flex-start !important;
		gap: 1.5rem !important;
	}

	.discover-text {
		display: none !important;
	}

	.btn-elevated-arrow {
		width: clamp(75px, 25vw, 120px) !important;
		height: clamp(75px, 25vw, 120px) !important;
		margin-left: 0 !important;
	}
}

/* ===================================================================
 * # SERVICES (STICKY ANIMATION)
 * =================================================================== */
.s-services {
	height: 485vh;
	position: relative;
	margin-top: -20vh;
	z-index: 10;
}

.s-services__sticky {
	height: 100vh;
	position: -webkit-sticky;
	position: sticky;
	top: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.s-services__title {
	font-size: 23vw;
	font-weight: bold;
	font-family: sans-serif;
	margin: 0;
	line-height: 1;
	text-align: center;
	color: transparent;
	background: linear-gradient(to right, #5B5963 var(--scroll-progress, 0%), #f3ecda var(--scroll-progress, 0%));
	-webkit-background-clip: text;
	background-clip: text;
}

/* Services Content overlapping */
.s-services__content {
	position: relative;
	z-index: 10;
	margin-top: 5vh;
	padding-bottom: 50vh;
}

.services-grid {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6rem;
	width: 100%;
	padding: 0 2rem;
}

.service-card {
	width: 100%;
	max-width: 600px;
	min-height: 250px;
	background: rgba(38, 38, 38, 0.9);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 20px;
	padding: 3rem 2.5rem;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
	transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), background 0.3s ease;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

/* Featured Card Override */
.service-card:first-child,
.service-card:nth-child(3) {
	max-width: 1000px;
	gap: 2rem;
	padding: 4.5rem 3rem;
}

.service-card:first-child .service-card__top,
.service-card:nth-child(3) .service-card__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	width: 100%;
}

.service-card:first-child .service-card__title,
.service-card:nth-child(3) .service-card__title {
	margin: 0;
	font-size: 5rem;
	/* slightly smaller to give video prominence */
	font-weight: 500;
	letter-spacing: -0.02em;
}

.service-card:first-child .service-card__icon,
.service-card:nth-child(3) .service-card__icon {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.15);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #ffffff;
}

.service-card:first-child .service-card__video,
.service-card:nth-child(3) .service-card__video {
	width: 100%;
	aspect-ratio: 16/9;
	border-radius: 24px;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.1);
	box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.5);
	/* subtle inner shadow */
}

.service-card:first-child .service-card__video video,
.service-card:nth-child(3) .service-card__video video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.service-card:first-child .service-card__bottom,
.service-card:nth-child(3) .service-card__bottom {
	max-width: 80%;
}

.service-card__title {
	font-family: 'Inter', 'SF Pro Display', Helvetica, sans-serif;
	;
	font-size: 1.8rem;
	color: #ffffff;
	margin-top: 0;
	margin-bottom: 1rem;
	line-height: 1.2;
}

.service-card__text {
	font-family: var(--font-1);
	font-size: 2.3rem;
	color: rgba(255, 255, 255, 0.7);
	line-height: 1.6;
	margin: 0;
}

/* Service Card 2 Override (Second Child & Fourth Child Split Layout) */
.service-card:nth-child(2),
.service-card:nth-child(4) {
	max-width: 1000px;
	width: 100%;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	min-height: 700px;
	padding: 5rem 3rem;
	overflow: hidden;
}

.service-card:nth-child(2) .card-left,
.service-card:nth-child(4) .card-left {
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: flex-start;
}

.service-card:nth-child(2) .card-header,
.service-card:nth-child(4) .card-header {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.service-card:nth-child(2) .icon-placeholder,
.service-card:nth-child(4) .icon-placeholder {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.15);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #ffffff;
	font-family: 'Inter', 'SF Pro Display', Helvetica, sans-serif;
	font-size: 1.8rem;
}

.service-card:nth-child(2) h3,
.service-card:nth-child(4) h3 {
	font-family: 'Inter', 'SF Pro Display', Helvetica, sans-serif;
	font-size: 5rem;
	font-weight: 500;
	letter-spacing: -0.02em;
	color: #ffffff;
	margin: 0;
}

.service-card:nth-child(2) p,
.service-card:nth-child(4) p {
	font-family: var(--font-1);
	font-size: 2.3rem;
	color: rgba(255, 255, 255, 0.7);
	line-height: 1.6;
	margin: 0;
}

/* Card 2 & 4 Right Column Setup */
.service-card:nth-child(2) .card-right {
	position: relative;
	height: 100%;
	width: 100%;
}

.service-card:nth-child(4) .card-right {
	position: relative;
	height: 100%;
	width: 100%;
}

/* Card 4 Video Wrapper */
.service-card:nth-child(4) .video-wrapper {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	overflow: hidden;
	border-radius: 12px;
	box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.3);

}

.service-card:nth-child(4) .video-wrapper video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.service-card:nth-child(2) .scroll-wrapper {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	overflow: hidden;
	border-radius: 12px;
}

.service-card:nth-child(2) .scroll-track {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	animation: scrollVertical 10s linear infinite;
}

.service-card:nth-child(2) .scroll-track img {
	display: block;
	margin: 0;
	width: 100%;
	height: auto;
	object-fit: cover;
	border-radius: 12px;
}

@keyframes scrollVertical {
	0% {
		transform: translateY(0);
	}

	100% {
		transform: translateY(-50%);
	}
}

/* Services CTA Button */
.services-cta-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	max-width: 1000px;
	background-color: #F3ECDA;
	color: #0a0a0a;
	font-family: 'Inter', 'SF Pro Display', Helvetica, sans-serif;
	font-size: clamp(2.5rem, 5vw, 4rem);
	font-weight: 500;
	letter-spacing: -0.02em;
	padding: 3rem 4rem;
	border-radius: 24px;
	transition: background-color 0.4s ease-in-out;
	text-decoration: none;
	line-height: 1;
}

.services-cta-btn:hover {
	color: #0a0a0a;
}

.services-cta-btn-inner {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

.services-cta-btn .btn-text {
	display: inline-block;
	transition: transform 0.4s ease-in-out, color 0.4s ease-in-out;
	transform: translateX(0);
}

.services-cta-btn .btn-arrow {
	position: absolute;
	right: -2em;
	opacity: 0;
	height: 1em;
	width: 1em;
	transition: all 0.4s ease-in-out;
	transform: translateX(-30px);
}

.services-cta-btn:hover .btn-text {
	transform: translateX(-1em);
}

.services-cta-btn:hover .btn-arrow {
	opacity: 1;
	transform: translateX(0);
	right: -1.2em;
}

/* ------------------------------------------------------------------- 
 * responsive:
 * services
 * ------------------------------------------------------------------- */
@media screen and (max-width: 800px) {
	.s-services {
		height: auto;
		margin-top: 0;
	}

	.s-services__sticky {
		position: relative;
		height: auto;
		display: block;
		padding-top: var(--vspace-4);
		padding-bottom: var(--vspace-2);
	}

	.s-services__title {
		font-size: clamp(3.5rem, 15vw, 5rem);
		text-align: center;
	}

	.s-services__content {
		margin-top: 0;
		padding-bottom: var(--vspace-3);
	}

	.service-card:nth-child(2),
	.service-card:nth-child(4) {
		grid-template-columns: 1fr;
		min-height: auto;
		padding: 3rem 2rem;
		gap: 2rem;
	}

	.service-card:nth-child(2) .card-left,
	.service-card:nth-child(4) .card-left {
		gap: 1.5rem;
		justify-content: flex-start;
	}

	.service-card:nth-child(2) .card-right,
	.service-card:nth-child(4) .card-right {
		min-height: 250px;
	}

	.service-card:first-child,
	.service-card:nth-child(3) {
		padding: 3rem 2rem;
	}

	.service-card:first-child .service-card__top,
	.service-card:nth-child(3) .service-card__top {
		flex-direction: column;
		align-items: flex-start;
		gap: 1.5rem;
	}

	.service-card:first-child .service-card__bottom,
	.service-card:nth-child(3) .service-card__bottom {
		max-width: 100%;
	}

	/* Adjust font sizes and spacing for mobile cards */
	.service-card:nth-child(2) h3,
	.service-card:nth-child(4) h3,
	.service-card:first-child .service-card__title,
	.service-card:nth-child(3) .service-card__title {
		font-size: 3.2rem;
		line-height: 1.1;
		margin-bottom: 0.5rem;
	}

	.service-card:nth-child(2) p,
	.service-card:nth-child(4) p,
	.service-card__text {
		font-size: 1.8rem;
		line-height: 1.6;
	}
}

/* Footer Parallax Reveal */
#main-content {
	position: relative;
	z-index: 10;
	background-color: var(--color-body, #0D0D12);
}

footer {
	position: fixed !important;
	bottom: 0;
	left: 0;
	width: 100%;
	z-index: 1;
	will-change: transform;
}

/* Footer Word Cycler Animation */
.mobile-space {
	display: none;
}

.word-cycler-wrap {
	display: inline-grid;
	grid-template-areas: "word";
	justify-items: start;
	align-items: center;
	padding-top: 0.07em;
	padding-bottom: 0.1em;
}

.cycle-word {
	grid-area: word;
	visibility: hidden;
}

.cycle-word.is-active {
	visibility: visible;
}

.cycle-char {
	display: inline-block;
	opacity: 0;
	will-change: transform, opacity;
}

/* ------------------------------------------------------------------- 
 * responsive:
 * footer mobile layout
 * ------------------------------------------------------------------- */
@media screen and (max-width: 800px) {
	.footer-container {
		display: flex;
		flex-direction: column;
		align-items: center;
		text-align: center;
		gap: 3rem;
		padding-top: var(--vspace-4);
		padding-bottom: var(--vspace-2);
	}

	.footer-top-row,
	.footer-bottom-row {
		display: contents;
	}

	.footer-col-social {
		order: 1;
		margin: 0;
		width: 100%;
	}

	.footer-contact {
		order: 2;
		margin: 0;
		width: 100%;
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	.footer-col-main {
		order: 3;
		margin: 0;
		margin-top: 3rem;
		width: 100%;
	}

	.footer-brand {
		order: 4;
		margin: 0;
		margin-top: 4rem;
		margin-bottom: -8rem;
		width: 100%;
		display: flex;
		flex-direction: column;
		align-items: center;
		transform: none;
	}

	.footer-col-links {
		display: none;
	}

	/* Styling adjustments */
	.footer-col-social ul.footer-list {
		display: flex;
		flex-direction: row;
		justify-content: center;
		gap: 2rem;
		padding: 0;
		margin: 0;
	}

	.footer-col-social ul.footer-list li {
		margin: 0;
		padding: 0;
	}

	.footer-col-social ul.footer-list a {
		font-size: 0;
		/* Hide text */
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.footer-col-social ul.footer-list svg {
		width: 32px;
		height: 32px;
		margin: 0;
	}

	.footer-small-heading,
	.footer-contact-label {
		text-align: center;
		margin-bottom: 1rem;
		width: 100%;
		display: block;
	}

	.footer-contact-email {
		font-size: clamp(2.5rem, 8vw, 4rem);
	}

	.footer-heading {
		font-size: clamp(4rem, 12vw, 6rem);
		line-height: 1.1;
		margin: 0;
	}

	.footer-br-mobile-hide {
		display: none;
	}

	.mobile-space {
		display: inline;
	}

	.word-cycler-wrap {
		justify-items: center;
		width: 100%;
	}

	footer {
		background-image: url('../images/joshua.jpg') !important;
		background-size: cover !important;
		background-position: center center !important;
		padding: 80px 20px 40px 20px;
		min-height: auto;
	}

	.footer-logo {
		display: block;
		width: clamp(200px, 50vw, 300px);
		height: auto;
		margin-bottom: 1rem;
		max-width: none;
	}

	.footer-copyright {
		margin-top: 0;
		text-align: center;
		font-size: 1.4rem;
		transform: none;
	}
}