/*
Theme Name: Red Cedar Const. Services
Template: genesis
Author: Laura Wyatt
*/

/* ==================================================
   ROOT
================================================== */

:root {
   --taupe: #C4B9AB;
   --lttaupe: #EDEBE8;
   --black: #131E28;
   --maroon: #492425;
   --orange: #BA5B3C;
   --navy: #253747;
}

/* ==================================================
   BASE RESET
================================================== */

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

html {
	background-image: url(/wp-content/themes/rccs/images/bkg.jpg);
	background-position: top center;
	background-attachment: fixed;
	background-size: 100%;
    font-family: "Poppins", sans-serif;
    font-size: 20px;
}

body {
    margin: 0;
    font-family: "Poppins", sans-serif;
    color: var(--navy);
    line-height: 2;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: .3s ease;
}

section {
    padding: 100px 0;
}

.wrap {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ==================================================
   TYPOGRAPHY
================================================== */

h1, h2, h3, h4, h5, h6 {
    font-family: "Poppins", sans-serif;
    margin-top: 0;
    color: var(--black);
}

h1 {
    font-size: 90px;
    font-weight: 400;
    line-height: 0.8;
}

h1.entry-title {
	font-size: 43px;
    font-weight: 400;
	line-height: 1.3;
	margin-bottom: 20px;	
}

h2, .page-template-team h1.entry-title, .blog h1.entry-title {
    display: table;
    margin-left: auto;
    margin-right: auto;
    font-size: 18px;
	text-transform: uppercase;
	letter-spacing: 3px;
	padding: 22px 40px 20px;
    line-height: 23px;
	border: 1px solid #E8E4DE;
    font-weight: 800;
	background-color: white;
}

h3 {
    font-size: 33px;
    font-weight: 400;
	margin-bottom: 20px;
}

p {
    margin-bottom: 24px;
}

/* ==================================================
   BUTTONS
================================================== */

.button,
input[type="submit"], 
li#menu-item-50, 
.gform_wrapper input[type="submit"],
.gform_wrapper button[type="submit"], .wp-block-button__link {
   background: var(--orange);
    color: #fff;
    font-size: 17px !important;
    line-height: 22px;
    padding: 24px 40px 20px;
    border-radius: 50px;
    outline: none !important;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    display: inline-block;
    transition: .3s ease;
    border: 0px !important;
}

.button:hover,
input[type="submit"]:hover, .wp-block-button__link:hover {
    background: var(--navy);
}

li#menu-item-50:hover {
	background: var(--taupe);
	color: var(--navy);
}

/* ==================================================
   HEADER
================================================== */

.site-header {
    position: absolute;
    width: 100%;
    z-index: 1000;
    padding: 25px 0;
    transition: all .3s ease;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

body:not(.home) .site-header {
    background: var(--navy);
    position: relative;
}

.site-header.sticky {
    position: fixed !important;
    top: 0;
    left: 0;
    background: var(--navy);
    padding: 18px 0;
}

.site-header .wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-header .genesis-nav-menu {
	padding: 0px 60px;
}

.site-header .genesis-nav-menu li.button {
	padding: 0px;
	letter-spacing: 2px;
	font-weight: 600;
	font-size: 18px;
	background-color: transparent;
}

/* ==================================================
   LOGO
================================================== */

.title-area img {
	margin-left: 60px;
    max-height: 100px;
    margin-top: 0px;
	width: auto !important;
    transition: .3s ease;
}

.home .title-area img {
    max-height: 150px;
	margin-left: 60px;
    margin-top: 20px;
}

.site-title {
	display: none;
}

.sticky-logo {
    display: none;
}

.site-header.sticky .sticky-logo {
    display: block;
    max-height: 50px;
	padding: 0px 30px;
}

.site-header.sticky .sticky-logo img {
    max-height: 50px;
}

.site-header.sticky .title-area img {
    display: none;
}

/* ==================================================
   DESKTOP NAV
================================================== */

.genesis-nav-menu {
    list-style: none;
    display: flex;
	align-items: center;
    gap: 40px;
    margin: 0;
    padding: 0;
}

.genesis-nav-menu > li {
    position: relative;
}

.genesis-nav-menu a {
    font-family: "Poppins", sans-serif;
    color: #fff;
    font-weight: 600;
    letter-spacing: 2px;
	font-size: 18px;
	text-transform: uppercase;
}

.genesis-nav-menu .sub-menu li a {
    letter-spacing: 0px;
	font-weight: 400;
	text-transform: capitalize;
}

.genesis-nav-menu a:hover {
    color: var(--taupe);
}

.home .site-header:not(.sticky) .genesis-nav-menu {
    display: none;
}

/* ==================================================
   DROPDOWNS
================================================== */

.genesis-nav-menu ul {
    position: absolute;
    top: 100%;
    left: -20px;
	border-radius: 0px 0px 5px 5px;
    background: var(--navy);
    list-style: none;
    padding: 20px;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transition: .3s ease;
}

.genesis-nav-menu li:hover > ul {
    opacity: 1;
    visibility: visible;
}

.genesis-nav-menu ul li {
    margin-bottom: 0px;
}

/* ==================================================
   HAMBURGER
================================================== */

.mobile-menu-container {
    position: relative;
    z-index: 10001;
}

#mobile-menu-toggle {
    cursor: pointer;
    width: 40px;
    height: 24px;
    position: absolute;
    top: 50px;
    right: 70px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

#mobile-menu-toggle span {
    display: block;
    height: 2px;
    width: 100%;
    background: #fff;
    transition: all .35s ease;
    transform-origin: center;
}

#mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(11px) rotate(45deg);
}

#mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

#mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
}

.home #mobile-menu-toggle {
    display: flex;
}

body:not(.home) #mobile-menu-toggle {
    display: none;
}

/* ==================================================
   MOBILE MENU OVERLAY
================================================== */

#mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background-image: url('/wp-content/uploads/2026/02/menu-bkg-scaled.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: translateY(-100%); 
    transition: transform .7s cubic-bezier(.77,0,.175,1); 
	border-radius: 0px 0px 30px 30px;
    z-index: 9999;
    display: flex;
}

#mobile-menu-overlay::before {
    content: "";
    position: absolute;
    inset: 0;
	border-radius: 0px 0px 30px 30px;
    background: rgba(37,55,71,0.78);
    z-index: 1;
}

#mobile-menu-overlay.active {
    transform: translateY(0);
}

.overlay-wrap {
    position: relative;
    z-index: 2;
    display: flex;
    width: 100%;
    height: 100%;
}

/* ==================================================
   OVERLAY MENU
================================================== */

.overlay-menu {
    width: 80%;
    padding: 140px 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

ul#menu-main-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

ul#menu-main-menu > li:not(#menu-item-50) {
    margin-bottom: 38px;
}

ul#menu-main-menu > li:not(#menu-item-50) > a {
    font-family: "Poppins", sans-serif;
    font-size: 40px;
	line-height: 45px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #fff;
    display: inline-block;
}

ul#menu-main-menu > li:not(#menu-item-50) > a:hover {
    color: var(--taupe);
}

.overlay-menu li {
	text-align: left;
}

.overlay-menu li.menu-item-has-children {
    display: block;
}

.overlay-menu li.menu-item-has-children > a {
    display: inline-block;
}

.overlay-menu li.submenu-open > ul {
    max-height: 500px;
    opacity: 1;
}

.overlay-menu .button:hover {
    background: var(--taupe);
    color: var(--navy);
}

/* ==================================================
   SUBMENU
================================================== */

.submenu-toggle {
    display: inline-block;
    margin-left: 16px;
    font-size: 55px;
	padding: 0px;
    font-weight: 400;
    margin-top: -20px;
	border: 0px;
	background: transparent;
    line-height: 1;
    vertical-align: middle;
    cursor: pointer;
    color: #fff;
    transition: .3s ease;
}

.submenu-toggle:hover {
    color: var(--taupe);
}

.overlay-menu ul ul {
    width: 100%;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height .4s ease, opacity .3s ease;
}

.overlay-menu li.submenu-open > ul {
    max-height: 200px;
    opacity: 1;
}

.overlay-menu ul ul li {
    display: inline-block;
    margin-right: 50px;
}

.overlay-menu ul ul a {
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 1px;
    color: #fff;
}

/* ==================================================
   OVERLAY INFO
================================================== */

.overlay-info {
    width: 20%;
    padding: 40px 0px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: #fff;
}

.overlay-info img {
    max-width: 160px;
	margin: 0px auto 10px;
}

.overlay-info p {
	text-align: center;
    font-size: 15px;
    line-height: 1.9;
}
/* ==================================================
   HERO 
================================================== */

.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    text-align: left;
    width: calc(100% - 60px);
    margin: 30px auto;
    border-radius: 20px;
    padding: 0 80px;
    overflow: hidden;
}

/* Video background */
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* Overlay mask */
.hero-overlay {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(37, 55, 71, 0.65);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    margin-top: 170px;
    color: #fff;
    width: 1240px;
    text-align: left;
}

.hero-content h1,
.hero-content p {
    color: #fff;
}

.hero-content h1 {
    margin-bottom: 0px !important;
}

.hero-content p {
    line-height: 1.4;
    max-width: 450px;
    font-size: 33px;
}
/* ==================================================
   INTRO
================================================== */

.intro {
    text-align: center;
	max-width: 870px;
	margin: 0px auto;
}

/* ==================================================
   TAN BLOCK
================================================== */

.tan-block {
    background: var(--lttaupe);
}

.tan-block .wrap {
    display: flex;
    align-items: center;
    gap: 60px;
}

.tan-block .content,
.tan-block .image {
    flex: 1;
}

.tan-block .content p {
	font-size: 22px;
	margin-bottom: 40px;
	max-width: 524px;
}

.tan-block .image img {
	border-radius: 30px;
}

.tan-block a.button {
	margin-right: 20px;
}

/* ==================================================
   IMAGE BLOCK
================================================== */

.image-block {
	padding: 60px 0px;
}

.image-block .wrap {
	max-width: calc(100% - 60px);
}

.image-block img {
    border-radius: 16px;
}

/* ==================================================
   PROCESS
================================================== */

.process {
    text-align: center;
}

.process h2 {
	margin-bottom: 40px;
}

.process p {
	max-width: 760px;
	margin: 0px auto 40px;
}
/* ==========================================
   MAP SECTION
================================================== */

.map {
    background: var(--navy);
}

.map .wrap {
	padding: 0px;
    position: relative;
    background: white;
    border-radius: 30px;
}

.map-copy {
	display: block;
	position: absolute;
	left: 50px;
	top: 50px;
	z-index: 100;
}

.map-copy.hidden {
    display: none !important;
}

.map h2 {
    display: inline-block;
    padding: 0px;
    margin-bottom: 0px;
    border: 0px;
}

.map p {
    margin-top: 10px;
    font-size: 33px;
    max-width: 793px;
    line-height: 1.5;
}


#project-map {
    border-radius: 30px;
    width: 100%;
    height: 600px;
    overflow: hidden;
}

/* Override Google Maps Info Window */
.gm-style-iw-d {
    padding: 4px 8px 4px 12px !important;
    border-radius: 0 !important;
}

.gm-style-iw {
    border-radius: 0 !important;
}

.gm-style .gm-style-iw-c {
    padding: 0 !important;
    border-radius: 0 !important;
}

/* Hide/reposition close button */
.gm-style-iw-tc {
    display: none !important;
}

button.gm-ui-hover-effect {
    right: -8px !important;
    top: -8px !important;
}

/* Tighten up the content */
.gm-style-iw-d h3 {
    margin: 0 0 2px 0 !important;
}

.gm-style-iw-d p {
    margin: 0 !important;
}
/* ==================================================
   FOOTER
================================================== */

.footer-widgets,
.site-footer {
    background: var(--navy);
    color: #fff;
    background-image: url('/wp-content/uploads/2026/02/footer.jpg');
	background-repeat: no-repeat;
	background-size: 100%;
}

.footer-widgets {
	padding-top: 50px;
	border-top: 1px solid var(--orange);
}

.footer-widgets .wrap {
	display: flex;
	flex-wrap: wrap;
}

.footer-widgets section {
	padding: 0px;
}

.footer-widgets a:hover {
	color: var(--taupe);
}

.footer-widgets-1 {
	width: 30%;
	padding-right: 100px;
}

.footer-widgets-2 {
	width: 70%;
	text-align: right;
}

ul#menu-footer-menu {
	list-style-type: none;
	display: flex;
	justify-content: flex-end;
	border-top: 1px solid var(--orange);
	padding-top: 30px;
}

ul#menu-footer-menu li {
	padding: 0px 20px;
	font-size: 18px;
}

#text-3 {
	text-align: center;
	font-size: 18px;
}

#text-4 {
	display: flex;
	height: auto;
	min-height: 120px;
	justify-content: flex-end;
	align-items: flex-end;
	font-weight: 800;
	font-size: 18px;
	text-transform: uppercase;
	letter-spacing: 3px;
}

#text-4 .widget-wrap {
	display: flex;
	justify-content: flex-end;
	align-items: flex-end;
}

#text-4 p {
	margin: 0px;
}

#media_image-3 .widget-wrap {
	display: flex;
    justify-content: center;
}

#media_image-3 img {
	margin-bottom: 20px;
	max-width: 200px !important;
}

.site-footer {
	padding: 5px 0px;
}

.site-footer .wrap {
	max-width: 100%;
}

.copyright p {
    text-align: right;
	color: var(--taupe);
	font-size: 12px;
	line-height: 16px;
}

#back-to-top {
	position: fixed;
	background-color: var(--orange);
	border-radius: 100px;
	bottom: 20px;
	right: 20px;
	border: 0px;
	z-index: 99999;
	padding: 20px;
     opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

#back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
}

#back-to-top img {
	max-width: 20px;
}

/* ==================================================
   UTILITIES
================================================== */

.text-center { text-align: center; }
.dark { background: var(--navy); color: #fff; }
.orange { color: var(--orange); }
.taupe { color: var(--taupe); }


/* ==================================================
   INTERIORS
================================================== */


.page-content {
    padding: 60px 0 80px;
}

.page-content p a {
	text-decoration: underline;
}

/* ==================================================
   BLOCKQUOTE — EDITORIAL CALLOUT
================================================== */

.wp-block-quote {
    background: var(--lttaupe);
    margin: 60px 0 100px;
    padding: 200px 0;
    border: none;
    border-radius: 0;
    width: 100vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    overflow: hidden;
}

.wp-block-quote p {
    font-size: clamp(28px, 3vw, 38px);
    font-weight: 300;
	font-style: normal;
    line-height: 1.45;
    color: var(--navy);
    text-align: left;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.wp-block-quote p strong {
	font-weight: 700;
}

.wp-block-quote::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 15px;
    height: 100%;
    background: var(--orange);
}

.wp-block-quote::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 15px;
    height: 100%;
    background: var(--orange);
}

.wp-block-quote cite,
.wp-block-quote footer {
    display: block;
    max-width: 1200px;
    margin: 30px auto 0;
    padding: 0 40px;
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--taupe);
    font-style: normal;
}

/* ==================================================
   TEAM GRID (ARCHIVE PAGE)
================================================== */


.page-template-team .page-content h1 {
	display: inline-block;
	margin: 0px auto 30px;
}

.page-template-team .page-content .wrap {
	flex-direction: column;
	display: flex;
}
.page-template-team .page-content h2 {
	    font-size: 33px;
		display: inline-block;
    font-weight: 400;
    margin-bottom: 20px;
	text-transform: none;
	background: none;
	border: 0px;
	letter-spacing: 0px;
	
}
.team-grid {
    padding: 0px 0 100px;
}
.team-members {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}
.team-member {
	border-radius: 0px 0px 20px 20px;
    text-align: center;
    background: var(--lttaupe);
    transition: .3s ease;
}
.team-member-link {
    display: block;
    text-decoration: none;
    color: inherit;
}
.team-headshot {
    width: 100%;
    height:340px;
    overflow: hidden;
    margin-bottom: 30px;
}
.team-headshot img {
    width: 100%;
    height: 100%;
	object-position: top;
    object-fit: cover;
    transition: .3s ease;
}
.team-member:hover .team-headshot img {
    transform: scale(1.05);
}
.team-name {
    font-size: 24px;
    color: var(--navy);
    margin: 0px;
	line-height: 28px;
    padding: 0 20px;
	text-align: left;
    font-weight: 400;
}
.team-title {
	margin: 0px 0px 30px;
    font-size: 15px;
	text-align: left;
    color: var(--orange);
    font-weight: 500;
    padding: 0 20px;
}
.read-bio {
    text-align: right;
    display: block;
    font-size: 14px;
    letter-spacing: 3px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 30px;
    margin-right: 0px;
    margin: 0px 18px 20px 0px;
    transition: .3s ease;
}
.read-bio .arrow {
    display: inline-block;
    margin-left: 10px;
    transition: .3s ease;
}
.team-member:hover .read-bio {
    color: var(--orange);
}
.team-member:hover .arrow {
    transform: translateX(5px);
}
/* ==================================================
   SHARED HERO (TEAM + NEWS)
================================================== */

.team-member-hero,
.news-hero {
    background-image: url('/wp-content/uploads/2026/02/footer.jpg');
    background-color: var(--navy);
    background-size: cover;
    background-position: center;
    min-height: 500px;
    display: flex;
    align-items: flex-start;
    padding: 80px 0 150px;
    position: relative;
}

.team-hero-overlay,
.news-hero-overlay {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.team-hero-left,
.news-hero-left {
    flex: 1;
    color: white;
    padding-top: 40px;
}

.team-hero-left h1{
    font-size: 72px;
    line-height: 1;
    margin-bottom: 20px;
    color: white;
}

.news-hero-left h1 {
    font-size: 36px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: white;
}

/* Team name styling only */
.team-hero-left h1 .first-name {
    font-weight: 300;
    display: block;
}

.team-hero-left h1 strong {
    font-weight: 600;
    display: block;
}

/* News date */
.news-date {
    color: var(--taupe);
    font-weight: 400;
    margin: 0;
}

/* Shared back link */
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-size: 12px;
    letter-spacing: 3px;
    font-weight: 600;
    text-decoration: none;
    margin-bottom: 40px;
    transition: .3s ease;
}

.back-link:hover {
    color: var(--taupe);
}

.back-arrow {
    font-size: 16px;
}

.team-hero-right {
    flex-shrink: 0;
    width: 500px;
    position: relative;
    z-index: 10;
}

.news-hero-right {
    flex-shrink: 0;
    width: 500px;
	min-height: 500px;
    position: relative;
    z-index: 10;
}

.team-hero-right img,
.news-hero-right img {
    width: 100%;
    border-radius: 20px;
    height: auto;
    display: block;
}

.news-hero-right img {
	object-fit: cover;
	position: absolute;
	height: 100%;
	width: 100%;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-size: 12px;
    letter-spacing: 3px;
    font-weight: 600;
    text-decoration: none;
    margin-bottom: 40px;
    transition: .3s ease;
}
.back-link:hover {
    color: var(--taupe);
}
.back-arrow {
    font-size: 16px;
}
.team-hero-left h1 {
    font-size: 72px;
    line-height: 1;
    margin-bottom: 20px;
    color: white;
}
.team-hero-left h1 .first-name {
    font-weight: 300;
    display: block;
}
.team-hero-left h1 strong {
    font-weight: 600;
    display: block;
}
.hero-member-title {
    color: var(--taupe);
    text-transform: none;
    letter-spacing: 1px;
    font-weight: 400;
    margin: 0;
}
.team-hero-right {
    flex-shrink: 0;
    width: 500px;
    position: relative;
    z-index: 10;
}
.team-hero-right img {
    width: 100%;
	border-radius: 20px;
    height: auto;
    display: block;
}

/* Bio Section */
.team-bio-section, .news-content-section {
    padding: 180px 0 100px;
    margin-top: -250px;
    position: relative;
	background-image: url(/wp-content/themes/rccs/images/bkg.jpg);
	background-position: top center;
	background-attachment: fixed;
	background-size: cover;
    z-index: 5;
}

.team-bio-content p {
    margin-bottom: 24px;
}
.member-email {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--orange);
}
.member-email a {
    color: var(--navy);
    font-weight: 600;
    text-decoration: none;
    transition: .3s ease;
}
.member-email a:hover {
    color: var(--orange);
}
/* ==========================================
   PROCESS 
========================================== */

.page-content__wrap {
    display: flex;
    gap: 80px;
    align-items: center;
}

.page-content__main {
    flex: 1;
}

.page-content__main p {
	margin-bottom: 0px;
}

.page-content__sidebar {
    flex: 1;
    background: var(--maroon);
	border-left: 15px solid var(--orange);
    color: #fff;
    border-radius: 0px 20px 20px 0px;
    padding: 40px;
    margin-top: 10px;
}

.page-content__sidebar h2 {
    color: #fff;
	border: 0px;
	padding: 0px;
    background: transparent;
    margin-bottom: 24px;
}

.red-cedar-way__copy p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 16px;
}

.red-cedar-way__copy p:last-child {
    margin-bottom: 0;
}

.red-cedar-way__copy strong {
    color: var(--taupe);
    font-weight: 600;
}

.red-cedar-way__copy ul {
    padding-left: 20px;
    margin: 0 0 16px;
}

.red-cedar-way__copy li {
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255,255,255,0.85);
    margin-bottom: 8px;
}
.process-section {
    background: var(--navy);
    color: white;
    padding: 120px 0;
    position: relative;
}

.process-wrap {
    max-width: 1100px;
    padding: 0 40px;
    margin: 0 auto;
    position: relative;
}

/* ==================================================
   PROCESS NAVIGATION
================================================== */
.process-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 60px;
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
    flex-wrap: wrap;
}

.process-nav:first-of-type {
    margin-top: 0;
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.process-nav:last-of-type {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.process-nav__label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--taupe);
    font-weight: 600;
    flex: 0 0 100%;
    text-align: center;
}

.process-nav__list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.process-nav__item {
    margin: 0;
    padding: 0;
}

.process-nav__link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
	padding-top: 5px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.process-nav__link:hover {
    background: var(--orange);
    border-color: var(--orange);
    color: var(--navy);
}

.process-nav__link:focus {
    outline: 2px solid var(--orange);
    outline-offset: 2px;
}

/* ==================================================
   PROCESS STEPS
================================================== */
.process-step {
    padding: 10px 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 70px;
    scroll-margin-top: 80px; /* Space for fixed header if added */
}

.process-step:last-child {
    margin-bottom: 0;
}

.process-step#step-10 .process-content__left::after {
    display: none;
}

.process-node {
    position: absolute;
    left: 15%;
    transform: translateX(-50%);
    width: 112px;
    text-align: center;
    z-index: 3;
}

.process-content {
    width: 75%;
    margin-left: auto;
    color: white;
}

.process-content h2 {
    border-color: transparent;
    padding: 0;
    background-color: transparent;
    color: white;
    margin-left: 0;
    margin-right: auto;
}

.process-content h3 {
    color: white;
    font-size: 28px;
    line-height: 1.25;
}

.process-content p,
.process-content ul {
    font-size: 18px;
    text-align: left;
}

/* Icon circle */
.icon-circle {
    width: 90px;
    height: 90px;
    background: var(--orange);
    border-radius: 50%;
    display: flex;
    border: 1px solid var(--navy);
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    position: relative;
}

.icon-circle::before {
    content: "";
    position: absolute;
    top: -6px;
    left: -6px;
    width: calc(100% + 12px);
    height: calc(100% + 12px);
    border-radius: 50%;
    border: 1px solid white;
}

.process-wrap .process-step:last-child .icon-circle::after { 
    border: 0px solid white;
}

.icon-circle img {
    max-width: 40px;
}

.step-number {
    background-color: var(--navy);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    color: var(--taupe);
}

/* ==================================================
   PROCESS STEPS WITH LISTS
================================================== */
.process-step.has-list .process-content {
    width: 85%;
    margin-left: auto;
    display: flex;
    align-items: flex-start;
    gap: 60px;
}

.process-content__left {
    flex: 0 0 112px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
}

.process-content__left::after {
    content: "";
    position: absolute;
    top: 130px;
    bottom: -130px;
    left: 50%;
    height: 200%;
    transform: translateX(-50%);
    width: 2px;
    background: rgba(255, 255, 255, 0.2);
    z-index: 0;
}

.process-content__left .icon-circle {
    position: relative;
    z-index: 1;
    margin-bottom: 12px;
}

.process-content__left .step-number {
    position: relative;
    z-index: 1;
}

.process-step:last-child .process-content__left::after {
    display: none;
}

.process-content__right {
    flex: 1;
    padding-top: 10px;
}

.process-content__right ul,
.process-content__right ol {
    padding-left: 20px;
    margin: 0;
}

.process-content__right li {
    font-size: 18px;
    color: white;
    line-height: 1.8;
    margin-bottom: 10px;
}
/* ==================================================
   NEWS 
================================================== */

.news-grid {
    padding: 0 0 100px;
}

.news-posts {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.news-post {
    background: var(--lttaupe);
    transition: .3s ease;
	border-radius: 0px 0px 20px 20px;
}

.news-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.news-thumb {
    width: 100%;
    height: 320px;
    overflow: hidden;
}

.news-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .3s ease;
}

.news-post:hover .news-thumb img {
    transform: scale(1.05);
}

.news-title {
    font-size: 28px;
	line-height: 35px;
    padding: 40px 20px 0px;
	text-transform: none;
	font-weight: 400;
    margin: 0;
	letter-spacing: 0px;
	background-color: transparent;
	border: 0px;
    color: var(--navy);
}

.news-meta {
	margin: 0px;
    padding: 0 20px 0px;
    font-size: 14px;
    color: var(--orange);
}

.news-excerpt {
	padding: 0 20px 0px;
}

.read-more {
    display: block;
    text-align: right;
    padding: 0 20px 20px;
    font-size: 14px;
    letter-spacing: 2px;
    font-weight: 600;
    color: var(--navy);
    transition: .3s ease;
}

.news-post:hover .read-more {
    color: var(--orange);
}


.news-pagination {
    margin-top: 60px;
    text-align: center;
}

.news-pagination ul {
    list-style: none;
    display: inline-flex;
    gap: 10px;
    padding: 0;
    margin: 0;
}

.news-pagination li {
    display: inline-block;
}

.news-pagination a,
.news-pagination span {
    display: inline-block;
    padding: 10px 14px;
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
    background: var(--lttaupe);
    text-decoration: none;
    transition: .3s ease;
}

.news-pagination a:hover {
    background: var(--orange);
    color: white;
}

.news-pagination .current {
    background: var(--navy);
    color: white;
}

/* ==================================================
   PROJECT ARCHIVE
================================================== */

.projects-section {
    padding: 0 0 120px;
}

.projects-section.full-width {
    width: 90%;
	margin: 0px auto;
    max-width: none;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    width: 100%;
}

.project-card {
    background: var(--lttaupe);
    overflow: hidden;
    border-radius: 0px 0px 20px 20px;
    transition: 0.5s all;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.0);
    height: 100%;
}

.project-card:hover {
    transform: translateY(-6px);
	transition: 0.5s all;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.03);
}

.project-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.project-thumb {
    height: 320px;
    width: 100%;
    overflow: hidden;
    background-color: #f5f5f5;
}

.project-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}

.project-card:hover .project-thumb img {
    transform: scale(1.05);
}

.project-card-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    padding: 40px 30px 20px;
}

.project-title {
    font-size: 26px;
    color: var(--navy);
    margin: 0px;
    line-height: 28px;
    padding: 0px;
    letter-spacing: 0px;
    background-color: transparent;
    text-transform: none;
    border: 0px;
    text-align: left;
    font-weight: 400;
}

.project-location {
    margin: 0px 0px 30px;
    font-size: 15px;
    text-align: left;
    color: var(--orange);
    font-weight: 500;
}

.project-cats {
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: auto;
}

.project-cats span {
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--navy);
}

/* ==================================================
   SINGLE PROJECT
================================================== */

.project-hero {
	min-height: 70vh;
    background-size: cover;
    background-position: center;
    padding: 180px 0 120px;
    position: relative;
	z-index: 50;
}

.project-content-section {
    z-index: 100;
    overflow: visible;
    display: block;
    position: relative;
}

.project-content-add-section {
	padding-top: 0px;
}

.project-content-section .wrap {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.project-content p {
	font-size: 17px;
	line-height: 1.8;
}

.project-intro-card {
    margin-top: -150px;
    background: var(--maroon);
	border-left: 23px solid var(--orange);
    padding: 50px;
    border-radius: 0 30px 30px 0;
    color: #fff;
	z-index: 100;
    max-width: 550px;
	display: flex;
	align-items: center;
}

.project-intro-card h1 {
    color: #fff;
	font-size: 28px;
	text-transform: uppercase;
	font-weight: 800;
	letter-spacing: 3px;
	line-height: 1.3;
    margin-bottom: 20px;
}

.project-meta {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 40px;
    align-content: start;
}

.meta-item {
    margin: 0;
}

.project-meta .project-cta {
    grid-column: 1 / -1;
    margin-top: 20px;
	text-align: center;
}


.meta-label {
    display: block;
    font-size: 15px;
    letter-spacing: 3px;
    	color: var(--navy);
	font-weight: 800;
}

.meta-value {
    display: block;
    font-size: 17px;
}

.project-cta {
    margin-top: 30px;
    display: inline-block;
}
.project-gallery {
    padding: 120px 0;
    background: var(--lttaupe);
    overflow: hidden;
}

/* Make slider full width */
.project-gallery-slider {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

/* Slide spacing */
.gallery-slide {
    padding: 0 25px;
}

/* Image wrapper controls height */
.gallery-image {
    height: 700px;
    border-radius: 24px;
    overflow: hidden;
}

/* Crop behavior */
.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Dim non-centered slides */
.slick-slide {
    opacity: 0.35;
    transition: opacity .4s ease;
}

.slick-center {
    opacity: 1;
}

.project-gallery .custom-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background-color: var(--orange);
    border-radius: 50%;
    border: none;
    cursor: pointer;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s ease;
}

/* Remove default slick arrow icon */
.project-gallery .custom-arrow:before {
    display: none;
}

/* Arrow image */
.project-gallery .custom-arrow::after {
    content: "";
    width: 40px;
    height: 40px;
    background-image: url('/wp-content/uploads/2026/02/arrow-up.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* Positioning */
.project-gallery .slick-prev {
    left: 60px;
}

.project-gallery .slick-next {
    right: 60px;
}

/* Rotate arrows */
.project-gallery .slick-prev::after {
    transform: rotate(-90deg);
}

.project-gallery .slick-next::after {
    transform: rotate(90deg);
}

/* Hover effect */
.project-gallery .custom-arrow:hover {
    background-color: var(--navy);
}

/* ===================================
   GALLERY LIGHTBOX STYLES
   =================================== */

.gallery-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
}

.gallery-lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
}

.lightbox-container {
    position: relative;
    z-index: 10000;
    width: 90%;
    max-width: 1000px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    flex: 1;
    text-align: center;
}

.lightbox-image {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    display: block;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
    z-index: 10001;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    opacity: 0.7;
}

.lightbox-close {
    top: 20px;
    right: 20px;
}

.lightbox-prev {
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 14px;
    background: rgba(0, 0, 0, 0.5);
    padding: 8px 16px;
    border-radius: 4px;
    white-space: nowrap;
}

.project-gallery-slider .gallery-slide {
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.project-gallery-slider .gallery-slide:hover {
    opacity: 0.9;
}
.content-two-column {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: start;
}

.content-two-column .column:first-child {
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100%;
}

.content-two-column .column:first-child h2 {
  margin-top: 0;
}

.content-two-column .column:first-child p {
  margin-bottom: 0;
	text-align: left;
}

.content-two-column .column:first-child ul,
.content-two-column .column:first-child ol {
  margin-bottom: 0;
  padding-left: 20px;
}

.content-two-column .column:first-child li {
  margin-bottom: 12px;
	text-align: left !important;
}

/* Project Highlights Box */
.content-two-column .column:last-child {
  background-color: var(--lttaupe);
  padding: 30px;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.content-two-column .column:last-child h4 {
  margin-top: 0;
  margin-bottom: 10px;
	text-align: center;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--navy);
}

.content-two-column .column:last-child p {
  margin-bottom: 16px;
  font-size: 15px;
  line-height: 1.6;
}

.content-two-column .column:last-child p:last-child {
  margin-bottom: 0;
}

.content-two-column .column:last-child ul,
.content-two-column .column:last-child ol {
  margin-bottom: 0;
  padding-left: 20px;
	text-align: left;
}

.content-two-column .column:last-child li {
  margin-bottom: 12px;
  font-size: 15px;
}

/* ==================================================
   TESTIMONIALS (2 COLUMN MASONRY)
================================================== */

.page-template-testimonials h1 {
	font-size: 60px;
    line-height: 70px;
    margin-top: 41px;
}

.testimonials-section {
    padding: 0 40px 120px;
}


/* 2-column layout */
.grid-item {
    width: calc(50% - 15px);
    margin-bottom: 30px;
}

/* Testimonial Card */
.testimonial-card {
    padding: 40px;
	border-radius: 30px;
    background-color: var(--lttaupe);
    transition: transform .3s ease;
}

.testimonial-card:hover {
    transform: translateY(-6px);
}

.testimonial-card blockquote {
    margin: 0 0 24px;
}

.testimonial-card blockquote p {
	font-style: italic;
}

.testimonial-author {
    display: block;
    color: var(--navy);
    font-weight: 600;
}

.testimonial-company {
    color: var(--orange);
}

/* Featured Images */
.testimonial-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    display: block;
}

.partners-section {
    background-color: var(--lttaupe);
    padding: 80px 0;
    text-align: center;
}


.partners-heading {
    display: inline-block;
    margin-bottom: 50px;
}

.partners-slider-wrap {
    position: relative;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 90px;
}

.partners-slider .slick-track {
    display: flex;
    align-items: center;
}

/* Fixed-size logo cell so all logos appear at a consistent visual weight */
.partners-slide {
    padding: 50px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    height: 100px;
}

.partners-slider .slick-slide { opacity: 1 }

.partners-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 1;
    transition: filter 0.3s ease, opacity 0.3s ease;
}

.partners-slide img:hover {
    opacity: 1;
}

/* Arrow buttons */
.partners-slider-wrap .slick-prev,
.partners-slider-wrap .slick-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    border-radius: 50%;
    background-color: var(--orange);
    border: none;
    cursor: pointer;
    padding: 0;
    display: block;
	transition: 0.3s all;
}


.partners-slider-wrap .slick-prev:hover,
.partners-slider-wrap .slick-next:hover {
	transition: 0.3s all;
    background-color: var(--navy);
}

/* Hide default slick icon */
.partners-slider-wrap .slick-prev:before,
.partners-slider-wrap .slick-next:before {
    display: none;
}

/* Arrow via pseudo-element background image */
.partners-slider-wrap .slick-prev::after,
.partners-slider-wrap .slick-next::after {
    content: "";
    display: block;
	width: 40px;
	margin: 10px;
    height: 40px;
    background-image: url('/wp-content/uploads/2026/02/arrow-up.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.partners-slider-wrap .slick-prev {
    left: -60px;
    transform: translateY(-50%) rotate(-90deg);
}

.partners-slider-wrap .slick-next {
    right: -60px;
    transform: translateY(-50%) rotate(90deg);
}



/* ==================================================
   PROJECT FILTERS
================================================== */

.project-filters {
    padding: 0 0 60px;
}

.project-filter-links {
    display: flex;
	justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.filter-link.active {
    color: var(--orange);
    border-bottom: 2px solid var(--orange);
}


.filter-link {
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--navy);
    padding-bottom: 6px;
    border-bottom: 2px solid transparent;
    transition: .3s ease;
}

.filter-link:hover {
    color: var(--orange);
    border-color: var(--orange);
}

/* ==================================================
   ABOUT PAGE
================================================== */
.about-intro {
    padding: 80px 0 100px;
}
.about-intro__wrap {
    display: flex;
    align-items: center;
    gap: 80px;
}
.about-intro--centered .about-intro__wrap {
    flex-direction: column;
    text-align: center;
    max-width: 870px;
}
.about-intro--centered .entry-title {
    margin-bottom: 20px;
}
.about-intro--split .about-intro__content {
    flex: 1;
}
.about-intro--split .about-intro__image {
    flex-shrink: 0;
    width: 480px;
}
.about-intro--split .about-intro__image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    display: block;
}

.about-intro--split .about-intro__image img + img {
    margin-top: 10px;
}
.about-intro__additional-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 10px;
}
.about-intro__additional-images img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}
.about-stats {
    background: var(--navy);
    padding: 100px 0;
    color: #fff;
}
.about-stats .wrap {
    max-width: 100%;
}
.about-stats__headline {
    text-align: center;
    margin-bottom: 60px;
}
.about-stats__headline h3 {
    color: #fff;
}
.about-stats__grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.stat-item {
    flex: 1;
    min-width: 180px;
    text-align: center;
    padding: 40px 30px;
    border-right: 1px solid rgba(255,255,255,0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.stat-item:last-child {
    border-right: none;
}
.stat-number {
    font-size: 62px;
	margin: 0px !important;
    font-weight: 700;
    color: var(--orange);
    line-height: 1;
    display: block;
}
.stat-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    color: var(--taupe);
    display: block;
    max-width: 260px;
    line-height: 1.5;
}
.addl {
    padding-top: 0px;
}
.about-addl {
    text-align: center;
}

.about-addl ul {
	list-style-type: none;
	display: flex;
	flex-direction: row;
	gap: 30px;
	flex-wrap: wrap;
	justify-content: center;
	margin: 0px !important;
	line-height: 28px;
	padding: 0px !important;
	
}

.about-addl ul li:first-child {
	padding: 40px 80px;
}

.about-addl ul li {
	width: 300px;
	color: var(--orange);
	font-size: 18px;
	line-height: 22px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	border: 1px solid var(--lttaupe);
	background-color: white;
	padding: 40px;
}
.about-mission h3 {
    font-size: 45px;
    display: inline-block;
    margin-bottom: 0px;
}
.about-mission .content {
    flex: 2;
}

.about-mission.tan-block .wrap {
    gap: 0px;
}


.about-mission__image {
    flex: 1;
}
.about-mission__image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    display: block;
}

.about-values {
    padding: 100px 0;
}
.about-values__header {
    text-align: center;
    margin-bottom: 60px;
}
.values-slider, .plan-gallery-slider {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}
.values-slider .slick-slide, .plan-gallery-slider .slick-slide {
    opacity: 1;
}
.value-copy {
    z-index: 1;
    text-align: center;
    margin-top: -60px;
    display: block;
    position: relative;
}
.value-item {
    margin: 0 15px;
}
.value-number {
    opacity: 0.7;
    z-index: -1;
    text-align: center;
    font-size: 122px;
    font-weight: 800;
    color: var(--lttaupe);
    line-height: 1;
    margin-bottom: 0;
}
/* Dots */
.values-slider .slick-dots, .plan-gallery-slider .slick-dots {
    list-style: none;
    display: flex !important;
    justify-content: center;
    gap: 8px;
    padding: 0;
    margin: 40px 0 0;
}
.values-slider .slick-dots li button, .plan-gallery-slider .slick-dots li button {
    font-size: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: var(--taupe);
    cursor: pointer;
    padding: 0;
    transition: background .3s ease;
}
.values-slider .slick-dots li.slick-active button, .plan-gallery-slider .slick-dots li.slick-active button {
    background: var(--orange);
}

/* ==================================================
   GRAVITY FORMS — RESET + FLOATING LABEL
================================================== */

#field_1_9 {
	display: none;
}

/* --- Hard reset GF grid/table chrome --- */
.gform_wrapper.gravity-theme .gform_body,
.gform_wrapper.gravity-theme .gform_fields,
.gform_wrapper.gravity-theme .gfield,
.gform_wrapper.gravity-theme .ginput_container,
.gform_wrapper.gravity-theme .gfield_label,
.gform_wrapper.gravity-theme .gfield_description {
    border: none !important;
    background: none !important;
    box-shadow: none !important;
}

.gform_wrapper.gravity-theme .gfield {
    margin: 0 !important;
    padding: 0 !important;
    position: relative !important;
}

.gform_wrapper {
	background: white;
}

/* --- Inputs --- */
.gform_wrapper.gravity-theme input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]),
.gform_wrapper.gravity-theme select,
.gform_wrapper.gravity-theme textarea, .gform_wrapper.gravity-theme .gfield textarea.medium {
    background: transparent !important;
    border: none !important;
    border-bottom: 1px solid #E8E4DE !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    font-family: "Poppins", sans-serif;
    padding: 22px 0 8px !important;
    margin: 0 !important;
    font-size: 16px !important;
    color: var(--navy) !important;
    outline: none !important;
    line-height: 1.4 !important;
    transition: border-color 0.3s ease !important;
    appearance: none !important;
    -webkit-appearance: none !important;
}

.gform_wrapper.gravity-theme input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]):focus,
.gform_wrapper.gravity-theme select:focus,
.gform_wrapper.gravity-theme textarea:focus {
    border-bottom-color: var(--navy) !important;
    box-shadow: none !important;
    outline: none !important;
}

/* Animated underline */
.gform_wrapper .ginput_container {
    position: relative !important;
}

.gform_wrapper .ginput_container::after {
    content: "" !important;
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 0 !important;
    height: 2px !important;
    background: var(--navy) !important;
    transition: width 0.3s ease !important;
}

.gform_wrapper .ginput_container.ginput_container_textarea::after {
	 bottom: 15px !important;
}

.gform_wrapper .gfield:focus-within .ginput_container::after {
    width: 100% !important;
}

/* Hide placeholder */
.gform_wrapper input::placeholder,
.gform_wrapper textarea::placeholder,
.gform_wrapper select option {
    color: transparent !important;
}

.gform_wrapper.gravity-theme .gfield_header_item, .gform_wrapper.gravity-theme .gform_fileupload_rules, .gform_wrapper.gravity-theme .ginput_complex label {
    font-size: 15px;
    padding-top: 0px;
}

/* --- Floating Label --- */
.gform_wrapper.gravity-theme .gfield_label {
    position: absolute !important;
    top: 24px !important;
    left: 0 !important;
    font-size: 15px !important;
    font-weight: 400 !important;
    color: var(--navy) !important;
    letter-spacing: 0.5px !important;
    text-transform: none !important;
    pointer-events: none !important;
    transition: top 0.2s ease, font-size 0.2s ease, color 0.2s ease, letter-spacing 0.2s ease, font-weight 0.2s ease, text-transform 0.2s ease !important;
    z-index: 1 !important;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1 !important;
    width: auto !important;
}

/* Floated state — focus or has value */
.gform_wrapper.gravity-theme .gfield select:valid + .gfield_label,
.gform_wrapper.gravity-theme .gfield input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]):not(:placeholder-shown) + .gfield_label,
.gform_wrapper.gravity-theme .gfield.field-active .gfield_label,
.gform_wrapper.gravity-theme .gfield:focus-within .gfield_label {
    top: 2px !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    letter-spacing: 2px !important;
    text-transform: uppercase !important;
    color: var(--navy) !important;
}

.gform_wrapper .gfield_required {
    color: var(--orange) !important;
    margin-left: 2px !important;
}

/* --- Textarea --- */
.gform_wrapper.gravity-theme textarea {
    min-height: 140px !important;
    resize: vertical !important;
    padding-top: 28px !important;
}


/* --- Name field (complex) --- */
.gform_wrapper .ginput_complex {
    display: flex !important;
    gap: 40px !important;
}



.gform_wrapper .ginput_complex span {
    flex: 1 !important;
    position: relative !important;
}

.gform_wrapper .ginput_complex .name_first label,
.gform_wrapper .ginput_complex .name_last label {
    position: absolute !important;
    top: 2px !important;
    left: 0 !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    letter-spacing: 2px !important;
    text-transform: uppercase !important;
    color: var(--navy) !important;
    pointer-events: none !important;
    margin: 0 !important;
}

.gform_wrapper.gravity-theme .field_sublabel_above .description, .gform_wrapper.gravity-theme .field_sublabel_above .gfield_description, .gform_wrapper.gravity-theme .field_sublabel_above .gsection_description {
	display: none;
}
/* --- Validation --- */
.gform_wrapper.gravity-theme .gfield_error input,
.gform_wrapper.gravity-theme .gfield_error select,
.gform_wrapper.gravity-theme .gfield_error textarea {
    border-bottom-color: var(--orange) !important;
}

.gform_wrapper.gravity-theme .gfield_error .gfield_label {
    color: var(--orange) !important;
}

.gform_wrapper.gravity-theme .gfield_validation_message,
.gform_wrapper.gravity-theme .validation_message {
    font-size: 11px !important;
    color: var(--orange) !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    border: none !important;
    padding: 4px 0 0 !important;
    background: none !important;
    margin: 0 !important;
}

.gform_wrapper.gravity-theme .gform_validation_errors {
    background: rgba(186, 91, 60, 0.06) !important;
    border: none !important;
    border-left: 3px solid var(--orange) !important;
    padding: 20px 24px !important;
    margin-bottom: 30px !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

.gform_wrapper.gravity-theme .gform_validation_errors > h2 {
    font-size: 12px !important;
    color: var(--orange) !important;
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    letter-spacing: 2px !important;
    margin: 0 !important;
    text-transform: uppercase !important;
}

.gform_wrapper.gravity-theme #field_submit, .gform_wrapper.gravity-theme .gform_footer {
    display: flex;
    justify-content: center;
}

/* --- Character count --- */
.gform_wrapper .charleft,
.gform_wrapper .ginput_counter {
    font-size: 12px !important;
    color: var(--taupe) !important;
    text-align: right !important;
    margin-top: 6px !important;
    border: none !important;
}

/* --- Confirmation --- */
.gform_confirmation_wrapper .gform_confirmation_message {
    font-size: 18px;
    color: var(--navy);
    padding: 40px;
    border-left: 4px solid var(--orange);
    background: var(--lttaupe);
    line-height: 1.8;
}


/* ==================================================
   PLANS PAGE
================================================== */

.page-template-plans .video-block {
	padding-top: 0px;
}




.quality-section {
  padding: 60px 0;
  color: white;
}

.quality-section .quality-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.quality-section .quality-content h2,
.quality-section .quality-content h3 {
  color: white;
}

.quality-section .quality-content p {
  font-size: 18px;
  line-height: 1.8;
}

.rendering-section {
  padding: 60px 0;
}

.rendering-container {
  position: relative;
  display: flex;
  justify-content: center;
}

.rendering-image-wrapper {
  position: relative;
  max-width: 100%;
  display: inline-block;
}

.rendering-image {
  display: block;
  max-width: 100%;
  height: auto;
  width: 100%;
}

.tooltips-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.tooltip-marker {
  position: absolute;
  transform: translate(-50%, -50%);
  cursor: pointer;
  pointer-events: auto;
  z-index: 10;
}

.tooltip-dot {
  display: block;
  width: 32px;
  height: 32px;
  background-color: var(--navy);
  border: 3px solid white;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tooltip-marker:hover .tooltip-dot,
.tooltip-marker.active .tooltip-dot {
  background-color: var(--accent-color);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transform: scale(1.1);
}

.tooltip-content {
  position: absolute;
  background-color: white;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 16px;
  font-size: 14px;
  line-height: 1.6;
  max-width: 250px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  pointer-events: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 20;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  white-space: normal;
}

.tooltip-marker:hover .tooltip-content,
.tooltip-marker.active .tooltip-content {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(-12px);
}

/* ===================================
   PLANS SECTION
   =================================== */

.plans-section {
  padding: 70px 0;
  background: var(--lttaupe);
}

.plans-section .wrap {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

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

.plans-intro h2,
.plans-intro h3 {
  margin-top: 0;
}

.plans-intro h2 {
	background: transparent;
	text-align: left;
	padding: 0px;
	border: 0px;
	margin: 0px auto 30px;
	font-size: 22px;
	display: block;
}

.plans-intro p {
  margin-bottom: 0;
}

.plans-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.plan-lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.plan-lightbox-inner {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
}

.plan-lightbox-inner img {
    display: block;
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.5);
}

.plan-lightbox-close {
    position: absolute;
    top: -16px;
    right: -16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--navy);
    color: #fff;
    border: none;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

body.plan-lightbox-open {
    overflow: hidden;
}
/* ===================================
   PLAN CARD - 3 COLUMN LAYOUT
   =================================== */

.plan-card {
  display: grid;
  grid-template-columns: 1fr 1fr 2.3fr;
  gap: 20px;
  align-items: start;
  background-color: white;
  padding: 50px;
  border-radius: 30px;
  padding-bottom: 40px;
}

.plan-card:last-child {
  border-bottom: none;
}

/* LEFT COLUMN - TITLE, DESCRIPTION, BUTTON */
.plan-card__left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.plan-card__title {
  font-size: 26px;
  line-height: 30px;
  font-weight: 400;
  color: var(--navy);
  margin: 0;
  background-color: transparent;
  border: 0;
  text-transform: none;
  letter-spacing: 0;
  padding: 0;
	position: relative;
}

.plan-card__title::after {
	display: block;
	margin: 10px 0px 0px;
	height: 3px;
	background-color: var(--orange);
	width: 60px;
	content: "";
	position: relative;
}

.plan-card__description {
  font-size: 16px;
  line-height: 1.8;
  color: var(--navy);
}

.plan-card__description p:last-child {
  margin-bottom: 0;
	margin-top: 0px;
}

.plan-card__button {
  align-self: flex-start;
  background-color: var(--orange);
  color: white;
    cursor: pointer;
  text-decoration: none;
  transition: background-color 0.3s ease;
  border: none;
}

.plan-card__button:hover {
  background-color: var(--navy);
}

/* MIDDLE COLUMN - FEATURES */
.plan-card__middle {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.plan-card__features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 0;
}

.plan-card__features h4 {
  font-size: 16px;
  font-weight: 500;
  color: var(--orange);
  margin: 0;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.plan-card__features ul,
.plan-card__features ol {
  list-style: disc;
  padding-left: 20px;
  margin: 0;
}

.plan-card__features li {
  margin-bottom: 6px;
  font-size: 16px;
  line-height: 1.8;
  color: var(--navy);
}

.plan-card__features li:last-child {
  margin-bottom: 0;
}

.plan-card__features p {
  margin: 0 0 12px 0;
  font-size: 16px;
  line-height: 1.8;
  color: var(--navy);
}

.plan-card__features p:last-child {
  margin-bottom: 0;
}

/* RIGHT COLUMN - GALLERY */
.plan-card__right {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.plan-card__gallery {
  width: 100%;
}

.plan-gallery-slider {
  width: 100%;
}

.plan-gallery-slider .gallery-slide {
  width: 100%;
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  overflow: hidden;
}

.plan-gallery-slider .gallery-slide img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  border-radius: 8px;
}

.values-slider .slick-dots, .plan-gallery-slider .slick-dots {
    margin: 10px 0 0;
}


/* ==================================================
   VIDEO BLOCK 
================================================== */

.video-block {
    padding: 60px 0px;
}

.video-block .wrap {
    max-width: calc(100% - 60px);
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 30px;
    background: transparent;
}

.video-element {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
	background: transparent;
    height: 100%;
    border-radius: 30px;
}

/* Play Button Overlay */
.video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--orange);
    border: none;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: white;
}

.video-play-button:hover {
    background: var(--navy);
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.video-play-button svg {
    width: 40px;
    height: 40px;
    margin-left: 4px; /* Optical adjustment for play triangle */
}

/* Hide play button when video is playing */
.video-element::-webkit-media-controls-start-playback-button {
    display: none;
}

/* ==================================================
   RESPONSIVE
================================================== */

@media (min-width: 1400px) {
    .projects-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }
}

@media (min-width: 1024px) and (max-width: 1399px) {
    .projects-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
}

@media (max-width: 1150px) {
.genesis-nav-menu a {
    font-size: 15px;
	}
}

@media (max-width: 1100px) {
.genesis-nav-menu a {
    font-size: 13px;
	}
}

@media (max-width: 1000px) {
    body:not(.home) .genesis-nav-menu {
        display: none;
    }

    body:not(.home) #mobile-menu-toggle {
        display: flex;
    }
	
	  .projects-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .project-thumb {
        height: 250px;
    }

    .project-card-content {
        padding: 30px 25px 15px;
    }

    .project-title {
        font-size: 22px;
        line-height: 24px;
    }
	
	
}

@media (max-width: 900px) {
    /* Base */
    html {
        font-size: 18px;
        background-size: cover;
    }

    section {
        padding: 60px 0;
        text-align: center;
    }

    .wrap {
        padding: 0 20px;
    }

    /* Typography */
    h1, .page-template-testimonials h1 {
        font-size: 48px;
        line-height: 1;
    }

    h2, .page-template-team h1.entry-title, .blog h1.entry-title {
        font-size: 16px;
        padding: 15px 30px;
    }

    h3, .page-template-team .page-content h2 {
        font-size: 28px;
		line-height: 1.3;
    }

    p {
        font-size: 18px;
    }

    /* Buttons */
    .button,
    input[type="submit"],
    li#menu-item-50 {
        font-size: 16px;
        padding: 20px 35px 18px;
        margin: 0 auto;
        display: inline-block;
    }

    /* Header */
    .site-header {
        padding: 15px 0;
    }
	
	.site-header.sticky {
		display: none;
	}

    .title-area img {
        margin-left: 20px;
        max-height: 100px;
        margin-top: 10px;
    }
	
	.home .title-area img {
    max-height: 120px;
    margin-left: 30px;
    margin-top: 0px;
}

    #mobile-menu-toggle {
        top: 35px;
        right: 30px;
    }
	
	ul#menu-main-menu > li:not(#menu-item-50) > a {
    font-size:18px;
		line-height: 28px;
	}
	
	    .submenu-toggle {
        font-size: 20px;
    margin-top: 2px;
    }
	
	.overlay-menu li.submenu-open > ul {
		padding-left: 0px;
		margin: 10px 0px 0px;
		font-size: 16px;
	}
	
	
	.overlay-menu {
    justify-content: flex-start;
}

    /* Hero */
   
	

     .hero {
        min-height: 84vh;
        width: 100%;
        margin: 0px auto;
        padding: 0px;
        text-align: center;
        border-radius: 0px 0px 20px 20px;
        justify-content: center;
    }
	.hero::after {
		border-radius: 0px 0px 20px 20px;
	}

    .hero-content {
        margin-top: 0;
        width: 100%;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 48px;
    }

    .hero-content p {
        font-size: 22px;
        max-width: 100%;
        margin: 10px auto 20px;
    }

    /* Intro */
    .intro {
        max-width: 100%;
        text-align: center;
    }

    /* Tan Block */
    .tan-block .wrap {
        flex-direction: column;
        text-align: center;
    }

    .tan-block .content p {
        font-size: 18px;
        max-width: 100%;
        margin: 0 auto 30px;
    }

    .tan-block a.button {
        margin: 10px auto;
        display: block;
        width: fit-content;
    }

    .tan-block .image {
        margin-top: 30px;
    }

    /* Image Block */
    .image-block {
        padding: 40px 0;
    }

    .image-block .wrap {
        max-width: calc(100% - 30px);
    }

    /* Process */
    .process h2 {
        margin-bottom: 30px;
    }

    .process p {
        max-width: 100%;
    }

    /* Map */
    .map .wrap {
        padding: 30px 20px;
    }

    .map p {
        font-size: 22px;
        max-width: 100%;
        text-align: center;
    }

    .map-section {
        padding: 60px 0;
    }
	
	

    #project-map {
        height: 400px;
    }
	
	

    /* Mobile Menu Overlay */
    .overlay-menu {
        width: 100%;
        padding: 120px 40px;
        border-right: none;
		text-align: center;
    }

    .overlay-info {
       width: 100%;
    }

	.overlay-wrap {
		flex-wrap: wrap;
	}

    ul#menu-main-menu > li:not(#menu-item-50) {
        margin-bottom: 10px;
    }

    .overlay-menu ul ul li {
        display: block;
        margin-right: 0;
    }

     /* Footer */
    .footer-widgets .wrap {
        flex-direction: column;
        text-align: center;
    }

    .footer-widgets-1 {
        width: 100%;
        padding-right: 0;
        margin-bottom: 40px;
    }

    .footer-widgets-2 {
        width: 100%;
        text-align: center;
    }

    ul#menu-footer-menu {
        flex-direction: column;
        align-items: center;
        gap: 20px;
		margin-left: 0px;
		padding-left: 0px;
        padding-top: 20px;
    }

    ul#menu-footer-menu li {
        padding: 0;
    }

    #text-3 {
        margin-bottom: 30px;
    }

    #text-4 {
        justify-content: center;
        text-align: center;
        min-height: auto;
    }

    #text-4 .widget-wrap {
        justify-content: center;
    }

    .copyright p {
        text-align: center;
        padding: 20px 0;
    }

    #back-to-top {
        bottom: 15px;
        right: 15px;
        padding: 15px;
    }
	

.wp-block-quote {
    margin: 40px 0 30px;
    padding: 60px 0;
}
	
    .team-members {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 30px;
    }

    .team-headshot {
        height: 240px;
    }

    .team-name {
        font-size: 20px;
    }

    .team-title {
        font-size: 14px;
    }

    .team-member-hero {
        min-height: auto;
        padding: 60px 0 100px;
    }

    .team-hero-overlay, .news-hero-overlay {
        flex-direction: column;
        gap: 40px;
        text-align: center;
        align-items: center;
    }

    .team-hero-left, .news-hero-left{
        order: 2;
        padding-top: 0;
    }

    .team-hero-right, .news-hero-right {
        order: 1;
        width: 100%;
        max-width: 400px;
    }

    .team-hero-left h1, .news-hero-left h1 {
        font-size: 48px;
    }

    .back-link {
        justify-content: center;
    }

    .team-bio-content  {
        font-size: 16px;
    }

    .team-bio-section, .news-content-section {
        margin-top: 0px;
    padding: 80px 0 100px;
    }
	
    .news-posts {
        grid-template-columns: 1fr;
    }
	
		
	
	.project-content-section .wrap {
    justify-content: center;
    align-items: center;
		gap: 20px;
}
	
	 .process-line {
        left: 30px;
    }

    .process-step {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 60px;
    }

    .process-step .process-content {
        width: 100%;
        text-align: left !important;
        margin-top: 20px;
    }

    .process-node {
        position: absolute;
        left: 0;
        top: 0;
    }
	
	.grid-item {
        width: 100%;
    }
	
	   .projects-grid {
        grid-template-columns: 1fr;
    }
  .partners-slider-wrap {
        padding: 0 70px;
    }

    .partners-slide {
        height: 80px;
		padding: 10px;
    }
	
	
    /* Intro */
    .about-intro__wrap {
        flex-direction: column;
        gap: 40px;
    }

    .about-intro--split .about-intro__image {
        width: 100%;
    }

    /* Stats */
    .about-stats__grid {
        flex-wrap: wrap;
    }

    .stat-item {
        flex: 1 1 45%;
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.15);
    }

    .stat-item:nth-last-child(-n+1) {
        border-bottom: none;
    }

    /* Mission */
    .about-mission .wrap {
        flex-direction: column;
        gap: 40px;
    }

    .about-mission .content,
    .about-mission__image {
        flex: unset;
        width: 100%;
    }

    /* Values */
    .values-slider {
        padding: 0 60px;
    }
	
	 .page-content__wrap {
        flex-direction: column;
        gap: 40px;
    }
    
    .page-content__main,
    .page-content__sidebar {
        flex: 1;
        width: 100%;
    }
    
    .page-content__sidebar {
        border-left: none;
        border-top: 15px solid var(--orange);
        border-radius: 20px 20px 20px 0px;
        padding: 30px;
    }
    
    .process-wrap {
        padding: 0 30px;
    }
    
    .process-node {
        left: 10%;
        width: 90px;
    }
    
    .process-content {
        width: 70%;
    }
    
    .process-step.has-list .process-content {
        width: 80%;
        gap: 40px;
    }
    
    .process-content h3 {
        font-size: 24px;
    }
    
    .process-content p,
    .process-content ul {
        font-size: 16px;
    }
    
    .icon-circle {
        width: 80px;
        height: 80px;
    }
    
    .icon-circle img {
        max-width: 35px;
    }
    
    .process-section {
        padding: 80px 0;
    }
    
    .process-step {
        margin-bottom: 50px;
    }
	
	 .video-block {
        padding: 40px 0;
    }

    .video-block .wrap {
        max-width: calc(100% - 30px);
    }

    .video-play-button {
        width: 70px;
        height: 70px;
    }

    .video-play-button svg {
        width: 35px;
        height: 35px;
    }
	
	
	.map-copy {
    left: 0px;
    top: 30px;
    padding: 0px 30px;
	}
	
	    #project-map {
        height: 700px;
    }
	
	.news-post {
    text-align: left;
	}
	
	.news-grid {
    padding: 0;
}
	
	 .plans-section {
    padding: 50px 0;
  }

  .plans-section .wrap {
    gap: 40px;
  }

 .plan-card {
  grid-template-columns: 1fr;
  gap: 30px;
  padding: 40px;
}

.plan-card__left {
  gap: 20px;
}

.plan-card__title {
  font-size: 22px;
  line-height: 26px;
}

.plan-card__title::after {
  width: 50px;
	margin: 10px auto 0px;
}

.plan-card__button {
  padding: 11px 24px;
  font-size: 15px;
}

.plan-card__middle {
  gap: 20px;
}

.plan-card__features h4 {
  font-size: 15px;
  margin: 0px !important;
}
	.plan-card__features ul {
		list-style-type: none;
		margin-left: 0px;
		padding-left: 0px;
	}
	
	.plan-card__features {
    gap: 6px;
	}
	
.plan-card__features li {
  font-size: 15px;
  margin-bottom: 0px;
}

.plan-card__description {
  font-size: 15px;
}

.plan-card__right {
  gap: 20px;
}

.plans-intro {
  margin-bottom: 40px;
  padding: 32px;
}
	
	    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
    }
    
    .lightbox-prev svg,
    .lightbox-next svg {
        width: 24px;
        height: 24px;
    }
	
	  .lightbox-container {
        width: 95%;
    }
    
    .lightbox-close {
        top: 10px;
        right: 10px;
    }
    
    .lightbox-prev,
    .lightbox-next {
        left: 10px;
        right: 10px;
        width: 36px;
        height: 36px;
    }
    
    .lightbox-prev {
        left: 10px;
    }
    
    .lightbox-next {
        right: 10px;
        left: auto;
    }
    
    .lightbox-counter {
        bottom: 10px;
        font-size: 12px;
        padding: 6px 12px;
    }
	
.content-two-column {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .content-two-column .column:last-child {
    padding: 25px;
  }
	
	 .quality-section {
    padding: 40px 0;
  }

  .quality-section .quality-content p {
    font-size: 16px;
  }
	
	 .tooltip-dot {
    width: 28px;
    height: 28px;
    border-width: 2px;
  }

  .tooltip-content {
    max-width: 200px;
    font-size: 13px;
    padding: 12px;
  }
	
}

@media (max-width: 600px) {
   .page-template-testimonials h1, h1 {
        font-size: 36px;
    }

    h2, .page-template-team h1.entry-title, .blog h1.entry-title {
        font-size: 14px;
        padding: 12px 25px;
        letter-spacing: 2px;
    }

    h3, .page-template-team .page-content h2 {
        font-size: 24px;
    }

   .hero-content h1 {
        font-size: 36px;
    }

    .hero-content p {
        padding: 10px 0px;
        font-size: 18px;
    }

    .overlay-menu {
        padding: 100px 20px;
    }


    .button,
    input[type="submit"],
    li#menu-item-50 {
        font-size: 14px;
        padding: 18px 30px 16px !important;
        letter-spacing: 2px;
    }
	
	/* Team Grid */
    .team-members {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .team-headshot {
        height: 300px;
    }

    /* Single Team Member */
    .team-hero-overlay, .news-hero-overlay {
        padding: 0 20px;
    }

    .team-hero-left h1 {
        font-size: 36px;
    }

    .hero-member-title {
        font-size: 14px;
    }

    .team-hero-right {
        max-width: 300px;
    }

    .team-member-hero {
        padding: 60px 0 50px;
    }

	
	.team-bio-content p {
		text-align: left;
	}
	
	.gallery-image {
    height: 300px;
	}
	
	.project-meta {
		display: block;
	}
	
	.meta-item {
		padding: 10px 0px;
	}
	
	.project-gallery .slick-prev {
    left: 30px;
}
	.project-gallery .slick-next {
    right: 30px;
}
	
	.project-gallery .custom-arrow {
    width: 45px;
    height: 45px;
	}

  .project-gallery {
    padding: 70px 0;
}

	  .partners-section {
        padding: 60px 0;
    }

    .partners-slider-wrap {
        padding: 0 60px;
    }

    .partners-slide {
        height: 65px;
    }

    .partners-slider-wrap .slick-prev,
    .partners-slider-wrap .slick-next {
        width: 38px;
        height: 38px;
    }

    .partners-slider-wrap .slick-prev img,
    .partners-slider-wrap .slick-next img {
        width: 16px;
    }
	
	 /* Intro */
    .about-intro {
        padding: 60px 0;
    }

    /* Stats */
    .stat-item {
        flex: 1 1 100%;
        border-bottom: 1px solid rgba(255,255,255,0.15);
    }

    .stat-item:last-child {
        border-bottom: none;
    }

    .stat-number {
        font-size: 48px;
    }

    /* Values */
    .values-slider {
        padding: 0 50px;
    }

    .value-number {
        font-size: 80px;
    }
	
	.projects-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .project-thumb {
        height: 220px;
    }

    .project-card-content {
        padding: 25px 20px 15px;
    }

    .project-title {
        font-size: 18px;
        line-height: 20px;
    }

    .project-location {
        margin-bottom: 20px;
        font-size: 13px;
    }

    .project-cats span {
        font-size: 12px;
        letter-spacing: 1px;
    }
	
	.page-content__wrap {
        gap: 20px;
    }
    
    .page-content__sidebar {
        border-top: 12px solid var(--orange);
        border-radius: 15px 15px 15px 0px;
        padding: 20px;
    }
    
    .page-content__sidebar h2 {
        margin-bottom: 16px;
        font-size: 20px;
    }
    
    .red-cedar-way__copy p {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 12px;
    }
    
    .red-cedar-way__copy li {
        font-size: 15px;
        margin-bottom: 6px;
    }
    
    .process-wrap {
        padding: 0 20px;
        max-width: 100%;
    }
    
    .process-node {
        position: static;
        transform: none;
        width: 100%;
        margin-bottom: 20px;
    }
    
    .process-step {
        flex-direction: column;
        align-items: center;
        margin-bottom: 50px;
        padding: 0;
    }
    
    .process-content {
        width: 100%;
        margin-left: 0;
        padding-left: 0;
        text-align: center;
    }
    
    .process-step.has-list .process-content {
        width: 100%;
        flex-direction: column;
        gap: 20px;
        padding-left: 0;
    }
	.process-content h2 {
		text-align: center;
		display: block;
	}
    
    .process-content h3 {
        font-size: 20px;
		text-align: center;
        line-height: 1.3;
    }
    
    .process-content p,
    .process-content ul {
        font-size: 15px;
        line-height: 1.6;
    }
    
    .process-content__left {
        position: static;
        flex: 1;
        width: 100%;
        text-align: center;
    }
    
    .process-content__left::after {
        display: none;
    }
    
    .process-content__right {
        padding-top: 0;
        width: 100%;
    }
    
    .process-content__right ul,
    .process-content__right ol {
        padding-left: 20px;
        text-align: left;
    }
    
    .icon-circle {
        width: 70px;
        height: 70px;
        margin: 0 auto 12px;
    }
    
    .icon-circle::before {
        top: -4px;
        left: -4px;
        width: calc(100% + 8px);
        height: calc(100% + 8px);
    }
    
    .icon-circle img {
        max-width: 42px;
    }
    
    .step-number {
        font-size: 12px;
        letter-spacing: 2px;
    }
    
    .process-section {
        padding: 60px 0;
    }
    
    .process-content__right li {
        font-size: 15px;
        margin-bottom: 8px;
    }
	
	.footer-widgets, .site-footer {
		background-size: cover;
	}
	
	.project-hero {
    min-height: 42vh;
	}
	
	.project-intro-card h1 {
    font-size: 23px;
	}
	
	.team-bio-section, .news-content-section {
        padding: 30px 0 40px;
    }
	
	.video-block {
        padding: 30px 0;
    }

    .video-block .wrap {
        max-width: 100%;
    }

    .video-container {
        border-radius: 12px;
    }

    .video-element {
        border-radius: 12px;
    }

    .video-play-button {
        width: 60px;
        height: 60px;
    }

    .video-play-button svg {
        width: 30px;
        height: 30px;
    }
	
	.home .title-area img {
    max-height: 100px;
    margin-left: 10px;
    margin-top: 10px;
}
	    #project-map {
        height: 500px;
    }
	
	.site-footer {
		background-image: none;
	}
	
	    #text-3, .footer-widgets-1 {
        margin-bottom: 0px;
    }
	
	    ul#menu-footer-menu {
        gap: 0px;
	}
	
	li#menu-item-50 {
        display: block;
        margin-top: 44px;
        margin-left: 0px !important;
        width: 166px;
    }
	
	h1.entry-title, .page-template-testimonials h1, h1 {
    font-size: 33px;
    line-height: 1.2;
	}
	
	.page-template-testimonials h1 {
		max-width: 330px;
		margin: 0px auto;
	}
	
	.about-stats__headline {
    margin-bottom: 0px;
}
	
	.about-mission__copy {
		text-align: left;
	}
	
	.page-content {
    padding: 40px 0;
}
	
	.testimonials-section {
    padding: 0px 30px;
}
	
	.testimonial-card {
    padding: 20px 30px;
		font-size: 16px;
		line-height: 1.3;
		text-align: left;
	}
	
	.testimonial-card p {
			font-size: 16px;
		line-height: 1.5;
	}
	
	.partners-slider-wrap .slick-prev::after, .partners-slider-wrap .slick-next::after {
    width: 26px;
    margin: 6px;
    height: 26px;
	}

	.wp-block-buttons>.wp-block-button {
    margin: 0 auto;
}
	
	.plans-section {
    padding: 30px 0;
  }

  .plans-section .wrap {
    gap: 30px;
  }

  .plans-intro {
    padding: 24px;
    margin-bottom: 30px;
  }

  .plans-intro h2 {
    font-size: 22px;
  }

  .plan-card {
  grid-template-columns: 1fr;
  gap: 20px;
  padding: 24px;
  padding-bottom: 30px;
}

.plan-card__left {
  gap: 16px;
}

.plan-card__title {
  font-size: 18px;
  line-height: 22px;
}

.plan-card__title::after {
  width: 40px;
  margin: 8px auto 0;
}

.plan-card__button {
  padding: 10px 20px;
  font-size: 14px;
}

.plan-card__middle {
  gap: 16px;
}

.plan-card__features h4 {
  font-size: 14px;
  margin: 5px 0 8px 0;
}

.plan-card__features li {
  font-size: 14px;
  margin-bottom: 4px;
}

.plan-card__features p {
  font-size: 14px;
  margin: 0 0 10px 0;
}

.plan-card__description {
  font-size: 14px;
}

.plan-card__right {
  gap: 16px;
}

.plan-gallery-slider .gallery-slide img {
  border-radius: 6px;
}

.plans-intro {
  padding: 20px;
  margin-bottom: 20px;
}

.plans-intro h2 {
  font-size: 18px;
  margin-bottom: 16px;
}

  .plan-gallery-slider .gallery-slide img {
    border-radius: 6px;
  }
	 .process-nav {
        gap: 15px;
        margin-bottom: 40px;
        padding-bottom: 30px;
    }

    .process-nav__label {
        margin-bottom: 10px;
    }

    .process-nav__list {
        gap: 10px;
    }

    .process-nav__link {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
	
	
	.about-addl ul {
		gap: 17px;
	}
	.about-addl ul li, 
.about-addl ul li:first-child {
	padding: 20px;
}
	
	
	
	 .quality-section {
    padding: 30px 0;
  }

  .quality-section .quality-content p {
    font-size: 14px;
  }
	
	.tooltip-dot {
    width: 24px;
    height: 24px;
    border-width: 2px;
  }

  .tooltip-content {
    max-width: 150px;
    font-size: 12px;
    padding: 10px;
  }
	
	
	
}