* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

:root {
--green: #063b2d;
--green-dark: #03271f;
--gold: #f4b400;
--gold-light: #ffc928;
--white: #ffffff;
--off-white: #f4f2ec;
--text: #e9e7df;
--muted: #b8b8ae;
--border: rgba(255, 255, 255, 0.16);
--container: 1380px;
}

html {
scroll-behavior: smooth;
}

body {
font-family: "DM Sans", sans-serif;
color: var(--white);
background: var(--green-dark);
}

body.menu-open {
overflow: hidden;
}

a {
color: inherit;
text-decoration: none;
}

.container {
width: min(calc(100% - 80px), var(--container));
margin-inline: auto;
}


/* =========================================================
NAVBAR
========================================================= */

.site-header {
position: fixed;
inset: 0 0 auto;
z-index: 1000;
transition: background 0.35s ease, box-shadow 0.35s ease;
}

.site-header.scrolled {
background: rgba(3, 39, 31, 0.94);
backdrop-filter: blur(14px);
box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18);
}

.navbar {
min-height: 104px;
display: flex;
align-items: center;
justify-content: space-between;
gap: 40px;
}

.brand {
width: 220px;
display: flex;
align-items: center;
flex-shrink: 0;
}

.brand img {
width: 100%;
height: auto;
display: block;
}

.nav-menu {
display: flex;
align-items: center;
gap: 34px;
}

.nav-link {
position: relative;
color: rgba(255, 255, 255, 0.82);
font-size: 14px;
font-weight: 600;
letter-spacing: 0.02em;
transition: color 0.25s ease;
}

.nav-link::after {
content: "";
position: absolute;
left: 0;
right: 0;
bottom: -8px;
width: 0;
height: 2px;
margin: auto;
background: var(--gold);
transition: width 0.25s ease;
}

.nav-link:hover,
.nav-link.active {
color: var(--white);
}

.nav-link:hover::after,
.nav-link.active::after {
width: 18px;
}

.nav-cta {
display: inline-flex;
align-items: center;
gap: 12px;
padding: 13px 20px;
color: var(--green-dark);
background: var(--gold);
font-size: 13px;
font-weight: 800;
border-radius: 2px;
transition: transform 0.25s ease, background 0.25s ease;
}

.nav-cta:hover {
background: var(--gold-light);
transform: translateY(-2px);
}

.nav-cta span {
font-size: 17px;
}

.menu-toggle {
display: none;
width: 46px;
height: 46px;
border: 1px solid var(--border);
background: transparent;
cursor: pointer;
padding: 11px;
}

.menu-toggle span {
display: block;
width: 100%;
height: 2px;
margin: 5px 0;
background: var(--white);
transition: transform 0.25s ease, opacity 0.25s ease;
}


/* =========================================================
HERO
========================================================= */

.hero {
position: relative;
min-height: 100vh;
min-height: 760px;
display: flex;
align-items: center;
overflow: hidden;
background: var(--green-dark);
}

.hero-background {
position: absolute;
inset: 0;
background-image:
url("https://images.unsplash.com/photo-1541888946425-d81bb19240f5?auto=format&fit=crop&w=2400&q=85");
background-size: cover;
background-position: center;
transform: scale(1.02);
}

.hero-overlay {
position: absolute;
inset: 0;
background:
linear-gradient(
90deg,
rgba(3, 27, 22, 0.96) 0%,
rgba(3, 27, 22, 0.78) 42%,
rgba(3, 27, 22, 0.30) 78%,
rgba(3, 27, 22, 0.58) 100%
),
linear-gradient(
0deg,
rgba(3, 27, 22, 0.74) 0%,
transparent 35%,
rgba(3, 27, 22, 0.20) 100%
);
}

.hero-content {
position: relative;
z-index: 2;
padding-top: 110px;
}

.eyebrow {
display: flex;
align-items: center;
gap: 12px;
color: var(--gold);
font-size: 12px;
font-weight: 700;
letter-spacing: 0.15em;
text-transform: uppercase;
}

.eyebrow span {
width: 30px;
height: 1px;
background: var(--gold);
}

.hero h1 {
max-width: 850px;
margin-top: 24px;
font-family: "Manrope", sans-serif;
font-size: clamp(54px, 7vw, 104px);
line-height: 0.98;
letter-spacing: -0.055em;
font-weight: 800;
}

.hero h1 em {
color: var(--gold);
font-style: normal;
}

.hero-text {
max-width: 570px;
margin-top: 28px;
color: var(--text);
font-size: 17px;
line-height: 1.75;
}

.hero-actions {
display: flex;
flex-wrap: wrap;
gap: 14px;
margin-top: 36px;
}

.button {
min-height: 54px;
display: inline-flex;
align-items: center;
justify-content: center;
gap: 15px;
padding: 0 24px;
border: 1px solid transparent;
font-size: 13px;
font-weight: 800;
transition:
transform 0.25s ease,
background 0.25s ease,
border-color 0.25s ease;
}

.button:hover {
transform: translateY(-3px);
}

.button-primary {
color: var(--green-dark);
background: var(--gold);
}

.button-primary:hover {
background: var(--gold-light);
}

.button-secondary {
border-color: rgba(255, 255, 255, 0.45);
color: var(--white);
background: rgba(255, 255, 255, 0.03);
}

.button-secondary:hover {
border-color: var(--white);
background: rgba(255, 255, 255, 0.10);
}

.hero-bottom {
width: 100%;
display: flex;
justify-content: space-between;
align-items: center;
margin-top: 100px;
padding-bottom: 30px;
color: rgba(255, 255, 255, 0.65);
font-size: 11px;
letter-spacing: 0.08em;
text-transform: uppercase;
}

.hero-scroll,
.hero-location {
display: flex;
align-items: center;
gap: 12px;
}

.scroll-line {
width: 42px;
height: 1px;
background: var(--gold);
}

.location-dot {
width: 7px;
height: 7px;
border-radius: 50%;
background: var(--gold);
}


/* =========================================================
TABLET + MOBILE
========================================================= */

@media (max-width: 900px) {

.container {
width: min(calc(100% - 40px), var(--container));
}

.navbar {
min-height: 86px;
}

.brand {
width: 185px;
}


/* ---------- MOBILE MENU BUTTON ---------- */

.menu-toggle {
display: block;
position: relative;
z-index: 1002;
}


/* ---------- MOBILE SIDE MENU ---------- */

.nav-menu {
position: fixed;
top: 0;
right: 0;

width: 52%;
height: 100vh;

padding: 110px 35px 40px;

display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: flex-start;
gap: 28px;

background: rgba(3, 39, 31, 0.98);

box-shadow: -15px 0 40px rgba(0, 0, 0, 0.25);

transform: translateX(100%);
transition: transform 0.35s ease;
}

.nav-menu.open {
transform: translateX(0);
}


/* ---------- MOBILE LINKS ---------- */

.nav-link {
font-size: 17px;
font-weight: 600;
color: rgba(255, 255, 255, 0.85);
}

.nav-link::after {
display: none;
}

.nav-link:hover,
.nav-link.active {
color: var(--gold);
}


/* ---------- MOBILE CTA ---------- */

.nav-cta {
margin-top: 10px;
width: 100%;
justify-content: center;
text-align: center;
}


/* ---------- HAMBURGER ANIMATION ---------- */

.menu-toggle.open span:first-child {
transform: translateY(7px) rotate(45deg);
}

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

.menu-toggle.open span:last-child {
transform: translateY(-7px) rotate(-45deg);
}


/* ---------- MOBILE HERO ---------- */

.hero {
min-height: 760px;
}

.hero-overlay {
background:
linear-gradient(
90deg,
rgba(3, 27, 22, 0.92),
rgba(3, 27, 22, 0.55)
),
linear-gradient(
0deg,
rgba(3, 27, 22, 0.82),
transparent 55%
);
}

.hero-content {
padding-top: 100px;
}

.hero h1 {
font-size: clamp(48px, 12vw, 76px);
}

.hero-bottom {
margin-top: 70px;
}
}


/* =========================================================
SMALL PHONES
========================================================= */

@media (max-width: 560px) {

.container {
width: calc(100% - 30px);
}

.brand {
width: 160px;
}


/* ---------- SMALL PHONE SIDE MENU ---------- */

.nav-menu {
width: 72%;
padding-left: 28px;
padding-right: 28px;
}


/* ---------- SMALL PHONE HERO ---------- */

.hero {
min-height: 720px;
}

.hero-content {
padding-top: 80px;
}

.hero h1 {
font-size: clamp(45px, 14vw, 62px);
}

.hero-text {
font-size: 15px;
line-height: 1.65;
}

.hero-actions {
flex-direction: column;
align-items: stretch;
}

.button {
width: 100%;
}

.hero-bottom {
margin-top: 55px;
align-items: flex-start;
gap: 20px;
flex-direction: column;
}

.hero-location {
display: none;
}
}

/* =========================================================
NEMSHED INTRO LOADER
========================================================= */

.site-loader {
position: fixed;
inset: 0;
z-index: 9999;

display: flex;
align-items: center;
justify-content: center;

background: var(--green-dark);

opacity: 1;
visibility: visible;

transition:
opacity 0.8s ease,
visibility 0.8s ease;
}


/* Loader disappearing state */

.site-loader.loader-hidden {
opacity: 0;
visibility: hidden;
pointer-events: none;
}


/* Main loader content */

.loader-content {
width: min(500px, 80%);
display: flex;
flex-direction: column;
align-items: center;

opacity: 0;
transform: translateY(15px);

animation: loaderContentReveal 1.2s ease forwards;
}


/* Logo */

.loader-logo {
width: min(330px, 75%);
margin: 25px 0;
}

.loader-logo img {
width: 100%;
height: auto;
display: block;
}


/* Gold architectural lines */

.loader-line {
width: 0;
height: 1px;
background: var(--gold);

animation: loaderLineReveal 1.2s ease forwards;
}

.loader-line-top {
animation-delay: 0.35s;
}

.loader-line-bottom {
animation-delay: 0.55s;
}


/* Small text underneath */

.loader-tagline {
margin-top: 18px;

color: rgba(255, 255, 255, 0.65);

font-family: "DM Sans", sans-serif;
font-size: 10px;
font-weight: 700;

letter-spacing: 0.28em;
text-transform: uppercase;

opacity: 0;

animation: loaderTaglineReveal 1s ease 0.9s forwards;
}


/* =========================================================
LOADER ANIMATIONS
========================================================= */

@keyframes loaderContentReveal {
from {
opacity: 0;
transform: translateY(15px);
}

to {
opacity: 1;
transform: translateY(0);
}
}


@keyframes loaderLineReveal {
from {
width: 0;
}

to {
width: 100%;
}
}


@keyframes loaderTaglineReveal {
from {
opacity: 0;
transform: translateY(6px);
}

to {
opacity: 1;
transform: translateY(0);
}
}


/* =========================================================
MOBILE LOADER
========================================================= */

@media (max-width: 560px) {

.loader-logo {
width: min(280px, 82%);
margin: 20px 0;
}

.loader-tagline {
font-size: 8px;
letter-spacing: 0.20em;
}
}


/* =========================================================
SECTION 02 — COMPANY INTRODUCTION
========================================================= */

.company-intro {
position: relative;
padding: 150px 0;
overflow: hidden;
background: var(--green-dark);
}


/* ---------- MAIN GRID ---------- */

.company-intro-grid {
display: grid;
grid-template-columns: 0.9fr 1.1fr;
align-items: center;
gap: 90px;
}


/* ---------- TEXT CONTENT ---------- */

.company-intro-content {
max-width: 620px;
}

.section-eyebrow {
display: flex;
align-items: center;
gap: 12px;

color: var(--gold);

font-size: 12px;
font-weight: 700;

letter-spacing: 0.15em;
text-transform: uppercase;
}

.section-eyebrow span {
width: 30px;
height: 1px;

background: var(--gold);
}


/* ---------- HEADING ---------- */

.company-intro h2 {
max-width: 650px;

margin-top: 25px;

font-family: "Manrope", sans-serif;

font-size: clamp(48px, 5vw, 76px);
line-height: 1.03;

letter-spacing: -0.055em;
font-weight: 800;

color: var(--white);
}

.company-intro h2 em {
display: block;

color: var(--gold);
font-style: normal;
}


/* ---------- DESCRIPTION ---------- */

.company-intro-text {
max-width: 540px;

margin-top: 32px;

color: var(--text);

font-size: 16px;
line-height: 1.8;
}


/* ---------- DISCOVER LINK ---------- */

.intro-link {
position: relative;

display: inline-flex;
align-items: center;
gap: 14px;

margin-top: 38px;
padding-bottom: 9px;

color: var(--white);

font-size: 13px;
font-weight: 800;

letter-spacing: 0.08em;
text-transform: uppercase;

transition: color 0.25s ease;
}

.intro-link::after {
content: "";

position: absolute;
left: 0;
bottom: 0;

width: 100%;
height: 1px;

background: var(--gold);

transform-origin: left;
transition: transform 0.3s ease;
}

.intro-link:hover {
color: var(--gold);
}

.intro-link:hover::after {
transform: scaleX(0.45);
}

.intro-link span {
color: var(--gold);

font-size: 18px;

transition: transform 0.25s ease;
}

.intro-link:hover span {
transform: translate(3px, -3px);
}


/* =========================================================
COMPANY IMAGE
========================================================= */

.company-intro-image {
position: relative;

padding-right: 26px;
padding-bottom: 26px;
}


/* ---------- IMAGE FRAME ---------- */

.intro-image-frame {
position: relative;

width: 100%;
height: 610px;

overflow: hidden;

background: #071f19;

border: 1px solid rgba(244, 180, 0, 0.25);
}


/* Image */

.intro-image-frame img {
width: 100%;
height: 100%;

display: block;

object-fit: cover;

/*
* Keeps the important construction activity
* toward the center of the frame.
*/
object-position: center center;

transition: transform 0.9s ease;
}


/* Subtle image overlay */

.intro-image-frame::after {
content: "";

position: absolute;
inset: 0;

pointer-events: none;

background:
linear-gradient(
180deg,
rgba(3, 39, 31, 0.02) 0%,
rgba(3, 39, 31, 0.04) 50%,
rgba(3, 39, 31, 0.20) 100%
);
}


/* Image hover */

.company-intro-image:hover .intro-image-frame img {
transform: scale(1.035);
}


/* =========================================================
GOLD CORNER DETAIL
========================================================= */

.intro-image-accent {
position: absolute;

right: 0;
bottom: 0;

width: 110px;
height: 110px;

z-index: 3;

background: var(--gold);
}


/* Horizontal architectural line */

.intro-image-accent::before {
content: "";

position: absolute;

top: 22px;
left: 22px;

width: 38px;
height: 1px;

background: var(--green-dark);
}


/* Vertical architectural line */

.intro-image-accent::after {
content: "";

position: absolute;

top: 22px;
left: 22px;

width: 1px;
height: 38px;

background: var(--green-dark);
}


/* =========================================================
SUBTLE ARCHITECTURAL BACKGROUND DETAIL
========================================================= */

.company-intro::after {
content: "";

position: absolute;

left: -100px;
bottom: -180px;

width: 500px;
height: 500px;

pointer-events: none;

opacity: 0.035;

background:
linear-gradient(
90deg,
transparent 49%,
var(--gold) 50%,
transparent 51%
),
linear-gradient(
0deg,
transparent 49%,
var(--gold) 50%,
transparent 51%
);

background-size: 80px 80px;

transform: rotate(45deg);
}


/* =========================================================
SECTION 02 — TABLET
========================================================= */

@media (max-width: 1100px) {

.company-intro {
padding: 120px 0;
}

.company-intro-grid {
grid-template-columns: 1fr 1fr;

gap: 55px;
}

.company-intro h2 {
font-size: clamp(44px, 5vw, 64px);
}

.intro-image-frame {
height: 560px;
}
}


/* =========================================================
SECTION 02 — MOBILE
========================================================= */

@media (max-width: 900px) {

.company-intro {
padding: 110px 0;
}

.company-intro-grid {
grid-template-columns: 1fr;

gap: 65px;
}

.company-intro-content {
max-width: 720px;
}

.company-intro h2 {
font-size: clamp(44px, 9vw, 68px);
}

.company-intro-text {
max-width: 650px;
}

.company-intro-image {
max-width: 760px;
}

.intro-image-frame {
height: 560px;
}
}


/* =========================================================
SECTION 02 — SMALL PHONES
========================================================= */

@media (max-width: 560px) {

.company-intro {
padding: 90px 0;
}

.company-intro-grid {
gap: 50px;
}

.company-intro h2 {
margin-top: 20px;

font-size: clamp(40px, 12vw, 56px);
line-height: 1.02;
}

.company-intro-text {
margin-top: 25px;

font-size: 15px;
line-height: 1.7;
}

.intro-link {
margin-top: 30px;
}


/* Image */

.company-intro-image {
padding-right: 15px;
padding-bottom: 15px;
}

.intro-image-frame {
height: 440px;
}


/*
* Slightly shift the photograph on small screens
* so the construction workers remain visible.
*/
.intro-image-frame img {
object-position: center center;
}


/* Gold corner */

.intro-image-accent {
width: 75px;
height: 75px;
}

.intro-image-accent::before {
top: 15px;
left: 15px;

width: 27px;
}

.intro-image-accent::after {
top: 15px;
left: 15px;

height: 27px;
}
}


/* =========================================================
SECTION 03 — SERVICES
========================================================= */

.services-section {
position: relative;

padding: 110px 0;

overflow: hidden;

background: var(--off-white);

color: var(--green-dark);
}


/* =========================================================
MAIN GRID
========================================================= */

.services-grid {
display: grid;

grid-template-columns: 0.95fr 1.05fr;

align-items: center;

gap: 90px;
}


/* =========================================================
LEFT — IMAGE
========================================================= */

.services-visual {
position: relative;

padding-right: 20px;
padding-bottom: 20px;
}


.services-image {
position: relative;

width: 100%;
height: 560px;

overflow: hidden;

background: var(--green-dark);
}


.services-image img {
width: 100%;
height: 100%;

display: block;

object-fit: cover;

object-position: center center;

transition: transform 0.8s ease;
}


/* Image overlay */

.services-image::after {
content: "";

position: absolute;

inset: 0;

pointer-events: none;

background:
linear-gradient(
180deg,
rgba(3, 39, 31, 0.02) 20%,
rgba(3, 39, 31, 0.28) 100%
);
}


.services-visual:hover .services-image img {
transform: scale(1.035);
}


/* =========================================================
IMAGE LABEL
========================================================= */

.services-image-label {
position: absolute;

left: 0;
bottom: 0;

z-index: 3;

display: flex;

flex-direction: column;

gap: 4px;

padding: 18px 22px;

background: var(--gold);

color: var(--green-dark);

font-size: 10px;

font-weight: 800;

letter-spacing: 0.10em;

text-transform: uppercase;
}

.services-image-label span:last-child {
opacity: 0.65;
}


/* =========================================================
RIGHT — CONTENT
========================================================= */

.services-content {
max-width: 650px;
}


/* Section eyebrow */

.services-section .section-eyebrow {
display: flex;

align-items: center;

gap: 12px;

color: var(--green);

font-size: 12px;

font-weight: 800;

letter-spacing: 0.15em;

text-transform: uppercase;
}

.services-section .section-eyebrow span {
width: 30px;
height: 1px;

background: var(--gold);
}


/* =========================================================
HEADING
========================================================= */

.services-content h2 {
margin-top: 22px;

max-width: 550px;

font-family: "Manrope", sans-serif;

font-size: clamp(46px, 5vw, 70px);

line-height: 1.02;

letter-spacing: -0.055em;

font-weight: 800;

color: var(--green-dark);
}


.services-content h2 em {
display: block;

color: var(--gold);

font-style: normal;
}


/* =========================================================
INTRO TEXT
========================================================= */

.services-intro {
max-width: 540px;

margin-top: 25px;

color: #59635e;

font-size: 15px;

line-height: 1.8;
}


/* =========================================================
SERVICE LIST
========================================================= */

.service-list {
margin-top: 35px;

border-top: 1px solid rgba(3, 39, 31, 0.18);
}


/* Individual service */

.service-item {
position: relative;

display: grid;

grid-template-columns: 45px 1fr 35px;

align-items: center;

gap: 18px;

min-height: 100px;

padding: 20px 0;

border-bottom: 1px solid rgba(3, 39, 31, 0.18);

color: var(--green-dark);

transition:
padding 0.3s ease,
background 0.3s ease;
}


/* Number */

.service-number {
align-self: flex-start;

padding-top: 3px;

color: #8b948f;

font-family: "Manrope", sans-serif;

font-size: 12px;

font-weight: 800;

letter-spacing: 0.05em;

transition: color 0.3s ease;
}


/* Service details */

.service-details h3 {
font-family: "Manrope", sans-serif;

font-size: 18px;

line-height: 1.3;

font-weight: 800;

transition: color 0.3s ease;
}


.service-details p {
max-width: 470px;

margin-top: 7px;

color: #737c77;

font-size: 13px;

line-height: 1.65;

transition: color 0.3s ease;
}


/* Arrow */

.service-arrow {
display: flex;

align-items: center;
justify-content: center;

width: 30px;
height: 30px;

border: 1px solid rgba(3, 39, 31, 0.20);

color: var(--green-dark);

font-size: 16px;

transition:
background 0.3s ease,
color 0.3s ease,
border-color 0.3s ease,
transform 0.3s ease;
}


/* =========================================================
SERVICE HOVER
========================================================= */

.service-item:hover {
padding-left: 12px;
}


.service-item:hover .service-number {
color: var(--gold);
}


.service-item:hover .service-details h3 {
color: var(--green);
}


.service-item:hover .service-arrow {
background: var(--gold);

border-color: var(--gold);

color: var(--green-dark);

transform: translate(3px, -3px);
}


/* =========================================================
VIEW ALL SERVICES — PRIMARY CTA
========================================================= */

.services-link {
display: inline-flex;

align-items: center;
justify-content: center;

gap: 18px;

min-height: 52px;

margin-top: 32px;

padding: 0 24px;

background: var(--gold);

color: var(--green-dark);

font-size: 12px;

font-weight: 800;

letter-spacing: 0.10em;

text-transform: uppercase;

border: 1px solid var(--gold);

transition:
background 0.25s ease,
color 0.25s ease,
transform 0.25s ease,
box-shadow 0.25s ease;
}


.services-link span {
color: var(--green-dark);

font-size: 19px;

line-height: 1;

transition: transform 0.25s ease;
}


/* CTA hover */

.services-link:hover {
background: var(--green-dark);

color: var(--gold);

transform: translateY(-3px);

box-shadow: 0 12px 25px rgba(3, 39, 31, 0.15);
}


.services-link:hover span {
color: var(--gold);

transform: translateX(5px);
}


/* =========================================================
SUBTLE BACKGROUND DETAIL
========================================================= */

.services-section::before {
content: "";

position: absolute;

right: -180px;
top: -180px;

width: 420px;
height: 420px;

border: 1px solid rgba(6, 59, 45, 0.07);

border-radius: 50%;

pointer-events: none;
}


/* =========================================================
TABLET
========================================================= */

@media (max-width: 1100px) {

.services-section {
padding: 95px 0;
}

.services-grid {
grid-template-columns: 1fr 1fr;

gap: 55px;
}

.services-image {
height: 500px;
}

.services-content h2 {
font-size: clamp(42px, 5vw, 60px);
}

.service-item {
grid-template-columns: 38px 1fr 32px;

gap: 14px;
}

.service-details h3 {
font-size: 16px;
}

}


/* =========================================================
MOBILE / TABLET
========================================================= */

@media (max-width: 900px) {

.services-section {
padding: 90px 0;
}

.services-grid {
grid-template-columns: 1fr;

gap: 55px;
}

.services-visual {
max-width: 720px;
}

.services-image {
height: 500px;
}

.services-content {
max-width: 720px;
}

.services-content h2 {
font-size: clamp(44px, 9vw, 66px);
}

}


/* =========================================================
SMALL PHONES
========================================================= */

@media (max-width: 560px) {

.services-section {
padding: 75px 0;
}

.services-grid {
gap: 45px;
}


/* Image */

.services-visual {
padding-right: 12px;
padding-bottom: 12px;
}

.services-image {
height: 390px;
}


/* Heading */

.services-content h2 {
margin-top: 19px;

font-size: clamp(40px, 12vw, 55px);

line-height: 1.03;
}


/* Intro */

.services-intro {
margin-top: 22px;

font-size: 14px;

line-height: 1.7;
}


/* Services */

.service-list {
margin-top: 28px;
}

.service-item {
grid-template-columns: 32px 1fr 30px;

gap: 10px;

min-height: 90px;

padding: 18px 0;
}

.service-item:hover {
padding-left: 6px;
}

.service-details h3 {
font-size: 15px;
}

.service-details p {
margin-top: 5px;

font-size: 12px;

line-height: 1.55;
}

.service-number {
font-size: 11px;
}


/* Arrow */

.service-arrow {
width: 28px;
height: 28px;

font-size: 14px;
}



/* Primary CTA */

.services-link {
width: 100%;

min-height: 52px;

margin-top: 28px;

padding: 0 20px;
}

}



/* =========================================================
SECTION 04 — FEATURED PROJECTS
========================================================= */

.featured-projects {
position: relative;

overflow: hidden;

padding: 130px 0 100px;

background:
radial-gradient(
circle at 15% 70%,
rgba(244, 180, 0, 0.035),
transparent 28%
),
var(--green-dark);

color: var(--white);
}


/* =========================================================
SUBTLE BACKGROUND DETAIL
========================================================= */

.featured-projects::before {
content: "";

position: absolute;

inset: 0;

pointer-events: none;

opacity: 0.12;

background-image:
linear-gradient(
90deg,
transparent 49.5%,
rgba(255, 255, 255, 0.06) 50%,
transparent 50.5%
);

background-size: 120px 120px;
}


/* =========================================================
MAIN CONTAINER
========================================================= */

.projects-container {
position: relative;

z-index: 2;

width: min(calc(100% - 100px), var(--container));

margin-inline: auto;

display: grid;

grid-template-columns: 0.75fr 1.55fr;

align-items: center;

gap: 70px;
}


/* =========================================================
LEFT INTRODUCTION
========================================================= */

.projects-intro {
position: relative;

z-index: 5;

padding-bottom: 70px;
}


/* =========================================================
SECTION LABEL
========================================================= */

.section-label {
display: flex;

align-items: center;

gap: 18px;

color: var(--gold);

font-size: 13px;

font-weight: 800;

letter-spacing: 0.12em;

text-transform: uppercase;
}


.section-label i {
position: relative;

display: block;

width: 70px;

height: 2px;

background: var(--gold);
}


.section-label i::after {
content: "";

position: absolute;

right: -25px;

top: 0;

width: 18px;

height: 2px;

background: var(--gold);

opacity: 0.45;
}


/* =========================================================
MAIN HEADING
========================================================= */

.projects-intro h2 {
max-width: 520px;

margin-top: 30px;

font-family: "Manrope", sans-serif;

font-size: clamp(48px, 5vw, 72px);

line-height: 1.04;

letter-spacing: -0.045em;

font-weight: 800;

color: var(--white);
}


.projects-intro h2 em {
color: var(--gold);

font-family: Georgia, "Times New Roman", serif;

font-weight: 500;

font-style: italic;
}


/* =========================================================
INTRO LINE
========================================================= */

.intro-line {
position: relative;

width: 100%;

max-width: 410px;

height: 1px;

margin-top: 38px;

background: var(--gold);
}


.intro-line::after {
content: "";

position: absolute;

right: 0;

top: -1px;

width: 38px;

height: 3px;

background: var(--gold);
}


/* =========================================================
INTRO DESCRIPTION
========================================================= */

.projects-intro p {
max-width: 430px;

margin-top: 35px;

color: rgba(255, 255, 255, 0.72);

font-size: 17px;

line-height: 1.8;
}


/* =========================================================
VIEW ALL PROJECTS BUTTON
========================================================= */

.projects-button {
display: inline-flex;

align-items: center;

justify-content: space-between;

gap: 35px;

min-width: 270px;

margin-top: 42px;

padding: 19px 23px;

color: var(--green-dark);

background: var(--gold);

font-size: 13px;

font-weight: 900;

letter-spacing: 0.03em;

border-radius: 3px;

transition:
transform 0.25s ease,
background 0.25s ease,
box-shadow 0.25s ease;
}


.projects-button strong {
font-size: 28px;

line-height: 0;

font-weight: 400;

transition: transform 0.25s ease;
}


.projects-button:hover {
background: var(--gold-light);

transform: translateY(-3px);

box-shadow:
0 15px 30px rgba(0, 0, 0, 0.18);
}


.projects-button:hover strong {
transform: translateX(6px);
}


/* =========================================================
PROJECT SHOWCASE
========================================================= */

.project-showcase {
position: relative;

min-width: 0;

padding-bottom: 115px;
}


/* =========================================================
PROJECT IMAGE
========================================================= */

.project-image-wrap {
position: relative;

width: 100%;

height: 620px;

overflow: hidden;

border-radius: 18px;

background: #061f18;
}


.project-image {
width: 100%;

height: 100%;

display: block;

object-fit: cover;

object-position: center 45%;

transition: transform 0.7s ease;
}


.project-image-wrap:hover .project-image {
transform: scale(1.025);
}


/* =========================================================
PROJECT NUMBER
========================================================= */

.project-number {
position: absolute;

top: 38px;

right: 38px;

z-index: 4;

width: 102px;

height: 125px;

display: flex;

flex-direction: column;

align-items: center;

justify-content: center;

text-align: center;

background: var(--green-dark);

border: 1px solid rgba(244, 180, 0, 0.45);

border-radius: 15px;

box-shadow:
0 15px 35px rgba(0, 0, 0, 0.25);
}


.project-number strong {
color: var(--gold);

font-family: Georgia, "Times New Roman", serif;

font-size: 45px;

line-height: 1;

font-weight: 700;
}


.project-number span {
margin-top: 8px;

color: rgba(255, 255, 255, 0.88);

font-size: 11px;

line-height: 1.35;

letter-spacing: 0.08em;
}


/* =========================================================
PROJECT INFORMATION CARD
========================================================= */

.project-info {
position: absolute;

z-index: 5;

left: -80px;

right: 60px;

bottom: 0;

min-height: 168px;

display: grid;

grid-template-columns:
90px
1.15fr
1px
1fr
70px;

align-items: center;

gap: 25px;

padding: 28px 34px;

background:
linear-gradient(
135deg,
rgba(3, 39, 31, 0.98),
rgba(2, 31, 25, 0.98)
);

border: 1px solid rgba(244, 180, 0, 0.28);

border-radius: 15px;

box-shadow:
0 25px 60px rgba(0, 0, 0, 0.35);
}


/* =========================================================
PROJECT ICON
========================================================= */

.project-icon {
width: 76px;

height: 76px;

display: flex;

align-items: center;

justify-content: center;

border: 2px solid var(--gold);

border-radius: 7px;

color: var(--gold);

font-size: 40px;
}


.project-icon span {
transform: translateY(-2px);
}


/* =========================================================
PROJECT TITLE
========================================================= */

.project-title small {
display: block;

color: var(--gold);

font-size: 12px;

font-weight: 800;

letter-spacing: 0.08em;
}


.project-title h3 {
margin-top: 12px;

color: var(--white);

font-family: "Manrope", sans-serif;

font-size: 27px;

line-height: 1.15;

letter-spacing: -0.025em;
}


/* =========================================================
CARD DIVIDER
========================================================= */

.project-divider {
width: 1px;

height: 72px;

background: rgba(255, 255, 255, 0.18);
}


/* =========================================================
PROJECT DESCRIPTION
========================================================= */

.project-description p {
color: rgba(255, 255, 255, 0.72);

font-size: 15px;

line-height: 1.65;
}


/* =========================================================
PROJECT ARROW
========================================================= */

.project-arrow {
width: 58px;

height: 58px;

display: flex;

align-items: center;

justify-content: center;

border: 1px solid rgba(244, 180, 0, 0.65);

border-radius: 50%;

color: var(--gold);

font-size: 30px;

transition:
background 0.25s ease,
color 0.25s ease,
transform 0.25s ease;
}


.project-arrow:hover {
color: var(--green-dark);

background: var(--gold);

transform: translateX(4px);
}


/* =========================================================
PROJECT DOTS
========================================================= */

.project-dots {
position: relative;

z-index: 5;

display: flex;

justify-content: center;

align-items: center;

gap: 13px;

margin-top: 8px;
}


.project-dots span {
display: block;

width: 11px;

height: 11px;

border-radius: 50%;

background: rgba(255, 255, 255, 0.15);
}


.project-dots span.active {
width: 13px;

height: 13px;

background: var(--gold);
}


/* =========================================================
TABLET
========================================================= */

@media (max-width: 1100px) {

.projects-container {
grid-template-columns: 1fr;

gap: 55px;
}


.projects-intro {
padding-bottom: 0;
}


.projects-intro h2 {
max-width: 650px;
}


.projects-intro p {
max-width: 600px;
}


.project-showcase {
padding-bottom: 120px;
}


.project-info {
left: 30px;

right: 30px;
}

}


/* =========================================================
MOBILE
========================================================= */

@media (max-width: 700px) {

.featured-projects {
padding: 90px 0 75px;
}


.projects-container {
width: calc(100% - 30px);

gap: 40px;
}


.projects-intro h2 {
margin-top: 24px;

font-size: clamp(42px, 12vw, 58px);
}


.projects-intro p {
font-size: 15px;

line-height: 1.7;
}


/* ---------- BUTTON ---------- */

.projects-button {
width: 100%;

min-width: 0;
}


/* ---------- IMAGE ---------- */

.project-showcase {
padding-bottom: 0;
}


.project-image-wrap {
height: 480px;

border-radius: 13px;
}


.project-number {
top: 20px;

right: 20px;

width: 82px;

height: 102px;
}


.project-number strong {
font-size: 34px;
}


.project-number span {
font-size: 9px;
}


/* ---------- INFORMATION CARD ---------- */

.project-info {
position: relative;

left: auto;

right: auto;

bottom: auto;

margin-top: -25px;

min-height: auto;

grid-template-columns: 60px 1fr;

gap: 18px;

padding: 24px 20px;

border-radius: 12px;
}


.project-icon {
width: 58px;

height: 58px;

font-size: 30px;
}


.project-title small {
font-size: 10px;
}


.project-title h3 {
margin-top: 7px;

font-size: 21px;
}


.project-divider {
display: none;
}


.project-description {
grid-column: 1 / -1;
}


.project-description p {
font-size: 14px;
}


/* ---------- ARROW ---------- */

.project-arrow {
position: absolute;

right: 18px;

top: 24px;

width: 45px;

height: 45px;

font-size: 24px;
}


/* ---------- DOTS ---------- */

.project-dots {
margin-top: 35px;
}

}


/* =========================================================
SMALL PHONES
========================================================= */

@media (max-width: 420px) {

.project-image-wrap {
height: 420px;
}


.project-number {
transform: scale(0.9);

transform-origin: top right;
}


.project-title h3 {
font-size: 19px;

padding-right: 45px;
}

}

/* =========================================================
SECTION 05 — LEADERSHIP
========================================================= */

.leadership-section {
position: relative;

padding: 125px 0;

overflow: hidden;

background: var(--off-white);

color: var(--green-dark);
}


/* =========================================================
LEADERSHIP GRID
========================================================= */

.leadership-grid {
display: grid;

grid-template-columns: minmax(0, 1fr) minmax(420px, 0.82fr);

align-items: center;

gap: 100px;
}


/* =========================================================
LEADERSHIP CONTENT
========================================================= */

.leadership-content {
max-width: 700px;
}


/* =========================================================
EYEBROW
========================================================= */

.leadership-section .section-eyebrow {
display: flex;

align-items: center;

gap: 12px;

color: var(--gold);

font-size: 20px;

font-weight: 800;

letter-spacing: 0.15em;

text-transform: uppercase;
}


.leadership-section .section-eyebrow span {
width: 30px;

height: 1px;

background: var(--gold);
}


/* =========================================================
HEADING
========================================================= */

.leadership-content h2 {
max-width: 650px;

margin-top: 22px;

font-family: "Manrope", sans-serif;

font-size: clamp(45px, 5vw, 72px);

line-height: 1.02;

letter-spacing: -0.055em;

font-weight: 800;
}


.leadership-content h2 em {
display: block;

color: var(--gold);

font-style: normal;
}


/* =========================================================
MESSAGE
========================================================= */

.leadership-message {
max-width: 650px;

margin-top: 32px;
}


.leadership-message p {
margin-bottom: 18px;

color: #5e625e;

font-size: 15px;

line-height: 1.8;
}


.leadership-message p:last-child {
margin-bottom: 0;
}


/* =========================================================
CEO PROFILE
========================================================= */

.leadership-profile {
display: flex;

align-items: center;

gap: 18px;

margin-top: 38px;
}


.leadership-line {
width: 42px;

height: 2px;

flex-shrink: 0;

background: var(--gold);
}


.leadership-profile h3 {
font-family: "Manrope", sans-serif;

font-size: 16px;

line-height: 1.3;

font-weight: 800;

color: var(--green-dark);
}


.leadership-profile p {
margin-top: 5px;

color: #777a74;

font-size: 11px;

font-weight: 700;

letter-spacing: 0.10em;

text-transform: uppercase;
}


/* =========================================================
CEO IMAGE
========================================================= */

.leadership-image {
position: relative;

width: 100%;
}


.leadership-image-frame {
position: relative;

width: 100%;

height: 620px;

overflow: hidden;

background: #d9d7d0;
}


.leadership-image-frame img {
width: 100%;

height: 100%;

display: block;

object-fit: cover;

object-position: center top;

transition: transform 0.8s ease;
}


.leadership-image-frame:hover img {
transform: scale(1.025);
}


/* =========================================================
IMAGE ACCENT
========================================================= */

.leadership-image-accent {
position: absolute;

right: -12px;

bottom: -12px;

width: 105px;

height: 105px;

border-right: 2px solid var(--gold);

border-bottom: 2px solid var(--gold);

pointer-events: none;
}


/* =========================================================
DECORATIVE BACKGROUND DETAIL
========================================================= */

.leadership-section::before {
content: "";

position: absolute;

right: -220px;

top: 50%;

width: 480px;

height: 480px;

border: 1px solid rgba(6, 59, 45, 0.06);

border-radius: 50%;

transform: translateY(-50%);

pointer-events: none;
}


/* =========================================================
TABLET
========================================================= */

@media (max-width: 1000px) {

.leadership-section {
padding: 100px 0;
}


.leadership-grid {
grid-template-columns: minmax(0, 1fr) minmax(340px, 0.8fr);

gap: 60px;
}


.leadership-content h2 {
font-size: clamp(42px, 6vw, 62px);
}


.leadership-image-frame {
height: 560px;
}

}


/* =========================================================
MOBILE
========================================================= */

@media (max-width: 760px) {

.leadership-section {
padding: 85px 0;
}


.leadership-grid {
display: flex;

flex-direction: column;

align-items: stretch;

gap: 50px;
}


.leadership-content {
max-width: none;
}


.leadership-content h2 {
margin-top: 18px;

font-size: clamp(40px, 11vw, 56px);
}


.leadership-message {
margin-top: 26px;
}


.leadership-message p {
font-size: 14px;

line-height: 1.75;
}


.leadership-profile {
margin-top: 30px;
}


.leadership-image {
width: 100%;
}


.leadership-image-frame {
height: 520px;
}


.leadership-image-accent {
right: -8px;

bottom: -8px;

width: 75px;

height: 75px;
}

}


/* =========================================================
SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

.leadership-section {
padding: 70px 0;
}


.leadership-grid {
gap: 40px;
}


.leadership-content h2 {
font-size: clamp(38px, 12vw, 50px);
}


.leadership-image-frame {
height: 470px;
}


.leadership-profile h3 {
font-size: 14px;
}

}



/* =========================================================
SECTION — COMPANY STATISTICS
========================================================= */

.stats-section {
position: relative;

padding: 110px 0;

background: var(--white);

overflow: hidden;
}


/* =========================================================
CONTAINER
========================================================= */

.stats-container {
width: min(1180px, 90%);

margin: 0 auto;
}


/* =========================================================
SECTION HEADING
========================================================= */

.stats-heading {
max-width: 700px;

margin-bottom: 70px;

opacity: 0;

transform: translateY(25px);

transition:
opacity 0.8s ease,
transform 0.8s ease;
}


.stats-section.stats-visible .stats-heading {
opacity: 1;

transform: translateY(0);
}


/* =========================================================
EYEBROW
========================================================= */

.stats-heading .section-eyebrow {
display: flex;

align-items: center;

gap: 12px;

margin-bottom: 20px;

color: var(--gold);

font-size: 12px;

font-weight: 800;

letter-spacing: 0.15em;

text-transform: uppercase;
}


.stats-heading .section-eyebrow span {
width: 32px;

height: 1px;

background: var(--gold);
}


/* =========================================================
MAIN HEADING
========================================================= */

.stats-heading h2 {
margin: 0;

font-family: "Manrope", sans-serif;

font-size: clamp(38px, 4.5vw, 60px);

line-height: 1.05;

letter-spacing: -0.045em;

font-weight: 800;

color: var(--green-dark);
}


.stats-heading h2 em {
display: block;

color: var(--gold);

font-style: normal;
}


/* =========================================================
STATS GRID
========================================================= */

.stats-grid {
display: grid;

grid-template-columns: repeat(4, 1fr);

gap: 35px;

align-items: center;
}


/* =========================================================
STAT ITEM
========================================================= */

.stat-item {
display: flex;

align-items: center;

gap: 17px;

opacity: 0;

transform: translateY(35px);

transition:
opacity 0.7s ease,
transform 0.7s ease;
}


/* Activated when section enters viewport */

.stats-section.stats-visible .stat-item {
opacity: 1;

transform: translateY(0);
}


/* =========================================================
STAGGERED APPEARANCE
========================================================= */

.stats-section.stats-visible .stat-item:nth-child(1) {
transition-delay: 0.1s;
}

.stats-section.stats-visible .stat-item:nth-child(2) {
transition-delay: 0.2s;
}

.stats-section.stats-visible .stat-item:nth-child(3) {
transition-delay: 0.3s;
}

.stats-section.stats-visible .stat-item:nth-child(4) {
transition-delay: 0.4s;
}


/* =========================================================
ICON
========================================================= */

.stat-icon {
flex-shrink: 0;

width: 62px;

height: 62px;

display: flex;

align-items: center;

justify-content: center;
}


.stat-icon img {
width: 100%;

height: 100%;

display: block;

object-fit: contain;

opacity: 0.72;

transition:
transform 0.35s ease,
opacity 0.35s ease;
}


.stat-item:hover .stat-icon img {
transform: translateY(-5px);

opacity: 1;
}


/* =========================================================
STAT CONTENT
========================================================= */

.stat-content {
display: flex;

flex-direction: column;
}


/* =========================================================
NUMBER
========================================================= */

.stat-number {
display: flex;

align-items: baseline;

font-family: "Manrope", sans-serif;

font-size: clamp(32px, 3vw, 48px);

line-height: 1;

font-weight: 800;

letter-spacing: -0.045em;

color: var(--gold);

white-space: nowrap;
}


/* =========================================================
COUNTER
========================================================= */

.counter {
display: inline-block;

min-width: 1ch;

font-variant-numeric: tabular-nums;
}


/* =========================================================
PLUS SIGN
========================================================= */

.plus {
margin-left: 2px;

font-size: 0.72em;

font-weight: 800;
}


/* =========================================================
LABEL
========================================================= */

.stat-content p {
margin: 8px 0 0;

font-family: "Manrope", sans-serif;

font-size: 14px;

line-height: 1.3;

font-weight: 700;

color: var(--green-dark);
}


/* =========================================================
SUBTLE BACKGROUND DETAIL
========================================================= */

.stats-section::after {
content: "";

position: absolute;

right: -180px;

bottom: -220px;

width: 420px;

height: 420px;

border: 1px solid rgba(244, 180, 0, 0.08);

border-radius: 50%;

pointer-events: none;
}


/* =========================================================
TABLET
========================================================= */

@media (max-width: 1000px) {

.stats-section {
padding: 90px 0;
}


.stats-heading {
margin-bottom: 55px;
}


.stats-grid {
grid-template-columns: repeat(2, 1fr);

gap: 45px 35px;
}

}


/* =========================================================
MOBILE — 2 × 2 LAYOUT
========================================================= */

@media (max-width: 600px) {

.stats-section {
padding: 70px 0;
}


.stats-container {
width: min(92%, 500px);
}


.stats-heading {
margin-bottom: 45px;
}


.stats-heading h2 {
font-size: clamp(36px, 10vw, 48px);
}


/* Keep statistics in a 2 × 2 grid */

.stats-grid {
grid-template-columns: repeat(2, 1fr);

gap: 35px 18px;
}


/* Compact mobile statistic */

.stat-item {
gap: 11px;

min-width: 0;
}


/* Smaller icons */

.stat-icon {
width: 48px;

height: 48px;
}


/* Smaller numbers */

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


/* Smaller labels */

.stat-content p {
margin-top: 6px;

font-size: 11px;

line-height: 1.25;
}

}


/* =========================================================
EXTRA SMALL PHONES
========================================================= */

@media (max-width: 380px) {

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


.stats-grid {
gap: 30px 12px;
}


.stat-item {
gap: 8px;
}


.stat-icon {
width: 42px;

height: 42px;
}


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


.stat-content p {
font-size: 10px;
}

}


/* =========================================================
   SECTION — WHAT SETS US APART
   ========================================================= */

.difference-section {
  position: relative;

  padding: 120px 0;

  background: var(--green-dark);

  color: var(--white);

  overflow: hidden;
}


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

.difference-header {
  max-width: 850px;

  margin-bottom: 85px;
}


.difference-header .section-eyebrow {
  display: flex;

  align-items: center;

  gap: 12px;

  margin-bottom: 24px;

  color: var(--gold);

  font-size: 12px;

  font-weight: 800;

  letter-spacing: 0.15em;

  text-transform: uppercase;
}


.difference-header .section-eyebrow span {
  width: 32px;

  height: 1px;

  background: var(--gold);
}


/* =========================================================
   MAIN HEADING
   ========================================================= */

.difference-header h2 {
  max-width: 850px;

  margin: 0;

  font-family: "Manrope", sans-serif;

  font-size: clamp(44px, 5.5vw, 76px);

  line-height: 1.02;

  letter-spacing: -0.055em;

  font-weight: 800;
}


.difference-header h2 em {
  display: block;

  color: var(--gold);

  font-style: normal;
}


/* =========================================================
   DIFFERENCE GRID
   ========================================================= */

.difference-grid {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  column-gap: 90px;

  row-gap: 0;

  border-top: 1px solid rgba(255, 255, 255, 0.16);
}


/* =========================================================
   DIFFERENCE ITEM
   ========================================================= */

.difference-item {
  position: relative;

  display: grid;

  grid-template-columns: 70px 1fr;

  gap: 25px;

  min-height: 230px;

  padding: 42px 0 38px;

  border-bottom: 1px solid rgba(255, 255, 255, 0.16);

  opacity: 0;

  transform: translateY(25px);

  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}


/* Reveal when visible */

.difference-section.visible .difference-item {
  opacity: 1;

  transform: translateY(0);
}


/* =========================================================
   STAGGER
   ========================================================= */

.difference-section.visible .difference-item:nth-child(1) {
  transition-delay: 0.05s;
}

.difference-section.visible .difference-item:nth-child(2) {
  transition-delay: 0.15s;
}

.difference-section.visible .difference-item:nth-child(3) {
  transition-delay: 0.25s;
}

.difference-section.visible .difference-item:nth-child(4) {
  transition-delay: 0.35s;
}


/* =========================================================
   NUMBER
   ========================================================= */

.difference-number {
  color: var(--gold);

  font-family: "Manrope", sans-serif;

  font-size: 13px;

  font-weight: 800;

  letter-spacing: 0.08em;
}


/* =========================================================
   CONTENT
   ========================================================= */

.difference-content {
  max-width: 400px;
}


.difference-content h3 {
  margin: 0;

  font-family: "Manrope", sans-serif;

  font-size: 25px;

  line-height: 1.15;

  font-weight: 800;

  letter-spacing: -0.025em;

  transition: color 0.3s ease;
}


.difference-content p {
  max-width: 370px;

  margin: 15px 0 0;

  color: var(--muted);

  font-size: 14px;

  line-height: 1.75;
}


/* =========================================================
   HOVER
   ========================================================= */

.difference-item:hover .difference-content h3 {
  color: var(--gold);
}


/* =========================================================
   DECORATIVE LINE
   ========================================================= */

.difference-line {
  position: absolute;

  left: 0;

  bottom: -1px;

  width: 0;

  height: 2px;

  background: var(--gold);

  transition: width 0.45s ease;
}


.difference-item:hover .difference-line {
  width: 80px;
}


/* =========================================================
   BACKGROUND DETAIL
   ========================================================= */

.difference-section::after {
  content: "";

  position: absolute;

  right: -260px;

  top: -260px;

  width: 600px;

  height: 600px;

  border: 1px solid rgba(244, 180, 0, 0.055);

  border-radius: 50%;

  pointer-events: none;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

  .difference-section {
    padding: 100px 0;
  }


  .difference-header {
    margin-bottom: 65px;
  }


  .difference-header h2 {
    font-size: clamp(42px, 7vw, 64px);
  }


  .difference-grid {
    column-gap: 45px;
  }


  .difference-item {
    grid-template-columns: 50px 1fr;

    gap: 18px;

    min-height: 210px;
  }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

  .difference-section {
    padding: 80px 0;
  }


  .difference-header {
    margin-bottom: 50px;
  }


  .difference-header .section-eyebrow {
    margin-bottom: 18px;

    font-size: 11px;
  }


  .difference-header h2 {
    font-size: clamp(38px, 10.5vw, 52px);

    line-height: 1.04;
  }


  .difference-grid {
    grid-template-columns: 1fr;

    column-gap: 0;
  }


  .difference-item {
    grid-template-columns: 45px 1fr;

    gap: 15px;

    min-height: auto;

    padding: 32px 0;
  }


  .difference-content h3 {
    font-size: 22px;
  }


  .difference-content p {
    margin-top: 10px;

    font-size: 13px;

    line-height: 1.65;
  }


  .difference-number {
    font-size: 11px;
  }

}

/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
  position: relative;

  width: 100%;

  background: #111111;

  color: #ffffff;

  padding: 34px 0 36px;

  border-top: 1px solid rgba(255, 255, 255, 0.12);

  overflow: hidden;
}


/* =========================================================
   FOOTER CONTAINER
   ========================================================= */

.footer-container {
  width: min(1180px, 90%);

  margin: 0 auto;

  display: flex;

  flex-direction: column;

  align-items: center;
}


/* =========================================================
   CONTACT INFORMATION
   ========================================================= */

.footer-contact {
  width: 100%;

  display: flex;

  align-items: center;

  justify-content: center;

  gap: 60px;

  padding-bottom: 25px;
}


.footer-contact-item {
  display: flex;

  align-items: center;

  justify-content: center;

  gap: 10px;

  color: rgba(255, 255, 255, 0.78);

  font-family: "Manrope", sans-serif;

  font-size: 13px;

  line-height: 1.5;

  white-space: nowrap;
}


/* Contact icons */

.footer-contact-item i {
  display: flex;

  align-items: center;

  justify-content: center;

  width: 18px;

  color: rgba(255, 255, 255, 0.9);

  font-size: 14px;

  transition: color 0.25s ease;
}


/* Contact links */

.footer-contact-item a {
  color: inherit;

  text-decoration: none;

  transition: color 0.25s ease;
}


/* Hover */

.footer-contact-item:hover i,
.footer-contact-item:hover a {
  color: var(--gold);
}


/* =========================================================
   SOCIAL ICONS
   ========================================================= */

.footer-socials {
  display: flex;

  align-items: center;

  justify-content: center;

  gap: 22px;

  padding: 3px 0 22px;
}


.footer-socials a {
  display: flex;

  align-items: center;

  justify-content: center;

  width: 28px;

  height: 28px;

  color: rgba(255, 255, 255, 0.88);

  text-decoration: none;

  font-size: 17px;

  transition:
    color 0.25s ease,
    transform 0.25s ease;
}


.footer-socials a:hover {
  color: var(--gold);

  transform: translateY(-3px);
}


/* =========================================================
   COPYRIGHT
   ========================================================= */

.footer-copyright {
  margin: 0;

  padding: 0;

  color: rgba(255, 255, 255, 0.58);

  font-family: "Manrope", sans-serif;

  font-size: 12px;

  line-height: 1.6;

  text-align: center;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

  .footer-contact {
    gap: 35px;
  }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

  .site-footer {
    padding: 30px 0 32px;
  }


  .footer-container {
    width: 92%;
  }


  /* =========================================
     CONTACT INFORMATION
     ========================================= */

  .footer-contact {
    width: 100%;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 16px 12px;

    padding-bottom: 23px;
  }


  /* Phone + Email */

  .footer-contact-item {
    min-width: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 7px;

    font-size: 11.5px;

    white-space: nowrap;
  }


  /* Location gets its own centered row */

  .footer-contact-item:last-child {
    grid-column: 1 / -1;

    justify-self: center;
  }


  .footer-contact-item i {
    flex-shrink: 0;

    width: auto;

    font-size: 13px;
  }


  /* =========================================
     SOCIAL ICONS
     ========================================= */

  .footer-socials {
    width: 100%;

    gap: 24px;

    padding: 3px 0 20px;
  }


  .footer-socials a {
    width: 27px;

    height: 27px;

    font-size: 17px;
  }


  /* =========================================
     COPYRIGHT
     ========================================= */

  .footer-copyright {
    width: 100%;

    max-width: 320px;

    margin: 0 auto;

    font-size: 11px;

    line-height: 1.6;

    text-align: center;
  }

}


/* =========================================================
   WHATSAPP FLOATING CONTACT
   ========================================================= */

.whatsapp-float {
  position: fixed;

  right: 24px;

  bottom: 28px;

  z-index: 9999;

  display: flex;

  align-items: center;

  gap: 10px;

  height: 52px;

  padding: 0 18px 0 8px;

  background: #ffffff;

  color: var(--green-dark);

  border: 1px solid rgba(3, 39, 31, 0.12);

  border-radius: 30px;

  text-decoration: none;

  box-shadow:
    0 8px 25px rgba(0, 0, 0, 0.14);

  font-family: "Manrope", sans-serif;

  font-size: 11px;

  font-weight: 800;

  letter-spacing: 0.04em;

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease;
}


/* =========================================================
   WHATSAPP ICON
   ========================================================= */

.whatsapp-icon {
  width: 38px;

  height: 38px;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 50%;

  background: #25D366;

  color: #ffffff;

  font-size: 20px;

  flex-shrink: 0;

  box-shadow:
    0 4px 12px rgba(37, 211, 102, 0.25);
}


/* =========================================================
   TEXT
   ========================================================= */

.whatsapp-text {
  white-space: nowrap;
}


/* =========================================================
   HOVER
   ========================================================= */

.whatsapp-float:hover {
  transform: translateY(-4px);

  background: var(--green-dark);

  color: #ffffff;

  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.20);
}


.whatsapp-float:hover .whatsapp-icon {
  transform: scale(1.05);
}


/* =========================================================
   SUBTLE PULSE
   ========================================================= */

.whatsapp-icon {
  animation: whatsappPulse 2.8s ease-in-out infinite;
}


@keyframes whatsappPulse {

  0%,
  70%,
  100% {
    box-shadow:
      0 4px 12px rgba(37, 211, 102, 0.25);
  }

  35% {
    box-shadow:
      0 4px 12px rgba(37, 211, 102, 0.25),
      0 0 0 7px rgba(37, 211, 102, 0.10);
  }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

  .whatsapp-float {
    right: 17px;

    bottom: 18px;

    width: 50px;

    height: 50px;

    padding: 0;

    justify-content: center;

    border-radius: 50%;
  }


  .whatsapp-icon {
    width: 42px;

    height: 42px;

    font-size: 21px;
  }


  .whatsapp-text {
    display: none;
  }

}


/* =========================================================
   ABOUT PAGE — HERO
   ========================================================= */

.about-hero {
  position: relative;

  min-height: 620px;

  padding: 150px 0 100px;

  background: var(--green-dark);

  color: var(--white);

  overflow: hidden;
}


/* =========================================================
   HERO CONTAINER
   ========================================================= */

.about-hero-container {
  display: grid;

  grid-template-columns: 1fr 0.85fr;

  align-items: center;

  gap: 90px;
}


/* =========================================================
   HERO CONTENT
   ========================================================= */

.about-hero-content {
  max-width: 650px;

  position: relative;

  z-index: 2;
}


/* =========================================================
   EYEBROW
   ========================================================= */

.about-hero .section-eyebrow {
  display: flex;

  align-items: center;

  gap: 12px;

  margin-bottom: 24px;

  color: var(--gold);

  font-size: 12px;

  font-weight: 800;

  letter-spacing: 0.16em;

  text-transform: uppercase;
}


.about-hero .section-eyebrow span {
  width: 32px;

  height: 1px;

  background: var(--gold);
}


/* =========================================================
   HEADING
   ========================================================= */

.about-hero h1 {
  margin: 0;

  max-width: 700px;

  font-family: "Manrope", sans-serif;

  font-size: clamp(52px, 6vw, 82px);

  line-height: 1;

  letter-spacing: -0.055em;

  font-weight: 800;
}


.about-hero h1 em {
  display: block;

  color: var(--gold);

  font-style: normal;
}


/* =========================================================
   DESCRIPTION
   ========================================================= */

.about-hero-text {
  max-width: 570px;

  margin: 30px 0 0;

  color: var(--muted);

  font-size: 16px;

  line-height: 1.8;
}


/* =========================================================
   HERO META
   ========================================================= */

.about-hero-meta {
  display: flex;

  flex-wrap: wrap;

  align-items: center;

  gap: 0;

  margin-top: 38px;
}


.about-hero-meta span {
  position: relative;

  padding-right: 20px;

  margin-right: 20px;

  color: var(--white);

  font-size: 11px;

  font-weight: 800;

  letter-spacing: 0.11em;

  text-transform: uppercase;
}


.about-hero-meta span:not(:last-child)::after {
  content: "";

  position: absolute;

  right: 0;

  top: 50%;

  width: 4px;

  height: 4px;

  border-radius: 50%;

  background: var(--gold);

  transform: translateY(-50%);
}


/* =========================================================
   HERO IMAGE
   ========================================================= */

.about-hero-visual {
  position: relative;

  min-height: 440px;
}


.about-hero-frame {
  position: relative;

  width: 100%;

  height: 440px;

  overflow: hidden;

  background: #061f18;

  z-index: 2;
}


.about-hero-frame img {
  width: 100%;

  height: 100%;

  display: block;

  object-fit: cover;

  object-position: center;

  transition: transform 0.8s ease;
}


.about-hero-frame:hover img {
  transform: scale(1.035);
}


/* =========================================================
   IMAGE ACCENT
   ========================================================= */

.about-hero-accent {
  position: absolute;

  right: -18px;

  bottom: -18px;

  width: 120px;

  height: 120px;

  border-right: 2px solid var(--gold);

  border-bottom: 2px solid var(--gold);

  z-index: 1;
}


/* =========================================================
   BACKGROUND DETAIL
   ========================================================= */

.about-hero::before {
  content: "";

  position: absolute;

  left: -260px;

  bottom: -300px;

  width: 650px;

  height: 650px;

  border: 1px solid rgba(244, 180, 0, 0.07);

  border-radius: 50%;

  pointer-events: none;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

  .about-hero {
    padding: 130px 0 85px;
  }


  .about-hero-container {
    grid-template-columns: 1fr;

    gap: 55px;
  }


  .about-hero-content {
    max-width: 720px;
  }


  .about-hero-visual {
    max-width: 700px;

    width: 100%;

    min-height: 400px;
  }


  .about-hero-frame {
    height: 400px;
  }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 560px) {

  .about-hero {
    min-height: auto;

    padding: 115px 0 70px;
  }


  .about-hero-container {
    gap: 40px;
  }


  .about-hero h1 {
    font-size: clamp(46px, 13vw, 64px);

    line-height: 1.02;
  }


  .about-hero-text {
    margin-top: 24px;

    font-size: 14px;

    line-height: 1.75;
  }


  .about-hero-meta {
    margin-top: 30px;
  }


  .about-hero-meta span {
    margin-right: 15px;

    padding-right: 15px;

    font-size: 9px;
  }


  .about-hero-visual {
    min-height: 330px;
  }


  .about-hero-frame {
    height: 330px;
  }


  .about-hero-accent {
    right: -10px;

    bottom: -10px;

    width: 75px;

    height: 75px;
  }

}


/* =========================================================
   SECTION 02 — WHO WE ARE
   ========================================================= */

.about-story {
  position: relative;

  padding: 130px 0;

  background: var(--white);

  color: var(--green-dark);

  overflow: hidden;
}


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

.about-story-header {
  max-width: 850px;

  margin-bottom: 75px;
}


.about-story-header .section-eyebrow {
  display: flex;

  align-items: center;

  gap: 12px;

  margin-bottom: 24px;

  color: var(--gold);

  font-size: 12px;

  font-weight: 800;

  letter-spacing: 0.15em;

  text-transform: uppercase;
}


.about-story-header .section-eyebrow span {
  width: 32px;

  height: 1px;

  background: var(--gold);
}


/* =========================================================
   HEADING
   ========================================================= */

.about-story-header h2 {
  margin: 0;

  max-width: 800px;

  font-family: "Manrope", sans-serif;

  font-size: clamp(48px, 5.5vw, 76px);

  line-height: 1.02;

  letter-spacing: -0.055em;

  font-weight: 800;

  color: var(--green-dark);
}


.about-story-header h2 em {
  display: block;

  color: var(--gold);

  font-style: normal;
}


/* =========================================================
   STORY GRID
   ========================================================= */

.about-story-grid {
  display: grid;

  grid-template-columns: minmax(0, 1fr) 280px;

  gap: 100px;

  align-items: start;

  padding-top: 45px;

  border-top: 1px solid rgba(3, 39, 31, 0.15);
}


/* =========================================================
   STORY CONTENT
   ========================================================= */

.about-story-content {
  max-width: 820px;
}


.about-story-content p {
  margin: 0 0 25px;

  color: #59645f;

  font-family: "DM Sans", sans-serif;

  font-size: 16px;

  line-height: 1.85;
}


.about-story-content p:last-child {
  margin-bottom: 0;
}


/* FIRST PARAGRAPH */

.about-story-content .about-story-lead {
  margin-bottom: 30px;

  color: var(--green-dark);

  font-size: 20px;

  line-height: 1.7;

  font-weight: 500;
}


/* =========================================================
   ESTABLISHED BLOCK
   ========================================================= */

.about-established {
  position: relative;

  display: flex;

  flex-direction: column;

  align-items: flex-start;

  padding: 10px 0 0 30px;

  border-left: 1px solid var(--gold);
}


.about-established-label {
  margin-bottom: 12px;

  color: var(--gold);

  font-size: 10px;

  font-weight: 800;

  letter-spacing: 0.16em;

  text-transform: uppercase;
}


.about-established strong {
  font-family: "Manrope", sans-serif;

  font-size: clamp(58px, 5vw, 78px);

  line-height: 1;

  letter-spacing: -0.06em;

  font-weight: 800;

  color: var(--green-dark);
}


.about-established-line {
  display: block;

  width: 45px;

  height: 2px;

  margin: 22px 0;

  background: var(--gold);
}


.about-established p {
  margin: 0;

  color: #69736f;

  font-size: 13px;

  line-height: 1.7;

  font-weight: 600;
}


/* =========================================================
   SUBTLE DECORATION
   ========================================================= */

.about-story::after {
  content: "";

  position: absolute;

  right: -220px;

  bottom: -260px;

  width: 520px;

  height: 520px;

  border: 1px solid rgba(244, 180, 0, 0.08);

  border-radius: 50%;

  pointer-events: none;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

  .about-story {
    padding: 100px 0;
  }


  .about-story-header {
    margin-bottom: 55px;
  }


  .about-story-grid {
    grid-template-columns: 1fr;

    gap: 55px;
  }


  .about-established {
    max-width: 300px;
  }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

  .about-story {
    padding: 80px 0;
  }


  .about-story-header {
    margin-bottom: 45px;
  }


  .about-story-header h2 {
    font-size: clamp(40px, 11vw, 55px);
  }


  .about-story-grid {
    gap: 45px;

    padding-top: 35px;
  }


  .about-story-content .about-story-lead {
    font-size: 17px;

    line-height: 1.7;
  }


  .about-story-content p {
    font-size: 14px;

    line-height: 1.8;
  }


  .about-established {
    padding-left: 22px;
  }


  .about-established strong {
    font-size: 58px;
  }

}


/* =========================================================
   SECTION 03 — MISSION & VISION
   ========================================================= */

.mission-vision-section {
  position: relative;

  padding: 125px 0;

  background: var(--green-dark);

  color: var(--white);

  overflow: hidden;
}


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

.mission-vision-header {
  max-width: 800px;

  margin-bottom: 75px;
}


.mission-vision-header .section-eyebrow {
  display: flex;

  align-items: center;

  gap: 12px;

  margin-bottom: 24px;

  color: var(--gold);

  font-size: 12px;

  font-weight: 800;

  letter-spacing: 0.15em;

  text-transform: uppercase;
}


.mission-vision-header .section-eyebrow span {
  width: 32px;

  height: 1px;

  background: var(--gold);
}


/* =========================================================
   MAIN HEADING
   ========================================================= */

.mission-vision-header h2 {
  margin: 0;

  font-family: "Manrope", sans-serif;

  font-size: clamp(46px, 5vw, 70px);

  line-height: 1.03;

  letter-spacing: -0.055em;

  font-weight: 800;

  color: var(--white);
}


.mission-vision-header h2 em {
  display: block;

  color: var(--gold);

  font-style: normal;
}


/* =========================================================
   MISSION / VISION GRID
   ========================================================= */

.mission-vision-grid {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 0;

  border-top: 1px solid rgba(255, 255, 255, 0.18);

  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}


/* =========================================================
   CARD
   ========================================================= */

.mission-vision-card {
  position: relative;

  display: grid;

  grid-template-columns: 70px 1fr;

  gap: 30px;

  min-height: 390px;

  padding: 55px 55px 55px 0;
}


.mission-vision-card + .mission-vision-card {
  padding-left: 55px;

  border-left: 1px solid rgba(255, 255, 255, 0.18);
}


/* =========================================================
   NUMBER
   ========================================================= */

.mission-vision-number {
  color: var(--gold);

  font-family: "Manrope", sans-serif;

  font-size: 13px;

  line-height: 1;

  font-weight: 800;

  letter-spacing: 0.08em;
}


/* =========================================================
   CONTENT
   ========================================================= */

.mission-vision-content {
  max-width: 560px;
}


.mission-vision-label {
  display: block;

  margin-bottom: 18px;

  color: rgba(255, 255, 255, 0.55);

  font-size: 10px;

  font-weight: 800;

  letter-spacing: 0.16em;

  text-transform: uppercase;
}


/* =========================================================
   CARD HEADING
   ========================================================= */

.mission-vision-content h3 {
  margin: 0 0 28px;

  font-family: "Manrope", sans-serif;

  font-size: clamp(30px, 3vw, 43px);

  line-height: 1.08;

  letter-spacing: -0.04em;

  font-weight: 800;

  color: var(--white);
}


.mission-vision-content h3 em {
  color: var(--gold);

  font-style: normal;
}


/* =========================================================
   CARD TEXT
   ========================================================= */

.mission-vision-content p {
  margin: 0;

  max-width: 520px;

  color: rgba(255, 255, 255, 0.68);

  font-family: "DM Sans", sans-serif;

  font-size: 15px;

  line-height: 1.85;
}


/* =========================================================
   BOTTOM ACCENT
   ========================================================= */

.mission-vision-line {
  position: absolute;

  left: 0;

  bottom: 0;

  width: 42px;

  height: 2px;

  background: var(--gold);
}


.mission-vision-card + .mission-vision-card .mission-vision-line {
  left: 55px;
}


/* =========================================================
   SUBTLE BACKGROUND DETAIL
   ========================================================= */

.mission-vision-section::after {
  content: "";

  position: absolute;

  right: -220px;

  top: -250px;

  width: 500px;

  height: 500px;

  border: 1px solid rgba(244, 180, 0, 0.07);

  border-radius: 50%;

  pointer-events: none;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

  .mission-vision-section {
    padding: 100px 0;
  }


  .mission-vision-header {
    margin-bottom: 60px;
  }


  .mission-vision-grid {
    grid-template-columns: 1fr;
  }


  .mission-vision-card {
    min-height: auto;

    padding: 50px 0;
  }


  .mission-vision-card + .mission-vision-card {
    padding-left: 0;

    border-left: none;

    border-top: 1px solid rgba(255, 255, 255, 0.18);
  }


  .mission-vision-card + .mission-vision-card .mission-vision-line {
    left: 0;
  }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

  .mission-vision-section {
    padding: 80px 0;
  }


  .mission-vision-header {
    margin-bottom: 45px;
  }


  .mission-vision-header h2 {
    font-size: clamp(40px, 11vw, 54px);
  }


  .mission-vision-card {
    grid-template-columns: 45px 1fr;

    gap: 20px;

    padding: 40px 0;
  }


  .mission-vision-number {
    font-size: 11px;
  }


  .mission-vision-content h3 {
    margin-bottom: 20px;

    font-size: 29px;
  }


  .mission-vision-content p {
    font-size: 14px;

    line-height: 1.8;
  }


  .mission-vision-label {
    margin-bottom: 14px;
  }

}


/* =========================================================
   SECTION — WHAT GUIDES US / ETHOS
   ========================================================= */

.ethos-section {
  position: relative;

  padding: 120px 0;

  background: var(--white);

  overflow: hidden;
}


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

.ethos-header {
  max-width: 760px;

  margin-bottom: 70px;
}


.ethos-header .section-eyebrow {
  display: flex;

  align-items: center;

  gap: 12px;

  margin-bottom: 20px;

  color: var(--gold);

  font-size: 12px;

  font-weight: 800;

  letter-spacing: 0.15em;

  text-transform: uppercase;
}


.ethos-header .section-eyebrow span {
  width: 32px;

  height: 1px;

  background: var(--gold);
}


.ethos-header h2 {
  margin: 0;

  font-family: "Manrope", sans-serif;

  font-size: clamp(40px, 5vw, 64px);

  line-height: 1.04;

  letter-spacing: -0.045em;

  font-weight: 800;

  color: var(--green-dark);
}


.ethos-header h2 em {
  color: var(--gold);

  font-style: normal;
}


.ethos-header > p {
  max-width: 680px;

  margin: 25px 0 0;

  font-family: "DM Sans", sans-serif;

  font-size: 16px;

  line-height: 1.8;

  color: #666;
}


/* =========================================================
   ETHOS GRID
   ========================================================= */

.ethos-grid {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 22px;
}


/* =========================================================
   ETHOS CARD
   ========================================================= */

.ethos-card {
  position: relative;

  display: flex;

  flex-direction: column;

  min-height: 300px;

  padding: 38px 38px 42px;

  background: #fafafa;

  border: 1px solid rgba(0, 0, 0, 0.08);

  overflow: hidden;

  transition:
    transform 0.4s ease,
    border-color 0.4s ease,
    background 0.4s ease;
}


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

  border-color: rgba(244, 180, 0, 0.55);

  background: var(--white);
}


/* =========================================================
   ETHOS ICON
   ========================================================= */

.ethos-icon {
  display: flex;

  align-items: center;

  justify-content: center;

  width: 42px;

  height: 42px;

  margin-bottom: 30px;

  border: 1px solid rgba(244, 180, 0, 0.35);

  color: var(--gold);

  font-size: 16px;

  transition:
    background 0.35s ease,
    color 0.35s ease;
}


.ethos-card:hover .ethos-icon {
  background: var(--gold);

  color: var(--green-dark);
}


/* =========================================================
   ETHOS CONTENT
   ========================================================= */

.ethos-content {
  max-width: 540px;
}


.ethos-content h3 {
  margin: 0 0 16px;

  font-family: "Manrope", sans-serif;

  font-size: clamp(22px, 2vw, 28px);

  line-height: 1.15;

  font-weight: 800;

  letter-spacing: -0.025em;

  color: var(--green-dark);
}


.ethos-content p {
  margin: 0;

  font-family: "DM Sans", sans-serif;

  font-size: 15px;

  line-height: 1.75;

  color: #666;
}


/* =========================================================
   GOLD ACCENT
   ========================================================= */

.ethos-accent {
  position: absolute;

  left: 0;

  bottom: 0;

  width: 0;

  height: 3px;

  background: var(--gold);

  transition: width 0.45s ease;
}


.ethos-card:hover .ethos-accent {
  width: 100%;
}


/* =========================================================
   SUBTLE BACKGROUND DETAIL
   ========================================================= */

.ethos-section::after {
  content: "";

  position: absolute;

  right: -180px;

  top: 120px;

  width: 420px;

  height: 420px;

  border: 1px solid rgba(244, 180, 0, 0.07);

  border-radius: 50%;

  pointer-events: none;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

  .ethos-section {
    padding: 90px 0;
  }

  .ethos-header {
    margin-bottom: 55px;
  }

  .ethos-grid {
    gap: 18px;
  }

  .ethos-card {
    padding: 32px;
  }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 650px) {

  .ethos-section {
    padding: 75px 0;
  }

  .ethos-header {
    margin-bottom: 42px;
  }

  .ethos-header h2 {
    font-size: clamp(36px, 10vw, 48px);
  }

  .ethos-header > p {
    font-size: 15px;

    line-height: 1.7;
  }

  .ethos-grid {
    grid-template-columns: 1fr;

    gap: 16px;
  }

  .ethos-card {
    min-height: auto;

    padding: 30px 26px 34px;
  }

  .ethos-icon {
    width: 38px;

    height: 38px;

    margin-bottom: 24px;
  }

  .ethos-content h3 {
    font-size: 23px;

    line-height: 1.2;
  }

  .ethos-content p {
    font-size: 14px;

    line-height: 1.7;
  }

}

/* =========================================================
   SERVICES HERO
   ========================================================= */

.services-hero {
  position: relative;

  min-height: 620px;

  display: flex;

  align-items: center;

  background: var(--green-dark);

  overflow: hidden;
}


/* =========================================================
   SUBTLE ARCHITECTURAL BACKGROUND
   ========================================================= */

.services-hero-pattern {
  position: absolute;

  inset: 0;

  pointer-events: none;

  opacity: 0.18;

  background-image:
    linear-gradient(
      rgba(244, 180, 0, 0.12) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(244, 180, 0, 0.12) 1px,
      transparent 1px
    );

  background-size: 80px 80px;

  mask-image:
    linear-gradient(
      to right,
      transparent,
      black 35%,
      black 100%
    );

  -webkit-mask-image:
    linear-gradient(
      to right,
      transparent,
      black 35%,
      black 100%
    );
}


/* =========================================================
   HERO INNER
   ========================================================= */

.services-hero-inner {
  position: relative;

  z-index: 2;

  width: min(1180px, 90%);

  margin: 0 auto;

  /*
   * Extra top spacing keeps the hero content
   * comfortably separated from the navbar.
   */
  padding: 155px 0 105px;
}


/* =========================================================
   EYEBROW
   ========================================================= */

.services-hero .section-eyebrow {
  display: flex;

  align-items: center;

  gap: 12px;

  margin-bottom: 28px;

  color: var(--gold);

  font-family: "DM Sans", sans-serif;

  font-size: 12px;

  font-weight: 800;

  letter-spacing: 0.16em;

  text-transform: uppercase;
}


.services-hero .section-eyebrow span {
  width: 34px;

  height: 1px;

  background: var(--gold);

  flex-shrink: 0;
}


/* =========================================================
   MAIN HEADING
   ========================================================= */

.services-hero h1 {
  max-width: 900px;

  margin: 0;

  font-family: "Manrope", sans-serif;

  font-size: clamp(52px, 7vw, 92px);

  line-height: 0.98;

  letter-spacing: -0.055em;

  font-weight: 800;

  color: var(--white);
}


.services-hero h1 em {
  display: inline;

  color: var(--gold);

  font-style: normal;
}


/* =========================================================
   DESCRIPTION
   ========================================================= */

.services-hero p {
  max-width: 600px;

  margin: 35px 0 0;

  font-family: "DM Sans", sans-serif;

  font-size: 17px;

  line-height: 1.8;

  color: rgba(255, 255, 255, 0.72);
}


/* =========================================================
   GOLD DETAIL LINE
   ========================================================= */

.services-hero-line {
  width: 120px;

  height: 2px;

  margin-top: 45px;

  background: var(--gold);
}


/* =========================================================
   SUBTLE DECORATIVE CIRCLE
   ========================================================= */

.services-hero::after {
  content: "";

  position: absolute;

  right: -180px;

  bottom: -300px;

  width: 650px;

  height: 650px;

  border: 1px solid rgba(244, 180, 0, 0.13);

  border-radius: 50%;

  pointer-events: none;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

  .services-hero {
    min-height: 560px;
  }


  .services-hero-inner {
    width: min(92%, 900px);

    padding: 140px 0 90px;
  }


  .services-hero h1 {
    max-width: 760px;

    font-size: clamp(50px, 8vw, 76px);
  }


  .services-hero p {
    max-width: 620px;
  }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

  .services-hero {
    min-height: auto;
  }


  .services-hero-inner {
    width: min(92%, 520px);

    /*
     * Still enough breathing room below
     * the mobile navbar.
     */
    padding: 125px 0 80px;
  }


  .services-hero .section-eyebrow {
    margin-bottom: 22px;

    font-size: 11px;

    letter-spacing: 0.14em;
  }


  .services-hero .section-eyebrow span {
    width: 28px;
  }


  .services-hero h1 {
    max-width: 100%;

    font-size: clamp(42px, 11vw, 58px);

    line-height: 1.02;

    letter-spacing: -0.045em;
  }


  .services-hero p {
    max-width: 100%;

    margin-top: 28px;

    font-size: 15px;

    line-height: 1.75;
  }


  .services-hero-line {
    width: 90px;

    height: 2px;

    margin-top: 35px;
  }


  .services-hero::after {
    right: -300px;

    bottom: -350px;

    width: 600px;

    height: 600px;
  }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 380px) {

  .services-hero-inner {
    padding-top: 115px;

    padding-bottom: 70px;
  }


  .services-hero h1 {
    font-size: 40px;
  }


  .services-hero p {
    font-size: 14px;
  }

}



```css
/* =========================================================
   SERVICES — CORE CAPABILITIES
   ========================================================= */

.services-catalog {
  position: relative;

  padding: 120px 0;

  background: var(--white);

  overflow: hidden;
}


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

.services-catalog-header {
  max-width: 760px;

  margin-bottom: 65px;
}


/* =========================================================
   EYEBROW
   ========================================================= */

.services-catalog-header .section-eyebrow {
  display: flex;

  align-items: center;

  gap: 12px;

  margin-bottom: 20px;

  color: var(--gold);

  font-family: "DM Sans", sans-serif;

  font-size: 12px;

  font-weight: 800;

  letter-spacing: 0.16em;

  text-transform: uppercase;
}


.services-catalog-header .section-eyebrow span {
  width: 34px;

  height: 1px;

  background: var(--gold);
}


/* =========================================================
   HEADING
   ========================================================= */

.services-catalog-header h2 {
  margin: 0;

  font-family: "Manrope", sans-serif;

  font-size: clamp(42px, 5vw, 64px);

  line-height: 1.04;

  letter-spacing: -0.05em;

  font-weight: 800;

  color: var(--green-dark);
}


.services-catalog-header h2 em {
  color: var(--gold);

  font-style: normal;
}


/* =========================================================
   INTRO TEXT
   ========================================================= */

.services-catalog-header > p {
  max-width: 650px;

  margin: 25px 0 0;

  font-family: "DM Sans", sans-serif;

  font-size: 16px;

  line-height: 1.8;

  color: rgba(20, 42, 34, 0.68);
}


/* =========================================================
   SERVICE GRID
   ========================================================= */

.services-catalog-grid {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 24px;
}


/* =========================================================
   SERVICE CARD
   ========================================================= */

.service-card {
  position: relative;

  display: flex;

  flex-direction: column;

  min-height: 390px;

  padding: 38px;

  background: #f8f8f5;

  border: 1px solid rgba(20, 42, 34, 0.08);

  transition:
    transform 0.4s ease,
    background 0.4s ease,
    border-color 0.4s ease,
    box-shadow 0.4s ease;

  overflow: hidden;
}


/* =========================================================
   GOLD ACCENT
   ========================================================= */

.service-card::before {
  content: "";

  position: absolute;

  left: 0;

  top: 0;

  width: 0;

  height: 3px;

  background: var(--gold);

  transition: width 0.45s ease;
}


.service-card:hover::before {
  width: 100%;
}


.service-card:hover {
  transform: translateY(-7px);

  background: var(--white);

  border-color: rgba(244, 180, 0, 0.28);

  box-shadow: 0 20px 50px rgba(20, 42, 34, 0.08);
}


/* =========================================================
   CARD TOP
   ========================================================= */

.service-card-top {
  display: flex;

  align-items: flex-start;

  justify-content: space-between;
}


/* =========================================================
   SERVICE ICON
   ========================================================= */

.service-card-icon {
  width: 58px;

  height: 58px;

  display: flex;

  align-items: center;

  justify-content: center;

  border: 1px solid rgba(244, 180, 0, 0.28);

  color: var(--gold);

  font-size: 22px;

  transition:
    background 0.4s ease,
    color 0.4s ease,
    transform 0.4s ease;
}


.service-card:hover .service-card-icon {
  background: var(--gold);

  color: var(--green-dark);

  transform: translateY(-3px);
}


/* =========================================================
   NUMBER
   ========================================================= */

.service-card-number {
  font-family: "Manrope", sans-serif;

  font-size: 13px;

  font-weight: 800;

  letter-spacing: 0.12em;

  color: rgba(20, 42, 34, 0.38);
}


/* =========================================================
   CARD CONTENT
   ========================================================= */

.service-card-content {
  margin-top: 55px;
}


.service-card-content h3 {
  max-width: 500px;

  margin: 0;

  font-family: "Manrope", sans-serif;

  font-size: clamp(25px, 2.5vw, 34px);

  line-height: 1.12;

  letter-spacing: -0.035em;

  font-weight: 800;

  color: var(--green-dark);
}


.service-card-content p {
  max-width: 520px;

  margin: 18px 0 0;

  font-family: "DM Sans", sans-serif;

  font-size: 15px;

  line-height: 1.75;

  color: rgba(20, 42, 34, 0.65);
}


/* =========================================================
   LEARN MORE BUTTON
   ========================================================= */

.service-card-button {
  display: inline-flex;

  align-items: center;

  gap: 12px;

  width: fit-content;

  margin-top: auto;

  padding-top: 30px;

  color: var(--green-dark);

  font-family: "DM Sans", sans-serif;

  font-size: 13px;

  font-weight: 800;

  letter-spacing: 0.08em;

  text-transform: uppercase;

  text-decoration: none;

  transition: color 0.3s ease;
}


.service-card-button span {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  width: 30px;

  height: 30px;

  border: 1px solid rgba(20, 42, 34, 0.2);

  font-size: 16px;

  transition:
    transform 0.35s ease,
    background 0.35s ease,
    color 0.35s ease,
    border-color 0.35s ease;
}


.service-card:hover .service-card-button {
  color: var(--gold);
}


.service-card:hover .service-card-button span {
  transform: translateX(4px);

  background: var(--gold);

  border-color: var(--gold);

  color: var(--green-dark);
}


/* =========================================================
   SUBTLE BACKGROUND DETAIL
   ========================================================= */

.services-catalog::after {
  content: "";

  position: absolute;

  right: -220px;

  bottom: -300px;

  width: 600px;

  height: 600px;

  border: 1px solid rgba(244, 180, 0, 0.07);

  border-radius: 50%;

  pointer-events: none;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

  .services-catalog {
    padding: 95px 0;
  }


  .services-catalog-header {
    margin-bottom: 50px;
  }


  .services-catalog-grid {
    gap: 20px;
  }


  .service-card {
    min-height: 370px;

    padding: 32px;
  }


  .service-card-content {
    margin-top: 45px;
  }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 650px) {

  .services-catalog {
    padding: 75px 0;
  }


  .services-catalog-header {
    margin-bottom: 40px;
  }


  .services-catalog-header h2 {
    font-size: clamp(38px, 10vw, 50px);

    line-height: 1.05;
  }


  .services-catalog-header > p {
    margin-top: 20px;

    font-size: 15px;

    line-height: 1.75;
  }


  .services-catalog-grid {
    grid-template-columns: 1fr;

    gap: 18px;
  }


  .service-card {
    min-height: 350px;

    padding: 28px;
  }


  .service-card-icon {
    width: 52px;

    height: 52px;

    font-size: 20px;
  }


  .service-card-content {
    margin-top: 42px;
  }


  .service-card-content h3 {
    font-size: 27px;

    line-height: 1.12;
  }


  .service-card-content p {
    font-size: 14px;

    line-height: 1.7;
  }


  .service-card-button {
    padding-top: 25px;
  }

}



/* =========================================================
   SERVICES LISTING SECTION
   ========================================================= */

.services-list-section {
  position: relative;

  padding: 120px 0;

  background: var(--white);

  overflow: hidden;
}


/* =========================================================
   SERVICES CONTAINER
   ========================================================= */

.services-list-container {
  width: min(1180px, 90%);

  margin: 0 auto;
}


/* =========================================================
   SECTION HEADING
   ========================================================= */

.services-list-header {
  display: flex;

  align-items: center;

  justify-content: center;

  margin-bottom: 75px;

  text-align: center;
}


/* =========================================================
   OUR SERVICES LABEL
   ========================================================= */

.services-list-header .section-eyebrow {
  display: flex;

  align-items: center;

  justify-content: center;

  gap: 15px;

  margin: 0;

  color: var(--gold);

  font-family: "DM Sans", sans-serif;

  font-size: 15px;

  font-weight: 800;

  letter-spacing: 0.18em;

  text-transform: uppercase;
}


.services-list-header .section-eyebrow span {
  display: block;

  width: 45px;

  height: 1px;

  background: var(--gold);

  flex-shrink: 0;
}


/* =========================================================
   SERVICES GRID
   ========================================================= */

.services-cards {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 28px;
}


/* =========================================================
   SERVICE CARD
   ========================================================= */

.service-card {
  position: relative;

  display: flex;

  flex-direction: column;

  min-height: 430px;

  padding: 42px;

  background: #f7f7f4;

  border: 1px solid rgba(20, 50, 40, 0.08);

  overflow: hidden;

  transition:
    transform 0.4s ease,
    background-color 0.4s ease,
    border-color 0.4s ease,
    box-shadow 0.4s ease;
}


.service-card:hover {
  transform: translateY(-8px);

  background: var(--white);

  border-color: rgba(244, 180, 0, 0.35);

  box-shadow: 0 24px 55px rgba(20, 50, 40, 0.10);
}


/* =========================================================
   CARD NUMBER
   ========================================================= */

.service-card-number {
  position: absolute;

  top: 40px;

  right: 42px;

  font-family: "Manrope", sans-serif;

  font-size: 13px;

  font-weight: 800;

  letter-spacing: 0.12em;

  color: rgba(20, 50, 40, 0.25);
}


/* =========================================================
   CARD ICON
   ========================================================= */

.service-card-icon {
  width: 68px;

  height: 68px;

  display: flex;

  align-items: center;

  justify-content: center;

  margin-bottom: 40px;

  background: var(--green-dark);

  color: var(--gold);

  font-size: 26px;

  transition:
    background-color 0.35s ease,
    color 0.35s ease,
    transform 0.35s ease;
}


.service-card:hover .service-card-icon {
  background: var(--gold);

  color: var(--green-dark);

  transform: translateY(-3px);
}


/* =========================================================
   CARD CONTENT
   ========================================================= */

.service-card-content {
  flex: 1;
}


.service-card-content h3 {
  max-width: 500px;

  margin: 0;

  font-family: "Manrope", sans-serif;

  font-size: clamp(28px, 3vw, 38px);

  line-height: 1.1;

  letter-spacing: -0.035em;

  font-weight: 800;

  color: var(--green-dark);
}


.service-card-content p {
  max-width: 510px;

  margin: 20px 0 0;

  font-family: "DM Sans", sans-serif;

  font-size: 15px;

  line-height: 1.75;

  color: rgba(20, 50, 40, 0.65);
}


/* =========================================================
   LEARN MORE BUTTON
   ========================================================= */

.service-card-button {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  align-self: flex-start;

  gap: 14px;

  margin-top: 35px;

  padding: 15px 24px;

  background: var(--green-dark);

  color: var(--white);

  border: 1px solid var(--green-dark);

  font-family: "DM Sans", sans-serif;

  font-size: 13px;

  font-weight: 800;

  letter-spacing: 0.04em;

  text-transform: uppercase;

  text-decoration: none;

  transition:
    background-color 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease;
}


.service-card-button:hover {
  background: #183d31;

  color: var(--white);

  border-color: #183d31;

  transform: translateY(-2px);
}


.service-card-button span {
  font-size: 17px;

  line-height: 1;

  transition: transform 0.3s ease;
}


.service-card-button:hover span {
  transform: translateX(4px);
}


/* =========================================================
   DECORATIVE CARD DETAIL
   ========================================================= */

.service-card::after {
  content: "";

  position: absolute;

  right: -80px;

  bottom: -80px;

  width: 180px;

  height: 180px;

  border: 1px solid rgba(244, 180, 0, 0.16);

  border-radius: 50%;

  pointer-events: none;

  transition:
    transform 0.5s ease,
    border-color 0.5s ease;
}


.service-card:hover::after {
  transform: scale(1.25);

  border-color: rgba(244, 180, 0, 0.28);
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

  .services-list-section {
    padding: 95px 0;
  }


  .services-list-header {
    margin-bottom: 60px;
  }


  .services-cards {
    gap: 22px;
  }


  .service-card {
    min-height: 410px;

    padding: 35px;
  }


  .service-card-number {
    top: 34px;

    right: 35px;
  }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 650px) {

  .services-list-section {
    padding: 80px 0;
  }


  .services-list-container {
    width: min(92%, 520px);
  }


  .services-list-header {
    margin-bottom: 45px;
  }


  .services-list-header .section-eyebrow {
    gap: 12px;

    font-size: 12px;

    letter-spacing: 0.16em;
  }


  .services-list-header .section-eyebrow span {
    width: 28px;
  }


  .services-cards {
    grid-template-columns: 1fr;

    gap: 20px;
  }


  .service-card {
    min-height: 400px;

    padding: 30px;
  }


  .service-card-icon {
    width: 58px;

    height: 58px;

    margin-bottom: 35px;

    font-size: 22px;
  }


  .service-card-number {
    top: 30px;

    right: 30px;

    font-size: 11px;
  }


  .service-card-content h3 {
    font-size: 29px;

    line-height: 1.1;
  }


  .service-card-content p {
    margin-top: 17px;

    font-size: 14px;

    line-height: 1.7;
  }


  .service-card-button {
    margin-top: 30px;

    padding: 14px 21px;

    font-size: 12px;
  }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 380px) {

  .services-list-section {
    padding: 70px 0;
  }


  .services-list-header .section-eyebrow {
    font-size: 11px;
  }


  .services-list-header .section-eyebrow span {
    width: 24px;
  }


  .service-card {
    min-height: 380px;

    padding: 26px;
  }


  .service-card-number {
    top: 26px;

    right: 26px;
  }


  .service-card-content h3 {
    font-size: 26px;
  }

}


/* =========================================================
   SECTION — WHY WORK WITH NEMSHED
   ========================================================= */

.why-nemshed-section {
  position: relative;

  padding: 120px 0;

  background: var(--white);

  overflow: hidden;
}


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

.why-nemshed-header {
  max-width: 760px;

  margin: 0 auto 70px;

  text-align: center;
}


.why-nemshed-header .section-eyebrow {
  display: flex;

  align-items: center;

  justify-content: center;

  gap: 12px;

  margin-bottom: 22px;

  color: var(--gold);

  font-family: "DM Sans", sans-serif;

  font-size: 18px;

  font-weight: 800;

  letter-spacing: 0.16em;

  text-transform: uppercase;
}


.why-nemshed-header .section-eyebrow span {
  width: 32px;

  height: 1px;

  background: var(--gold);

  flex-shrink: 0;
}


.why-nemshed-header h2 {
  margin: 0;

  font-family: "Manrope", sans-serif;

  font-size: clamp(38px, 5vw, 62px);

  line-height: 1.05;

  letter-spacing: -0.045em;

  font-weight: 800;

  color: var(--green-dark);
}


.why-nemshed-header h2 em {
  display: block;

  color: var(--gold);

  font-style: normal;
}


/* =========================================================
   BENEFITS GRID
   ========================================================= */

.why-nemshed-grid {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  border-top: 1px solid rgba(20, 59, 43, 0.15);

  border-left: 1px solid rgba(20, 59, 43, 0.15);
}


/* =========================================================
   BENEFIT ITEM
   ========================================================= */

.why-nemshed-item {
  display: flex;

  align-items: flex-start;

  gap: 28px;

  padding: 45px 42px;

  border-right: 1px solid rgba(20, 59, 43, 0.15);

  border-bottom: 1px solid rgba(20, 59, 43, 0.15);

  transition:
    background 0.35s ease,
    transform 0.35s ease;
}


.why-nemshed-item:hover {
  background: rgba(244, 180, 0, 0.045);
}


/* =========================================================
   ICON
   ========================================================= */

.why-nemshed-icon {
  flex-shrink: 0;

  width: 52px;

  height: 52px;

  display: flex;

  align-items: center;

  justify-content: center;

  border: 1px solid rgba(244, 180, 0, 0.45);

  color: var(--gold);

  font-size: 18px;

  transition:
    background 0.35s ease,
    color 0.35s ease,
    transform 0.35s ease;
}


.why-nemshed-item:hover .why-nemshed-icon {
  background: var(--gold);

  color: var(--green-dark);

  transform: translateY(-3px);
}


/* =========================================================
   CONTENT
   ========================================================= */

.why-nemshed-content {
  max-width: 430px;
}


.why-nemshed-content h3 {
  margin: 0 0 12px;

  font-family: "Manrope", sans-serif;

  font-size: 21px;

  line-height: 1.25;

  font-weight: 800;

  color: var(--green-dark);
}


.why-nemshed-content p {
  margin: 0;

  font-family: "DM Sans", sans-serif;

  font-size: 15px;

  line-height: 1.75;

  color: rgba(20, 59, 43, 0.68);
}


/* =========================================================
   SUBTLE BACKGROUND DETAIL
   ========================================================= */

.why-nemshed-section::after {
  content: "";

  position: absolute;

  right: -240px;

  bottom: -300px;

  width: 600px;

  height: 600px;

  border: 1px solid rgba(244, 180, 0, 0.09);

  border-radius: 50%;

  pointer-events: none;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

  .why-nemshed-section {
    padding: 95px 0;
  }


  .why-nemshed-header {
    margin-bottom: 55px;
  }


  .why-nemshed-item {
    padding: 38px 30px;

    gap: 22px;
  }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 650px) {

  .why-nemshed-section {
    padding: 80px 0;
  }


  .why-nemshed-header {
    margin-bottom: 45px;

    text-align: left;
  }


  .why-nemshed-header .section-eyebrow {
    justify-content: flex-start;
  }


  .why-nemshed-header h2 {
    font-size: clamp(36px, 10vw, 48px);

    line-height: 1.08;
  }


  .why-nemshed-grid {
    grid-template-columns: 1fr;
  }


  .why-nemshed-item {
    padding: 32px 24px;

    gap: 18px;
  }


  .why-nemshed-icon {
    width: 46px;

    height: 46px;

    font-size: 16px;
  }


  .why-nemshed-content h3 {
    font-size: 19px;

    margin-bottom: 9px;
  }


  .why-nemshed-content p {
    font-size: 14px;

    line-height: 1.7;
  }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 380px) {

  .why-nemshed-item {
    padding: 28px 20px;

    gap: 15px;
  }


  .why-nemshed-icon {
    width: 42px;

    height: 42px;
  }

}







/* =========================================================
   GENERAL CONSTRUCTION — INTRO SECTION
   ========================================================= */
/* =========================================================
   SERVICE DETAIL PAGE — FIXED NAVBAR
   ========================================================= */

body.service-detail-page .site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;

  background: var(--green-dark);

  box-shadow:
    0 8px 25px rgba(0, 0, 0, 0.12);
}


/* Keep navbar above page content */

body.service-detail-page .navbar {
  position: relative;
  z-index: 1001;
}


/* Navigation menu */

body.service-detail-page .nav-menu {
  z-index: 1002;
}


/* Mobile menu button */

body.service-detail-page .menu-toggle {
  position: relative;
  z-index: 1003;
}


/* =========================================================
   KEEP BACKGROUND WHEN SCROLLING
   ========================================================= */

body.service-detail-page .site-header.scrolled {
  background: var(--green-dark);
}


/* =========================================================
   MOBILE SERVICE DETAIL NAVBAR
   ========================================================= */

@media (max-width: 900px) {

  body.service-detail-page .site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;

    background: var(--green-dark);
  }


  body.service-detail-page .nav-menu {
    z-index: 1004;
  }


  body.service-detail-page .menu-toggle {
    z-index: 1005;
  }

}


/* =========================================================
   GENERAL CONSTRUCTION PAGE
   ========================================================= */


/* =========================================================
   GENERAL CONTAINER
   ========================================================= */

.gc-container {
  width: min(1180px, 90%);
  margin: 0 auto;
}


/* =========================================================
   BACK TO SERVICES
   ========================================================= */

.gc-back {
  padding: 125px 0 25px;
  background: var(--white);
}

.gc-back-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;

  color: var(--green-dark);
  text-decoration: none;

  font-size: 14px;
  font-weight: 600;

  transition: color 0.3s ease;
}

.gc-back-link span {
  font-size: 18px;
  transition: transform 0.3s ease;
}

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

.gc-back-link:hover span {
  transform: translateX(-4px);
}


/* =========================================================
   GENERAL CONSTRUCTION HEADER
   ========================================================= */

.gc-header {
  padding: 30px 0 70px;
  background: var(--white);
  text-align: center;
}

.gc-header h1 {
  margin: 0;

  color: var(--gold);

  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.05;
  font-weight: 700;
}


/* =========================================================
   INTRO SECTION
   ========================================================= */

.gc-intro {
  padding: 20px 0 120px;
  background: var(--white);
}

.gc-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 75px;
  align-items: center;
}


/* =========================================================
   INTRO IMAGE
   ========================================================= */

.gc-intro-image {
  width: 100%;
  height: 620px;
  overflow: hidden;
}

.gc-intro-image img {
  width: 100%;
  height: 100%;
  display: block;

  object-fit: cover;

  transition: transform 0.6s ease;
}

.gc-intro-image:hover img {
  transform: scale(1.03);
}


/* =========================================================
   INTRO CONTENT
   ========================================================= */

.gc-intro-content {
  max-width: 560px;
}

.gc-intro-content h2 {
  margin: 0 0 28px;

  color: var(--green-dark);

  font-size: clamp(32px, 3.5vw, 48px);
  line-height: 1.15;
  font-weight: 600;
}


/* PREMIUM GOLD EMPHASIS */

.gc-intro-content h2 em {
  color: var(--gold);
  font-style: italic;
  font-weight: 600;
}


.gc-intro-content p {
  margin: 0 0 20px;

  color: #555;

  font-size: 16px;
  line-height: 1.9;
}

.gc-intro-content p:last-child {
  margin-bottom: 0;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

  .gc-intro-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .gc-intro-image {
    height: 500px;
  }

  .gc-intro-content {
    max-width: 100%;
  }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

  .gc-back {
    padding: 105px 0 20px;
  }

  .gc-header {
    padding: 25px 0 50px;
  }

  .gc-header h1 {
    font-size: 42px;
    line-height: 1.1;
  }

  .gc-intro {
    padding: 10px 0 80px;
  }

  .gc-intro-grid {
    gap: 40px;
  }

  .gc-intro-image {
    height: 380px;
  }

  .gc-intro-content h2 {
    font-size: 32px;
    line-height: 1.2;
    margin-bottom: 22px;
  }

  .gc-intro-content p {
    font-size: 15px;
    line-height: 1.8;
  }

}

/* =========================================================
   FOUR MAJOR CONSTRUCTION SERVICES
   ========================================================= */

.gc-services {
  padding: 110px 0 130px;
  background: #f8f8f6;
}


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

.gc-services-header {
  text-align: center;
  margin-bottom: 80px;
}

.gc-services-header h2 {
  margin: 0;

  color: var(--gold);

  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.15;
  font-weight: 600;
}

.gc-header-line {
  display: block;

  width: 55px;
  height: 3px;

  margin: 22px auto 0;

  background: var(--green-dark);
}


/* =========================================================
   INDIVIDUAL SERVICE
   ========================================================= */

.gc-service {
  display: grid;
  grid-template-columns: 1fr 1fr;

  gap: 75px;
  align-items: center;

  margin-bottom: 110px;
}

.gc-service:last-child {
  margin-bottom: 0;
}


/* =========================================================
   SERVICE IMAGE
   ========================================================= */

.gc-service-image {
  width: 100%;
  height: 560px;

  overflow: hidden;
}

.gc-service-image img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;

  transition: transform 0.6s ease;
}

.gc-service:hover .gc-service-image img {
  transform: scale(1.035);
}


/* =========================================================
   SERVICE CONTENT
   ========================================================= */

.gc-service-content {
  max-width: 570px;
}

.gc-service-number {
  display: block;

  margin-bottom: 14px;

  color: var(--gold);

  font-size: 18px;
  font-weight: 700;
  letter-spacing: 2px;
}


.gc-service-content h3 {
  margin: 0 0 24px;

  color: var(--green-dark);

  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.15;
  font-weight: 600;
}


.gc-service-content p {
  margin: 0 0 20px;

  color: #555;

  font-size: 15.5px;
  line-height: 1.85;
}


/* =========================================================
   SERVICE SUBHEADING
   ========================================================= */

.gc-service-content h4 {
  margin: 30px 0 17px;

  color: var(--green-dark);

  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}


/* =========================================================
   SERVICE LIST
   ========================================================= */

.gc-service-list {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 12px 25px;

  margin: 0 0 25px;
  padding: 0;

  list-style: none;
}

.gc-service-list li {
  position: relative;

  padding-left: 17px;

  color: #555;

  font-size: 14px;
  line-height: 1.5;
}

.gc-service-list li::before {
  content: "";

  position: absolute;
  left: 0;
  top: 9px;

  width: 5px;
  height: 5px;

  border-radius: 50%;

  background: var(--gold);
}


/* =========================================================
   CLOSING SERVICE TEXT
   ========================================================= */

.gc-service-closing {
  padding-top: 18px;

  border-top: 1px solid rgba(0, 0, 0, 0.1);

  color: var(--green-dark) !important;

  font-size: 15px !important;
  font-weight: 500;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

  .gc-services {
    padding: 90px 0 100px;
  }

  .gc-services-header {
    margin-bottom: 60px;
  }

  .gc-service {
    grid-template-columns: 1fr;

    gap: 40px;

    margin-bottom: 85px;
  }

  .gc-service-image {
    height: 500px;
  }

  .gc-service-content {
    max-width: 100%;
  }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

  .gc-services {
    padding: 75px 0 80px;
  }

  .gc-services-header {
    margin-bottom: 50px;
  }

  .gc-services-header h2 {
    font-size: 34px;
    line-height: 1.2;
  }

  .gc-header-line {
    margin-top: 18px;
  }


  /* SERVICE */

  .gc-service {
    gap: 30px;

    margin-bottom: 70px;
  }


  /* IMAGE */

  .gc-service-image {
    height: 330px;
  }


  /* NUMBER */

  .gc-service-number {
    margin-bottom: 10px;

    font-size: 16px;
  }


  /* HEADING */

  .gc-service-content h3 {
    margin-bottom: 20px;

    font-size: 30px;
    line-height: 1.2;
  }


  /* TEXT */

  .gc-service-content p {
    font-size: 15px;
    line-height: 1.8;
  }


  /* LIST */

  .gc-service-list {
    grid-template-columns: 1fr;

    gap: 10px;
  }

  .gc-service-list li {
    font-size: 14px;
  }


  /* CLOSING */

  .gc-service-closing {
    margin-top: 22px !important;

    padding-top: 17px;
  }

}

/* =========================================================
   FROM CONCEPT TO COMPLETION
   ========================================================= */

.gc-process {
  padding: 120px 0 125px;

  background: var(--green-dark);

  color: var(--white);
}


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

.gc-process-header {
  max-width: 800px;

  margin: 0 auto 70px;

  text-align: center;
}

.gc-process-header h2 {
  margin: 0;

  color: var(--gold);

  font-size: clamp(36px, 4vw, 52px);
  line-height: 1.15;
  font-weight: 600;
  text-transform: capitalize;
}

.gc-process-line {
  display: block;

  width: 55px;
  height: 3px;

  margin: 22px auto 28px;

  background: var(--gold);
}

.gc-process-header p {
  margin: 0;

  color: rgba(255, 255, 255, 0.82);

  font-size: 16px;
  line-height: 1.9;
}


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

.gc-process-grid {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 20px;
}


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

.gc-process-card {
  min-height: 300px;

  padding: 38px 28px;

  border: 1px solid rgba(255, 255, 255, 0.16);

  background: rgba(255, 255, 255, 0.035);

  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    background 0.35s ease;
}

.gc-process-card:hover {
  transform: translateY(-7px);

  border-color: var(--gold);

  background: rgba(255, 255, 255, 0.07);
}


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

.gc-process-icon {
  display: block;

  margin-bottom: 28px;

  color: var(--gold);

  font-size: 14px;
}


/* =========================================================
   PROCESS CARD HEADING
   ========================================================= */

.gc-process-card h3 {
  margin: 0 0 17px;

  color: var(--white);

  font-size: 22px;
  line-height: 1.25;
  font-weight: 600;
}


/* =========================================================
   PROCESS CARD TEXT
   ========================================================= */

.gc-process-card p {
  margin: 0;

  color: rgba(255, 255, 255, 0.68);

  font-size: 14px;
  line-height: 1.8;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1000px) {

  .gc-process {
    padding: 95px 0 100px;
  }

  .gc-process-grid {
    grid-template-columns: repeat(2, 1fr);

    gap: 20px;
  }

  .gc-process-card {
    min-height: 270px;
  }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

  .gc-process {
    padding: 75px 0 80px;
  }

  .gc-process-header {
    margin-bottom: 45px;
  }

  .gc-process-header h2 {
    font-size: 34px;
    line-height: 1.2;
  }

  .gc-process-line {
    margin: 18px auto 23px;
  }

  .gc-process-header p {
    font-size: 15px;
    line-height: 1.8;
  }


  /* STACK ALL FOUR CARDS */

  .gc-process-grid {
    grid-template-columns: 1fr;

    gap: 15px;
  }


  /* MOBILE CARD */

  .gc-process-card {
    min-height: auto;

    padding: 30px 25px;
  }

  .gc-process-card:hover {
    transform: none;
  }

  .gc-process-icon {
    margin-bottom: 20px;
  }

  .gc-process-card h3 {
    font-size: 21px;
  }

  .gc-process-card p {
    font-size: 14px;
    line-height: 1.8;
  }

}

/* =========================================================
   GENERAL CONSTRUCTION CTA
   ========================================================= */

.gc-cta {
  padding: 100px 0;

  background: #f3f1eb;

  text-align: center;
}


/* =========================================================
   CTA CONTENT
   ========================================================= */

.gc-cta-content {
  max-width: 760px;

  margin: 0 auto;
}

.gc-cta-content h2 {
  margin: 0 0 20px;

  color: var(--green-dark);

  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1.12;
  font-weight: 600;
}

.gc-cta-content h2 em {
  color: var(--gold);
  font-style: italic;
  font-weight: 600;
}

.gc-cta-content p {
  margin: 0 0 32px;

  color: #666;

  font-size: 16px;
  line-height: 1.8;
}


/* =========================================================
   CTA BUTTON
   ========================================================= */

.gc-cta-button {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  gap: 12px;

  padding: 15px 28px;

  background: var(--gold);
  color: var(--green-dark);

  text-decoration: none;

  font-size: 13px;
  font-weight: 700;

  letter-spacing: 0.8px;
  text-transform: uppercase;

  transition:
    background 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease;
}

.gc-cta-button span {
  font-size: 18px;

  transition: transform 0.3s ease;
}

.gc-cta-button:hover {
  background: var(--green-dark);
  color: var(--white);

  transform: translateY(-2px);
}

.gc-cta-button:hover span {
  transform: translateX(4px);
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

  .gc-cta {
    padding: 75px 0;
  }

  .gc-cta-content h2 {
    font-size: 34px;
    line-height: 1.2;
  }

  .gc-cta-content p {
    font-size: 15px;
    line-height: 1.8;

    margin-bottom: 28px;
  }

  .gc-cta-button {
    padding: 14px 24px;

    font-size: 12px;
  }

}




/* =========================================================
   INTERIOR & EXTERIOR DESIGN — SERVICE PAGE
   ========================================================= */

.design-page {
  width: 100%;
  background: var(--white);
  color: var(--green-dark);
  overflow: hidden;
}


/* =========================================================
   BACK TO SERVICES
   ========================================================= */

.design-back-wrap {
  width: min(1180px, 90%);
  margin: 0 auto;
  padding-top: 145px;
}


.design-back {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  color: var(--green-dark);

  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 700;

  text-decoration: none;

  transition: color 0.25s ease;
}


.design-back span {
  color: var(--gold);
  font-size: 20px;
  line-height: 1;

  transition: transform 0.25s ease;
}


.design-back:hover {
  color: var(--gold);
}


.design-back:hover span {
  transform: translateX(-5px);
}


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

.design-intro {
  width: min(1180px, 90%);
  margin: 0 auto;

  padding: 55px 0 80px;

  text-align: center;
}


.design-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;

  margin-bottom: 25px;

  color: var(--gold);

  font-family: "DM Sans", sans-serif;
  font-size: 12px;
  font-weight: 800;

  letter-spacing: 0.18em;
  text-transform: uppercase;
}


.design-eyebrow span {
  width: 34px;
  height: 1px;

  background: var(--gold);
}


.design-intro h1 {
  margin: 0;

  font-family: "Manrope", sans-serif;

  font-size: clamp(48px, 6.5vw, 82px);
  line-height: 1.02;

  letter-spacing: -0.055em;

  font-weight: 800;

  color: var(--green-dark);
}


.design-intro h1 em {
  color: var(--gold);
  font-style: normal;
}


.design-title-line {
  width: 90px;
  height: 2px;

  margin: 36px auto 0;

  background: var(--gold);
}


/* =========================================================
   INTRODUCTION SECTION
   ========================================================= */

.design-about {
  width: 100%;
  padding: 20px 0 120px;
}


.design-about-container {
  width: min(1180px, 90%);
  margin: 0 auto;

  display: grid;

  grid-template-columns: 1.05fr 0.95fr;

  gap: 70px;

  align-items: center;
}


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

.design-about-image {
  width: 100%;

  overflow: hidden;

  background: #eeeeee;
}


.design-about-image img {
  display: block;

  width: 100%;
  height: auto;

  max-width: 100%;

  object-fit: contain;

  transition: transform 0.6s ease;
}


.design-about-image:hover img {
  transform: scale(1.02);
}


/* =========================================================
   CONTENT
   ========================================================= */

.design-about-content {
  padding: 10px 0;
}


.design-content-eyebrow {
  margin-bottom: 18px;

  color: var(--gold);

  font-family: "DM Sans", sans-serif;

  font-size: 11px;
  font-weight: 800;

  letter-spacing: 0.18em;
}


.design-about-content h2 {
  max-width: 560px;

  margin: 0 0 28px;

  color: var(--green-dark);

  font-family: "Manrope", sans-serif;

  font-size: clamp(34px, 4vw, 52px);

  line-height: 1.08;

  letter-spacing: -0.045em;

  font-weight: 800;
}


.design-about-content h2 em {
  color: var(--gold);
  font-style: normal;
}


.design-about-content p {
  max-width: 570px;

  margin: 0 0 20px;

  color: #555555;

  font-family: "DM Sans", sans-serif;

  font-size: 16px;

  line-height: 1.8;
}


/* =========================================================
   INTERIOR SERVICES
   ========================================================= */

.design-services {
  width: 100%;

  padding: 110px 0 120px;

  background: #f7f7f4;
}


.design-services-container {
  width: min(1180px, 90%);
  margin: 0 auto;
}


.design-services-header {
  max-width: 760px;

  margin: 0 auto 60px;

  text-align: center;
}


.design-services-header h2 {
  margin: 0;

  color: var(--green-dark);

  font-family: "Manrope", sans-serif;

  font-size: clamp(40px, 5vw, 60px);

  line-height: 1.05;

  letter-spacing: -0.045em;

  font-weight: 800;
}


.design-services-header h2 em {
  color: var(--gold);
  font-style: normal;
}


.design-services-header p {
  max-width: 650px;

  margin: 22px auto 0;

  color: #5b625e;

  font-family: "DM Sans", sans-serif;

  font-size: 16px;

  line-height: 1.8;
}


/* =========================================================
   SERVICES LIST
   ========================================================= */

.design-services-list {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  border-top: 1px solid rgba(0, 45, 38, 0.12);
}


.design-service-item {
  display: flex;

  align-items: center;

  gap: 20px;

  min-height: 72px;

  padding: 14px 20px;

  border-bottom: 1px solid rgba(0, 45, 38, 0.12);
}


.design-service-item:nth-child(odd) {
  border-right: 1px solid rgba(0, 45, 38, 0.12);
}


.design-service-item span {
  min-width: 28px;

  color: var(--gold);

  font-family: "DM Sans", sans-serif;

  font-size: 11px;

  font-weight: 800;
}


.design-service-item p {
  margin: 0;

  color: var(--green-dark);

  font-family: "DM Sans", sans-serif;

  font-size: 15px;

  font-weight: 600;

  line-height: 1.5;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

  .design-back-wrap {
    width: min(92%, 900px);
    padding-top: 130px;
  }


  .design-intro {
    width: min(92%, 900px);
    padding: 50px 0 65px;
  }


  .design-about-container {
    width: min(92%, 900px);

    grid-template-columns: 1fr;

    gap: 50px;
  }


  .design-about {
    padding-bottom: 90px;
  }


  .design-about-content {
    padding: 0;
  }


  .design-services-container {
    width: min(92%, 900px);
  }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

  .design-back-wrap {
    width: 92%;
    padding-top: 115px;
  }


  .design-back {
    font-size: 13px;
  }


  .design-intro {
    width: 92%;
    padding: 45px 0 55px;
  }


  .design-eyebrow {
    gap: 9px;
    margin-bottom: 20px;

    font-size: 10px;
    letter-spacing: 0.14em;
  }


  .design-eyebrow span {
    width: 25px;
  }


  .design-intro h1 {
    font-size: clamp(40px, 11vw, 56px);
    line-height: 1.04;
  }


  .design-title-line {
    width: 70px;
    margin-top: 28px;
  }


  .design-about {
    padding: 0 0 75px;
  }


  .design-about-container {
    width: 92%;
    gap: 38px;
  }


  .design-content-eyebrow {
    font-size: 10px;
    letter-spacing: 0.15em;
  }


  .design-about-content h2 {
    font-size: 34px;
    line-height: 1.08;
    margin-bottom: 22px;
  }


  .design-about-content p {
    font-size: 15px;
    line-height: 1.75;
  }


  .design-services {
    padding: 80px 0 85px;
  }


  .design-services-container {
    width: 92%;
  }


  .design-services-header {
    margin-bottom: 42px;
  }


  .design-services-header h2 {
    font-size: clamp(35px, 9vw, 46px);
  }


  .design-services-header p {
    font-size: 15px;
    line-height: 1.7;
  }


  .design-services-list {
    grid-template-columns: 1fr;
  }


  .design-service-item {
    min-height: 64px;
    padding: 13px 10px;
  }


  .design-service-item:nth-child(odd) {
    border-right: none;
  }


  .design-service-item p {
    font-size: 14px;
  }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 380px) {

  .design-intro h1 {
    font-size: 38px;
  }


  .design-about-content h2 {
    font-size: 31px;
  }

}


/* =========================================================
   INTERIOR & EXTERIOR DESIGN — EXTERIOR SECTION
========================================================= */

.design-exterior {
  width: 100%;
  padding: 110px 0 120px;
  background: var(--white);
  overflow: hidden;
}

.design-exterior-container {
  width: min(1180px, 90%);
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;

  align-items: center;
}


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

.design-exterior-image {
  width: 100%;
  overflow: hidden;
  background: #eeeeee;
}

.design-exterior-image img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: contain;

  transition: transform 0.6s ease;
}

.design-exterior-image:hover img {
  transform: scale(1.02);
}


/* =========================================================
   CONTENT
========================================================= */

.design-exterior-content {
  width: 100%;
}

.design-section-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;

  margin-bottom: 22px;

  color: var(--gold);

  font-family: "DM Sans", sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.design-section-eyebrow::before {
  content: "";

  width: 34px;
  height: 1px;

  background: var(--gold);
}


.design-exterior-content h2 {
  margin: 0 0 25px;

  color: var(--green-dark);

  font-family: "Manrope", sans-serif;

  font-size: clamp(38px, 4.5vw, 56px);

  line-height: 1.08;

  letter-spacing: -0.045em;

  font-weight: 800;
}

.design-exterior-content h2 em {
  color: var(--gold);
  font-style: normal;
}


.design-intro-text {
  max-width: 600px;

  margin: 0 0 32px;

  color: #5b625e;

  font-family: "DM Sans", sans-serif;

  font-size: 16px;

  line-height: 1.8;
}


/* =========================================================
   SERVICE LIST
========================================================= */

.design-exterior-content h3 {
  margin: 0 0 18px;

  color: var(--green-dark);

  font-family: "Manrope", sans-serif;

  font-size: 20px;

  font-weight: 800;
}


.design-services-list {
  display: grid;

  grid-template-columns: 1fr 1fr;

  border-top: 1px solid rgba(0, 45, 38, 0.12);
}


.design-service-item {
  display: flex;

  align-items: center;

  gap: 14px;

  min-height: 58px;

  padding: 10px 12px 10px 0;

  border-bottom: 1px solid rgba(0, 45, 38, 0.10);
}


.design-service-item span {
  min-width: 25px;

  color: var(--gold);

  font-family: "DM Sans", sans-serif;

  font-size: 11px;

  font-weight: 800;
}


.design-service-item p {
  margin: 0;

  color: var(--green-dark);

  font-family: "DM Sans", sans-serif;

  font-size: 14px;

  line-height: 1.4;

  font-weight: 600;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

  .design-exterior {
    padding: 90px 0 100px;
  }

  .design-exterior-container {
    width: min(92%, 760px);

    grid-template-columns: 1fr;

    gap: 50px;
  }

  .design-exterior-content h2 {
    font-size: clamp(36px, 7vw, 52px);
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

  .design-exterior {
    padding: 75px 0 85px;
  }

  .design-exterior-container {
    width: 92%;

    gap: 38px;
  }

  .design-section-eyebrow {
    font-size: 10px;
    letter-spacing: 0.14em;
  }

  .design-section-eyebrow::before {
    width: 26px;
  }

  .design-exterior-content h2 {
    font-size: clamp(34px, 9vw, 45px);

    line-height: 1.08;

    margin-bottom: 20px;
  }

  .design-intro-text {
    font-size: 15px;
    line-height: 1.75;

    margin-bottom: 28px;
  }

  .design-exterior-content h3 {
    font-size: 19px;
  }

  .design-services-list {
    grid-template-columns: 1fr;
  }

  .design-service-item {
    min-height: 55px;
  }

  .design-service-item p {
    font-size: 14px;
  }

}


/* =========================================================
   INTERIOR & EXTERIOR DESIGN — GET A QUOTE CTA
========================================================= */

.design-quote-cta {
  position: relative;

  width: 100%;

  padding: 115px 0 120px;

  background: #f7f7f4;

  overflow: hidden;
}


/* =========================================================
   DECORATIVE DETAILS
========================================================= */

.design-quote-cta::before {
  content: "";

  position: absolute;

  width: 500px;
  height: 500px;

  left: -280px;
  bottom: -300px;

  border: 1px solid rgba(0, 45, 38, 0.08);

  border-radius: 50%;

  pointer-events: none;
}


.design-quote-cta::after {
  content: "";

  position: absolute;

  width: 450px;
  height: 450px;

  right: -250px;
  top: -280px;

  border: 1px solid rgba(244, 180, 0, 0.14);

  border-radius: 50%;

  pointer-events: none;
}


/* =========================================================
   CONTAINER
========================================================= */

.design-quote-container {
  position: relative;

  z-index: 2;

  width: min(850px, 90%);

  margin: 0 auto;

  text-align: center;
}


/* =========================================================
   EYEBROW
========================================================= */

.design-quote-eyebrow {
  display: flex;

  align-items: center;

  justify-content: center;

  gap: 12px;

  margin-bottom: 25px;

  color: var(--gold);

  font-family: "DM Sans", sans-serif;

  font-size: 11px;

  font-weight: 800;

  letter-spacing: 0.18em;

  text-transform: uppercase;
}


.design-quote-eyebrow span {
  width: 32px;

  height: 1px;

  background: var(--gold);

  flex-shrink: 0;
}


/* =========================================================
   HEADING
========================================================= */

.design-quote-container h2 {
  margin: 0;

  color: var(--green-dark);

  font-family: "Manrope", sans-serif;

  font-size: clamp(44px, 6vw, 70px);

  line-height: 1.02;

  letter-spacing: -0.05em;

  font-weight: 800;
}


.design-quote-container h2 em {
  color: var(--gold);

  font-style: normal;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.design-quote-container > p {
  max-width: 650px;

  margin: 25px auto 0;

  color: #5b625e;

  font-family: "DM Sans", sans-serif;

  font-size: 16px;

  line-height: 1.8;
}


/* =========================================================
   BUTTON
========================================================= */

.design-quote-button {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  gap: 22px;

  margin-top: 35px;

  min-width: 190px;

  padding: 17px 28px;

  background: var(--green-dark);

  color: var(--white);

  font-family: "DM Sans", sans-serif;

  font-size: 13px;

  font-weight: 700;

  letter-spacing: 0.08em;

  text-transform: uppercase;

  text-decoration: none;

  transition:
    background 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease;
}


.design-quote-button span {
  color: var(--gold);

  font-size: 19px;

  line-height: 1;

  transition:
    color 0.3s ease,
    transform 0.3s ease;
}


.design-quote-button:hover {
  background: var(--gold);

  color: var(--green-dark);

  transform: translateY(-3px);
}


.design-quote-button:hover span {
  color: var(--green-dark);

  transform: translateX(4px);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

  .design-quote-cta {
    padding: 95px 0 105px;
  }

  .design-quote-container {
    width: min(92%, 720px);
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

  .design-quote-cta {
    padding: 80px 0 85px;
  }

  .design-quote-container {
    width: 92%;
  }

  .design-quote-eyebrow {
    gap: 9px;

    font-size: 10px;

    letter-spacing: 0.14em;
  }

  .design-quote-eyebrow span {
    width: 25px;
  }

  .design-quote-container h2 {
    font-size: clamp(38px, 10vw, 52px);

    line-height: 1.06;
  }

  .design-quote-container > p {
    margin-top: 20px;

    font-size: 15px;

    line-height: 1.75;
  }

  .design-quote-button {
    width: 100%;

    max-width: 240px;

    margin-top: 30px;

    padding: 16px 24px;
  }

}



/* =========================================================
   HOTEL, APARTMENT & HOUSE FINISHING PAGE
   ========================================================= */


/* =========================================================
   CONTAINER
   ========================================================= */

.haf-container {
  width: min(1180px, 90%);
  margin: 0 auto;
}


/* =========================================================
   MAIN INTRO SECTION
   ========================================================= */

.haf-intro {
  padding: 125px 0 120px;

  background: var(--white);
}


/* =========================================================
   BACK TO SERVICES
   ========================================================= */

.haf-back {
  margin-bottom: 35px;
}

.haf-back-link {
  display: inline-flex;

  align-items: center;
  gap: 9px;

  color: var(--green-dark);

  text-decoration: none;

  font-size: 14px;
  font-weight: 600;

  transition: color 0.3s ease;
}

.haf-back-link span {
  font-size: 18px;

  transition: transform 0.3s ease;
}

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

.haf-back-link:hover span {
  transform: translateX(-4px);
}


/* =========================================================
   PAGE TITLE
   ========================================================= */

.haf-header {
  margin-bottom: 75px;

  text-align: center;
}

.haf-header h1 {
  margin: 0;

  color: var(--gold);

  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.08;
  font-weight: 700;
}


/* =========================================================
   INTRO GRID
   ========================================================= */

.haf-intro-grid {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 75px;

  align-items: center;
}


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

.haf-intro-image {
  width: 100%;
  height: 620px;

  overflow: hidden;
}

.haf-intro-image img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;

  transition: transform 0.6s ease;
}

.haf-intro-image:hover img {
  transform: scale(1.03);
}


/* =========================================================
   INTRO TEXT
   ========================================================= */

.haf-intro-content {
  max-width: 560px;
}

.haf-intro-content h2 {
  margin: 0 0 28px;

  color: var(--green-dark);

  font-size: clamp(32px, 3.5vw, 48px);
  line-height: 1.15;
  font-weight: 600;
}


/* GOLD EMPHASIS */

.haf-intro-content h2 em {
  color: var(--gold);

  font-style: italic;
  font-weight: 600;
}


.haf-intro-content p {
  margin: 0 0 20px;

  color: #555;

  font-size: 16px;
  line-height: 1.9;
}

.haf-intro-content p:last-child {
  margin-bottom: 0;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

  .haf-intro {
    padding: 110px 0 100px;
  }

  .haf-intro-grid {
    grid-template-columns: 1fr;

    gap: 50px;
  }

  .haf-intro-image {
    height: 500px;
  }

  .haf-intro-content {
    max-width: 100%;
  }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

  .haf-intro {
    padding: 105px 0 80px;
  }

  .haf-back {
    margin-bottom: 28px;
  }

  .haf-header {
    margin-bottom: 50px;
  }

  .haf-header h1 {
    font-size: 40px;
    line-height: 1.12;
  }

  .haf-intro-grid {
    gap: 40px;
  }

  .haf-intro-image {
    height: 380px;
  }

  .haf-intro-content h2 {
    margin-bottom: 22px;

    font-size: 32px;
    line-height: 1.2;
  }

  .haf-intro-content p {
    font-size: 15px;
    line-height: 1.8;
  }

}


/* =========================================================
   OUR MAJOR FINISHING SERVICES
   ========================================================= */

.haf-services {
  padding: 110px 0 130px;

  background: #f8f8f6;
}


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

.haf-services-header {
  margin-bottom: 80px;

  text-align: center;
}

.haf-services-header h2 {
  margin: 0;

  color: var(--gold);

  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.15;
  font-weight: 600;
}

.haf-header-line {
  display: block;

  width: 55px;
  height: 3px;

  margin: 22px auto 0;

  background: var(--green-dark);
}


/* =========================================================
   INDIVIDUAL SERVICE
   ========================================================= */

.haf-service {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 75px;

  align-items: center;

  margin-bottom: 110px;
}

.haf-service:last-child {
  margin-bottom: 0;
}


/* =========================================================
   SERVICE IMAGE
   ========================================================= */

.haf-service-image {
  width: 100%;
  height: 560px;

  overflow: hidden;
}

.haf-service-image img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;

  transition: transform 0.6s ease;
}

.haf-service:hover .haf-service-image img {
  transform: scale(1.035);
}


/* =========================================================
   SERVICE CONTENT
   ========================================================= */

.haf-service-content {
  max-width: 570px;
}


/* =========================================================
   SERVICE LABEL
   ========================================================= */

.haf-service-label {
  display: block;

  margin-bottom: 12px;

  color: var(--gold);

  font-size: 12px;
  font-weight: 700;

  letter-spacing: 1.8px;
  text-transform: uppercase;
}


/* =========================================================
   SERVICE TITLE + NUMBER
   ========================================================= */

.haf-service-title {
  display: flex;

  align-items: baseline;

  gap: 14px;

  margin: 0 0 24px;
}


/* GOLD NUMBER */

.haf-service-number {
  flex-shrink: 0;

  color: var(--gold);

  font-size: 18px;
  line-height: 1;

  font-weight: 700;

  letter-spacing: 1px;
}


/* SERVICE HEADING */

.haf-service-title h3 {
  margin: 0;

  color: var(--green-dark);

  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.15;

  font-weight: 600;
}


/* =========================================================
   SERVICE PARAGRAPHS
   ========================================================= */

.haf-service-content p {
  margin: 0 0 20px;

  color: #555;

  font-size: 15.5px;
  line-height: 1.85;
}


/* =========================================================
   SERVICE SUBHEADING
   ========================================================= */

.haf-service-content h4 {
  margin: 30px 0 17px;

  color: var(--green-dark);

  font-size: 13px;
  font-weight: 700;

  letter-spacing: 1.5px;
  text-transform: uppercase;
}


/* =========================================================
   SERVICE LIST
   ========================================================= */

.haf-service-list {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 12px 25px;

  margin: 0;
  padding: 0;

  list-style: none;
}

.haf-service-list li {
  position: relative;

  padding-left: 17px;

  color: #555;

  font-size: 14px;
  line-height: 1.5;
}

.haf-service-list li::before {
  content: "";

  position: absolute;

  left: 0;
  top: 9px;

  width: 5px;
  height: 5px;

  border-radius: 50%;

  background: var(--gold);
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

  .haf-services {
    padding: 90px 0 100px;
  }

  .haf-services-header {
    margin-bottom: 60px;
  }

  .haf-service {
    grid-template-columns: 1fr;

    gap: 40px;

    margin-bottom: 85px;
  }

  .haf-service-image {
    height: 500px;
  }

  .haf-service-content {
    max-width: 100%;
  }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

  .haf-services {
    padding: 75px 0 80px;
  }

  .haf-services-header {
    margin-bottom: 50px;
  }

  .haf-services-header h2 {
    font-size: 34px;
    line-height: 1.2;
  }

  .haf-header-line {
    margin-top: 18px;
  }


  /* =======================================================
     SERVICE
     ======================================================= */

  .haf-service {
    gap: 30px;

    margin-bottom: 70px;
  }


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

  .haf-service-image {
    height: 330px;
  }


  /* =======================================================
     TITLE + NUMBER
     ======================================================= */

  .haf-service-title {
    gap: 10px;

    margin-bottom: 20px;

    align-items: baseline;
  }

  .haf-service-number {
    font-size: 15px;

    letter-spacing: 0.5px;
  }


  /* =======================================================
     LABEL
     ======================================================= */

  .haf-service-label {
    margin-bottom: 9px;

    font-size: 11px;
  }


  /* =======================================================
     HEADING
     ======================================================= */

  .haf-service-title h3 {
    font-size: 30px;
    line-height: 1.2;
  }


  /* =======================================================
     TEXT
     ======================================================= */

  .haf-service-content p {
    font-size: 15px;
    line-height: 1.8;
  }


  /* =======================================================
     LIST
     ======================================================= */

  .haf-service-list {
    grid-template-columns: 1fr;

    gap: 10px;
  }

  .haf-service-list li {
    font-size: 14px;
  }

}


/* =========================================================
   COMPLETE FINISHING — EVERY DETAIL MATTERS
   ========================================================= */

.haf-complete {
  position: relative;

  padding: 120px 0 125px;

  background: var(--green-dark);

  color: var(--white);

  overflow: hidden;
}


/* =========================================================
   CONTAINER
   ========================================================= */

.haf-complete-container {
  width: min(1120px, 90%);

  margin: 0 auto;
}


/* =========================================================
   MAIN LAYOUT
   ========================================================= */

.haf-complete-header {
  position: relative;

  max-width: 850px;

  padding-left: 35px;

  margin-bottom: 45px;
}


/* =========================================================
   GOLD VERTICAL ACCENT
   ========================================================= */

.haf-complete-header::before {
  content: "";

  position: absolute;

  top: 5px;
  left: 0;

  width: 3px;
  height: 100%;

  background: var(--gold);
}


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

.haf-complete-header h2 {
  margin: 0;

  color: var(--white);

  font-size: clamp(38px, 4.5vw, 58px);

  line-height: 1.1;

  font-weight: 600;

  letter-spacing: -0.5px;
}

.haf-complete-header h2 em {
  color: var(--gold);

  font-style: italic;

  font-weight: 500;
}


/* =========================================================
   GOLD UNDERLINE
   ========================================================= */

.haf-complete-line {
  display: block;

  width: 55px;
  height: 3px;

  margin-top: 24px;

  background: var(--gold);
}


/* =========================================================
   CONTENT
   ========================================================= */

.haf-complete-content {
  max-width: 820px;

  margin-left: 35px;

  padding-left: 0;
}

.haf-complete-content p {
  margin: 0 0 25px;

  color: rgba(255, 255, 255, 0.82);

  font-size: 16px;

  line-height: 1.9;

  text-align: left;
}

.haf-complete-content p:last-child {
  margin-bottom: 0;
}


/* =========================================================
   SUBTLE BACKGROUND DETAIL
   ========================================================= */

.haf-complete::after {
  content: "";

  position: absolute;

  right: -180px;
  bottom: -220px;

  width: 500px;
  height: 500px;

  border: 1px solid rgba(255, 255, 255, 0.06);

  border-radius: 50%;

  pointer-events: none;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

  .haf-complete {
    padding: 95px 0 105px;
  }

  .haf-complete-header {
    max-width: 750px;

    margin-bottom: 38px;
  }

  .haf-complete-content {
    max-width: 700px;
  }

  .haf-complete-content p {
    font-size: 15.5px;

    line-height: 1.85;
  }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

  .haf-complete {
    padding: 80px 0 85px;
  }

  .haf-complete-container {
    width: 88%;
  }


  /* HEADER */

  .haf-complete-header {
    padding-left: 24px;

    margin-bottom: 35px;
  }

  .haf-complete-header::before {
    width: 2px;

    top: 3px;
  }

  .haf-complete-header h2 {
    font-size: 34px;

    line-height: 1.18;
  }

  .haf-complete-line {
    width: 45px;

    margin-top: 20px;
  }


  /* CONTENT */

  .haf-complete-content {
    margin-left: 24px;

    max-width: calc(100% - 24px);
  }

  .haf-complete-content p {
    font-size: 15px;

    line-height: 1.8;

    margin-bottom: 20px;
  }

}


/* =========================================================
   FINISHING CTA
   ========================================================= */

.haf-cta {
  padding: 105px 0 110px;

  background: #f5f3ee;
}


/* =========================================================
   CONTAINER
   ========================================================= */

.haf-cta-container {
  width: min(900px, 90%);

  margin: 0 auto;

  text-align: center;
}


/* =========================================================
   CONTENT
   ========================================================= */

.haf-cta-content h2 {
  margin: 0;

  color: var(--green-dark);

  font-size: clamp(38px, 5vw, 60px);

  line-height: 1.1;

  font-weight: 600;

  letter-spacing: -0.5px;
}

.haf-cta-content h2 em {
  color: var(--gold);

  font-style: italic;

  font-weight: 500;
}


/* =========================================================
   LINE
   ========================================================= */

.haf-cta-line {
  display: block;

  width: 55px;
  height: 3px;

  margin: 23px auto 25px;

  background: var(--gold);
}


/* =========================================================
   CTA TEXT
   ========================================================= */

.haf-cta-content p {
  margin: 0 0 32px;

  color: #555;

  font-size: 17px;

  line-height: 1.7;
}

.haf-cta-content p strong {
  color: var(--green-dark);

  font-weight: 600;
}


/* =========================================================
   BUTTON
   ========================================================= */

.haf-cta-button {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  gap: 12px;

  padding: 15px 28px;

  background: var(--green-dark);

  color: var(--white);

  text-decoration: none;

  font-size: 13px;

  font-weight: 700;

  letter-spacing: 1px;

  text-transform: uppercase;

  transition:
    background 0.3s ease,
    transform 0.3s ease;
}

.haf-cta-button span {
  font-size: 18px;

  line-height: 1;

  transition: transform 0.3s ease;
}

.haf-cta-button:hover {
  background: var(--gold);

  transform: translateY(-2px);
}

.haf-cta-button:hover span {
  transform: translateX(4px);
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

  .haf-cta {
    padding: 80px 0 85px;
  }

  .haf-cta-container {
    width: 88%;
  }

  .haf-cta-content h2 {
    font-size: 36px;

    line-height: 1.18;
  }

  .haf-cta-line {
    width: 45px;

    margin: 19px auto 22px;
  }

  .haf-cta-content p {
    font-size: 15px;

    line-height: 1.8;

    margin-bottom: 28px;
  }

  .haf-cta-button {
    padding: 14px 24px;

    font-size: 12px;
  }

}




/* =========================================================
   REAL ESTATE DEVELOPMENT PAGE
   ========================================================= */


/* =========================================================
   CONTAINER
   ========================================================= */

.red-container {
  width: min(1180px, 90%);

  margin: 0 auto;
}


/* =========================================================
   BACK TO SERVICES
   ========================================================= */

.red-back {
  padding: 125px 0 25px;

  background: var(--white);
}

.red-back-link {
  display: inline-flex;

  align-items: center;

  gap: 9px;

  color: var(--green-dark);

  text-decoration: none;

  font-size: 14px;

  font-weight: 600;

  transition: color 0.3s ease;
}

.red-back-link span {
  font-size: 18px;

  transition: transform 0.3s ease;
}

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

.red-back-link:hover span {
  transform: translateX(-4px);
}


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

.red-header {
  padding: 30px 0 65px;

  background: var(--white);

  text-align: center;
}

.red-header h1 {
  margin: 0;

  color: var(--gold);

  font-size: clamp(36px, 5vw, 60px);

  line-height: 1.1;

  font-weight: 600;
}

.red-header-line {
  display: block;

  width: 55px;
  height: 3px;

  margin: 22px auto 0;

  background: var(--green-dark);
}


/* =========================================================
   INTRO SECTION
   ========================================================= */

.red-intro {
  padding: 20px 0 120px;

  background: var(--white);
}


/* =========================================================
   INTRO GRID
   ========================================================= */

.red-intro-grid {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 75px;

  align-items: center;
}


/* =========================================================
   INTRO IMAGE
   ========================================================= */

.red-intro-image {
  width: 100%;

  height: 600px;

  overflow: hidden;
}

.red-intro-image img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;

  transition: transform 0.6s ease;
}

.red-intro-image:hover img {
  transform: scale(1.03);
}


/* =========================================================
   INTRO CONTENT
   ========================================================= */

.red-intro-content {
  max-width: 570px;
}


/* =========================================================
   INTRO HEADING
   ========================================================= */

.red-intro-content h2 {
  margin: 0 0 28px;

  color: var(--green-dark);

  font-size: clamp(32px, 3.5vw, 48px);

  line-height: 1.15;

  font-weight: 600;
}

.red-intro-content h2 em {
  color: var(--gold);

  font-style: italic;

  font-weight: 500;
}


/* =========================================================
   INTRO PARAGRAPHS
   ========================================================= */

.red-intro-content p {
  margin: 0 0 20px;

  color: #555;

  font-size: 16px;

  line-height: 1.9;
}

.red-intro-content p:last-child {
  margin-bottom: 0;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

  .red-back {
    padding: 110px 0 22px;
  }

  .red-header {
    padding: 25px 0 55px;
  }

  .red-intro {
    padding: 10px 0 90px;
  }

  .red-intro-grid {
    grid-template-columns: 1fr;

    gap: 45px;
  }

  .red-intro-image {
    height: 500px;
  }

  .red-intro-content {
    max-width: 100%;
  }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

  .red-container {
    width: 88%;
  }


  /* BACK BUTTON */

  .red-back {
    padding: 105px 0 20px;
  }

  .red-back-link {
    font-size: 13px;
  }


  /* PAGE HEADER */

  .red-header {
    padding: 20px 0 45px;
  }

  .red-header h1 {
    font-size: 36px;

    line-height: 1.15;
  }

  .red-header-line {
    width: 45px;

    margin-top: 18px;
  }


  /* INTRO */

  .red-intro {
    padding: 5px 0 80px;
  }

  .red-intro-grid {
    gap: 35px;
  }


  /* IMAGE */

  .red-intro-image {
    height: 380px;
  }


  /* CONTENT */

  .red-intro-content h2 {
    margin-bottom: 22px;

    font-size: 32px;

    line-height: 1.2;
  }

  .red-intro-content p {
    font-size: 15px;

    line-height: 1.8;
  }

}



/* =========================================================
   REAL ESTATE DEVELOPMENT SERVICES
   ========================================================= */

.red-services {
  padding: 110px 0 125px;

  background: #f8f8f6;
}


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

.red-services-header {
  margin-bottom: 80px;

  text-align: center;
}

.red-services-header h2 {
  margin: 0;

  color: var(--gold);

  font-size: clamp(34px, 4vw, 52px);

  line-height: 1.15;

  font-weight: 600;
}


/* =========================================================
   SERVICE
   ========================================================= */

.red-service {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 75px;

  align-items: center;

  margin-bottom: 110px;
}

.red-service:last-child {
  margin-bottom: 0;
}


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

.red-service-image {
  width: 100%;

  height: 560px;

  overflow: hidden;
}

.red-service-image img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;

  transition: transform 0.6s ease;
}

.red-service:hover .red-service-image img {
  transform: scale(1.035);
}


/* =========================================================
   CONTENT
   ========================================================= */

.red-service-content {
  max-width: 570px;
}


/* =========================================================
   SERVICE HEADING
   ========================================================= */

.red-service-content h3 {
  display: flex;

  align-items: baseline;

  gap: 14px;

  margin: 0 0 25px;

  color: var(--green-dark);

  font-size: clamp(29px, 3vw, 42px);

  line-height: 1.15;

  font-weight: 600;
}

.red-service-content h3 span {
  flex-shrink: 0;

  color: var(--gold);

  font-size: 17px;

  font-weight: 700;

  letter-spacing: 1px;
}


/* =========================================================
   PARAGRAPHS
   ========================================================= */

.red-service-content p {
  margin: 0 0 20px;

  color: #555;

  font-size: 15.5px;

  line-height: 1.85;
}


/* =========================================================
   SUBHEADING
   ========================================================= */

.red-service-content h4 {
  margin: 30px 0 17px;

  color: var(--green-dark);

  font-size: 13px;

  font-weight: 700;

  letter-spacing: 1.5px;

  text-transform: uppercase;
}


/* =========================================================
   SERVICE LIST
   ========================================================= */

.red-service-list {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 12px 25px;

  margin: 0 0 22px;

  padding: 0;

  list-style: none;
}

.red-service-list li {
  position: relative;

  padding-left: 17px;

  color: #555;

  font-size: 14px;

  line-height: 1.5;
}

.red-service-list li::before {
  content: "";

  position: absolute;

  left: 0;
  top: 9px;

  width: 5px;
  height: 5px;

  border-radius: 50%;

  background: var(--gold);
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

  .red-services {
    padding: 90px 0 100px;
  }

  .red-services-header {
    margin-bottom: 60px;
  }

  .red-service {
    grid-template-columns: 1fr;

    gap: 40px;

    margin-bottom: 85px;
  }

  .red-service-image {
    height: 500px;
  }

  .red-service-content {
    max-width: 100%;
  }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

  .red-services {
    padding: 75px 0 80px;
  }

  .red-services-header {
    margin-bottom: 50px;
  }

  .red-services-header h2 {
    font-size: 34px;

    line-height: 1.2;
  }


  /* SERVICE */

  .red-service {
    gap: 30px;

    margin-bottom: 70px;
  }


  /* IMAGE */

  .red-service-image {
    height: 330px;
  }


  /* HEADING */

  .red-service-content h3 {
    gap: 10px;

    margin-bottom: 20px;

    font-size: 30px;

    line-height: 1.2;
  }

  .red-service-content h3 span {
    font-size: 14px;
  }


  /* TEXT */

  .red-service-content p {
    font-size: 15px;

    line-height: 1.8;
  }


  /* LIST */

  .red-service-list {
    grid-template-columns: 1fr;

    gap: 10px;
  }

  .red-service-list li {
    font-size: 14px;
  }

}



/* =========================================================
   FROM LAND TO LANDMARK
   ========================================================= */

.red-landmark {
  position: relative;

  padding: 120px 0 125px;

  background: var(--green-dark);

  color: var(--white);

  overflow: hidden;
}


/* =========================================================
   CONTAINER
   ========================================================= */

.red-landmark-container {
  width: min(1120px, 90%);

  margin: 0 auto;
}


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

.red-landmark-header {
  position: relative;

  max-width: 850px;

  padding-left: 35px;

  margin-bottom: 45px;
}


/* GOLD VERTICAL ACCENT */

.red-landmark-header::before {
  content: "";

  position: absolute;

  top: 5px;
  left: 0;

  width: 3px;
  height: 100%;

  background: var(--gold);
}


/* HEADING */

.red-landmark-header h2 {
  margin: 0;

  color: var(--white);

  font-size: clamp(40px, 5vw, 60px);

  line-height: 1.1;

  font-weight: 600;
}

.red-landmark-header h2 em {
  color: var(--gold);

  font-style: italic;

  font-weight: 500;
}


/* =========================================================
   LINE
   ========================================================= */

.red-landmark-line {
  display: block;

  width: 55px;
  height: 3px;

  margin-top: 24px;

  background: var(--gold);
}


/* =========================================================
   CONTENT
   ========================================================= */

.red-landmark-content {
  max-width: 820px;

  margin-left: 35px;
}

.red-landmark-content p {
  margin: 0 0 25px;

  color: rgba(255, 255, 255, 0.82);

  font-size: 16px;

  line-height: 1.9;

  text-align: left;
}

.red-landmark-content p:last-child {
  margin-bottom: 0;
}


/* =========================================================
   SUBTLE BACKGROUND DETAIL
   ========================================================= */

.red-landmark::after {
  content: "";

  position: absolute;

  right: -180px;
  bottom: -220px;

  width: 500px;
  height: 500px;

  border: 1px solid rgba(255, 255, 255, 0.06);

  border-radius: 50%;

  pointer-events: none;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

  .red-landmark {
    padding: 95px 0 105px;
  }

  .red-landmark-header {
    margin-bottom: 38px;
  }

  .red-landmark-content p {
    font-size: 15.5px;

    line-height: 1.85;
  }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

  .red-landmark {
    padding: 80px 0 85px;
  }

  .red-landmark-container {
    width: 88%;
  }


  /* HEADER */

  .red-landmark-header {
    padding-left: 24px;

    margin-bottom: 35px;
  }

  .red-landmark-header::before {
    width: 2px;

    top: 3px;
  }

  .red-landmark-header h2 {
    font-size: 36px;

    line-height: 1.18;
  }

  .red-landmark-line {
    width: 45px;

    margin-top: 20px;
  }


  /* CONTENT */

  .red-landmark-content {
    margin-left: 24px;

    max-width: calc(100% - 24px);
  }

  .red-landmark-content p {
    font-size: 15px;

    line-height: 1.8;

    margin-bottom: 20px;
  }

}


/* =========================================================
   REAL ESTATE CTA
   ========================================================= */

.red-cta {
  padding: 105px 0 110px;

  background: #f5f3ee;
}


/* =========================================================
   CONTAINER
   ========================================================= */

.red-cta-container {
  width: min(900px, 90%);

  margin: 0 auto;

  text-align: center;
}


/* =========================================================
   HEADING
   ========================================================= */

.red-cta-content h2 {
  margin: 0;

  color: var(--green-dark);

  font-size: clamp(38px, 5vw, 60px);

  line-height: 1.1;

  font-weight: 600;

  letter-spacing: -0.5px;
}

.red-cta-content h2 em {
  color: var(--gold);

  font-style: italic;

  font-weight: 500;
}


/* =========================================================
   GOLD LINE
   ========================================================= */

.red-cta-line {
  display: block;

  width: 55px;
  height: 3px;

  margin: 23px auto 25px;

  background: var(--gold);
}


/* =========================================================
   DESCRIPTION
   ========================================================= */

.red-cta-content p {
  max-width: 650px;

  margin: 0 auto 32px;

  color: #555;

  font-size: 17px;

  line-height: 1.7;
}


/* =========================================================
   BUTTON
   ========================================================= */

.red-cta-button {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  gap: 12px;

  padding: 15px 28px;

  background: var(--green-dark);

  color: var(--white);

  text-decoration: none;

  font-size: 13px;

  font-weight: 700;

  letter-spacing: 1px;

  text-transform: uppercase;

  transition:
    background 0.3s ease,
    transform 0.3s ease;
}

.red-cta-button span {
  font-size: 18px;

  line-height: 1;

  transition: transform 0.3s ease;
}

.red-cta-button:hover {
  background: var(--gold);

  transform: translateY(-2px);
}

.red-cta-button:hover span {
  transform: translateX(4px);
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

  .red-cta {
    padding: 80px 0 85px;
  }

  .red-cta-container {
    width: 88%;
  }

  .red-cta-content h2 {
    font-size: 36px;

    line-height: 1.18;
  }

  .red-cta-line {
    width: 45px;

    margin: 19px auto 22px;
  }

  .red-cta-content p {
    font-size: 15px;

    line-height: 1.8;

    margin-bottom: 28px;
  }

  .red-cta-button {
    padding: 14px 24px;

    font-size: 12px;
  }

}



/* =========================================================
   GET A QUOTE — PAGE HEADER
   ========================================================= */

.quote-header {
  padding: 145px 0 75px;

  background: var(--white);

  text-align: center;
}


.quote-container {
  width: min(900px, 90%);

  margin: 0 auto;
}


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

.quote-header h1 {
  margin: 0;

  color: var(--gold);

  font-size: clamp(44px, 6vw, 72px);

  line-height: 1.05;

  font-weight: 600;
}


/* =========================================================
   GOLD / GREEN LINE
   ========================================================= */

.quote-header-line {
  display: block;

  width: 55px;
  height: 3px;

  margin: 23px auto 25px;

  background: var(--green-dark);
}


/* =========================================================
   INTRO TEXT
   ========================================================= */

.quote-header p {
  max-width: 680px;

  margin: 0 auto;

  color: #555;

  font-size: 17px;

  line-height: 1.8;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

  .quote-header {
    padding: 115px 0 60px;
  }

  .quote-container {
    width: 88%;
  }

  .quote-header h1 {
    font-size: 44px;
  }

  .quote-header-line {
    width: 45px;

    margin: 18px auto 22px;
  }

  .quote-header p {
    font-size: 15px;

    line-height: 1.8;
  }

}



/* =========================================================
   GET A QUOTE PAGE
   ========================================================= */


/* =========================================================
   CONTAINER
   ========================================================= */

.quote-container {
  width: min(900px, 90%);

  margin: 0 auto;
}



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

.quote-header {
  padding: 145px 0 75px;

  background: var(--white);

  text-align: center;
}


.quote-header h1 {
  margin: 0;

  color: var(--gold);

  font-size: clamp(44px, 6vw, 72px);

  line-height: 1.05;

  font-weight: 600;
}


.quote-header-line {
  display: block;

  width: 55px;
  height: 3px;

  margin: 23px auto 25px;

  background: var(--green-dark);
}


.quote-header p {
  max-width: 680px;

  margin: 0 auto;

  color: #555;

  font-size: 17px;

  line-height: 1.8;
}



/* =========================================================
   QUOTE FORM SECTION
   ========================================================= */

.quote-form-section {
  padding: 100px 0 120px;

  background: #f8f8f6;
}


.quote-form-container {
  width: min(1180px, 90%);

  margin: 0 auto;

  display: grid;

  grid-template-columns: 0.8fr 1.2fr;

  gap: 80px;

  align-items: start;
}



/* =========================================================
   LEFT INTRODUCTION
   ========================================================= */

.quote-form-intro {
  max-width: 470px;

  padding-top: 20px;
}


.quote-form-eyebrow {
  display: block;

  margin-bottom: 15px;

  color: var(--gold);

  font-size: 12px;

  font-weight: 700;

  letter-spacing: 2px;

  text-transform: uppercase;
}


.quote-form-intro h2 {
  margin: 0;

  color: var(--green-dark);

  font-size: clamp(38px, 4vw, 54px);

  line-height: 1.1;

  font-weight: 600;
}


.quote-form-intro h2 em {
  color: var(--gold);

  font-style: italic;

  font-weight: 500;
}


.quote-form-line {
  display: block;

  width: 55px;
  height: 3px;

  margin: 23px 0 27px;

  background: var(--green-dark);
}


.quote-form-intro p {
  margin: 0 0 20px;

  color: #555;

  font-size: 16px;

  line-height: 1.85;
}


.quote-form-intro p:last-child {
  margin-bottom: 0;
}



/* =========================================================
   FORM BOX
   ========================================================= */

.quote-form-box {
  padding: 45px;

  background: var(--white);

  border: 1px solid #e8e6df;

  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.06);
}


.quote-form-box h3 {
  margin: 0 0 30px;

  color: var(--green-dark);

  font-size: 28px;

  line-height: 1.2;

  font-weight: 600;
}



/* =========================================================
   FORM FIELDS
   ========================================================= */

.quote-field {
  margin-bottom: 22px;
}


.quote-field label {
  display: block;

  margin-bottom: 8px;

  color: var(--green-dark);

  font-size: 13px;

  font-weight: 600;
}


.quote-field input,
.quote-field select,
.quote-field textarea {
  width: 100%;

  box-sizing: border-box;

  padding: 14px 15px;

  border: 1px solid #d9d7d0;

  border-radius: 0;

  outline: none;

  background: #ffffff;

  color: #333;

  font-family: inherit;

  font-size: 14px;

  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}


.quote-field input,
.quote-field select {
  height: 50px;
}


.quote-field textarea {
  min-height: 140px;

  resize: vertical;

  line-height: 1.6;
}


.quote-field input::placeholder,
.quote-field textarea::placeholder {
  color: #999;
}


.quote-field input:focus,
.quote-field select:focus,
.quote-field textarea:focus {
  border-color: var(--gold);

  box-shadow:
    0 0 0 2px rgba(190, 150, 60, 0.08);
}



/* =========================================================
   SUBMIT BUTTON
   ========================================================= */

.quote-submit {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  gap: 12px;

  width: 100%;

  margin-top: 5px;

  padding: 16px 25px;

  border: none;

  background: var(--green-dark);

  color: var(--white);

  font-family: inherit;

  font-size: 13px;

  font-weight: 700;

  letter-spacing: 1px;

  text-transform: uppercase;

  cursor: pointer;

  transition:
    background 0.3s ease,
    transform 0.3s ease,
    opacity 0.3s ease;
}


.quote-submit span {
  font-size: 18px;

  line-height: 1;

  transition: transform 0.3s ease;
}


.quote-submit:hover {
  background: var(--gold);

  transform: translateY(-2px);
}


.quote-submit:hover span {
  transform: translateX(4px);
}


.quote-submit:disabled {
  opacity: 0.7;

  cursor: wait;

  transform: none;
}



/* =========================================================
   SUCCESS POPUP OVERLAY
   ========================================================= */

.quote-success-overlay {
  position: fixed;

  inset: 0;

  z-index: 9999;

  display: flex;

  align-items: center;

  justify-content: center;

  padding: 20px;

  background: rgba(0, 0, 0, 0.62);

  opacity: 0;

  visibility: hidden;

  pointer-events: none;

  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}


.quote-success-overlay.active {
  opacity: 1;

  visibility: visible;

  pointer-events: auto;
}



/* =========================================================
   SUCCESS MODAL
   ========================================================= */

.quote-success-modal {
  position: relative;

  width: min(480px, 100%);

  padding: 50px 45px 45px;

  background: var(--white);

  text-align: center;

  box-shadow:
    0 25px 70px rgba(0, 0, 0, 0.2);

  transform:
    translateY(20px)
    scale(0.97);

  transition:
    transform 0.3s ease;
}


.quote-success-overlay.active
.quote-success-modal {
  transform:
    translateY(0)
    scale(1);
}



/* =========================================================
   CLOSE BUTTON
   ========================================================= */

.quote-success-close {
  position: absolute;

  top: 15px;
  right: 18px;

  width: 35px;
  height: 35px;

  border: none;

  background: transparent;

  color: #777;

  font-size: 28px;

  line-height: 1;

  cursor: pointer;

  transition:
    color 0.3s ease,
    transform 0.3s ease;
}


.quote-success-close:hover {
  color: var(--gold);

  transform: rotate(90deg);
}



/* =========================================================
   SUCCESS ICON
   ========================================================= */

.quote-success-icon {
  display: flex;

  align-items: center;

  justify-content: center;

  width: 65px;
  height: 65px;

  margin: 0 auto 25px;

  border: 2px solid var(--gold);

  border-radius: 50%;

  color: var(--gold);

  font-size: 30px;

  font-weight: 600;
}



/* =========================================================
   SUCCESS TITLE
   ========================================================= */

.quote-success-modal h2 {
  margin: 0;

  color: var(--green-dark);

  font-size: 36px;

  line-height: 1.15;

  font-weight: 600;
}



/* =========================================================
   SUCCESS LINE
   ========================================================= */

.quote-success-line {
  display: block;

  width: 45px;
  height: 3px;

  margin: 18px auto 22px;

  background: var(--gold);
}



/* =========================================================
   SUCCESS MESSAGE
   ========================================================= */

.quote-success-modal p {
  max-width: 390px;

  margin: 0 auto 28px;

  color: #555;

  font-size: 15px;

  line-height: 1.8;
}



/* =========================================================
   CONTINUE BUTTON
   ========================================================= */

.quote-success-button {
  padding: 14px 28px;

  border: none;

  background: var(--green-dark);

  color: var(--white);

  font-family: inherit;

  font-size: 12px;

  font-weight: 700;

  letter-spacing: 1px;

  text-transform: uppercase;

  cursor: pointer;

  transition:
    background 0.3s ease,
    transform 0.3s ease;
}


.quote-success-button:hover {
  background: var(--gold);

  transform: translateY(-2px);
}



/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

  .quote-form-section {
    padding: 85px 0 100px;
  }

  .quote-form-container {
    grid-template-columns: 1fr;

    gap: 55px;
  }

  .quote-form-intro {
    max-width: 700px;

    padding-top: 0;
  }

  .quote-form-box {
    padding: 40px;
  }

}



/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

  .quote-header {
    padding: 115px 0 60px;
  }

  .quote-container {
    width: 88%;
  }

  .quote-header h1 {
    font-size: 44px;
  }

  .quote-header-line {
    width: 45px;

    margin: 18px auto 22px;
  }

  .quote-header p {
    font-size: 15px;

    line-height: 1.8;
  }


  /* FORM SECTION */

  .quote-form-section {
    padding: 70px 0 80px;
  }

  .quote-form-container {
    width: 88%;

    gap: 40px;
  }


  /* INTRO */

  .quote-form-intro h2 {
    font-size: 36px;

    line-height: 1.18;
  }

  .quote-form-line {
    width: 45px;

    margin: 19px 0 22px;
  }

  .quote-form-intro p {
    font-size: 15px;

    line-height: 1.8;
  }


  /* FORM */

  .quote-form-box {
    padding: 30px 22px;
  }

  .quote-form-box h3 {
    margin-bottom: 25px;

    font-size: 25px;
  }


  /* FIELDS */

  .quote-field {
    margin-bottom: 19px;
  }

  .quote-field input,
  .quote-field select {
    height: 48px;
  }

  .quote-field textarea {
    min-height: 130px;
  }


  /* POPUP */

  .quote-success-modal {
    padding: 45px 25px 35px;
  }

  .quote-success-icon {
    width: 58px;
    height: 58px;

    font-size: 26px;

    margin-bottom: 20px;
  }

  .quote-success-modal h2 {
    font-size: 32px;
  }

  .quote-success-modal p {
    font-size: 14px;

    line-height: 1.75;
  }

}



/* =========================================================
   PROJECT CATEGORY SECTION
   ========================================================= */

.nemshed-project-categories {
  width: 100%;

  padding: 105px 0 120px;

  background: #f8f8f6;

  box-sizing: border-box;
}


/* =========================================================
   SECTION INNER
   ========================================================= */

.nemshed-project-categories-inner {
  width: 90%;
  max-width: 1180px;

  margin: 0 auto;

  box-sizing: border-box;
}


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

.nemshed-project-categories-header {
  width: 100%;

  margin: 0 auto 65px;

  text-align: center;

  box-sizing: border-box;
}


.nemshed-project-categories-header h2 {
  display: block;

  width: 100%;

  margin: 0;

  color: var(--gold);

  font-size: clamp(38px, 4.5vw, 56px);

  line-height: 1.15;

  font-weight: 600;

  text-align: center;
}


/* =========================================================
   DIVIDER
   ========================================================= */

.nemshed-project-categories-line {
  display: block;

  width: 55px;
  height: 3px;

  margin: 21px auto 23px;

  background: var(--green-dark);
}


/* =========================================================
   DESCRIPTION
   ========================================================= */

.nemshed-project-categories-header p {
  display: block;

  width: 100%;
  max-width: 680px;

  margin: 0 auto;

  color: #666;

  font-size: 16px;

  line-height: 1.85;

  text-align: center;
}


/* =========================================================
   PROJECT GRID
   ========================================================= */

.nemshed-project-category-grid {
  display: grid;

  grid-template-columns: repeat(2, minmax(0, 1fr));

  gap: 65px 45px;

  width: 100%;
}


/* =========================================================
   PROJECT CARD
   ========================================================= */

.nemshed-project-card {
  width: 100%;

  background: var(--white);

  overflow: hidden;

  box-sizing: border-box;

  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}


.nemshed-project-card:hover {
  transform: translateY(-5px);

  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.08);
}


/* =========================================================
   CARD IMAGE
   ========================================================= */

.nemshed-project-card-image {
  width: 100%;
  height: 390px;

  overflow: hidden;
}


.nemshed-project-card-image img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: transform 0.7s ease;
}


.nemshed-project-card:hover
.nemshed-project-card-image img {
  transform: scale(1.04);
}


/* =========================================================
   CARD CONTENT
   ========================================================= */

.nemshed-project-card-content {
  width: 100%;

  padding: 30px 32px 34px;

  box-sizing: border-box;
}


/* =========================================================
   CARD TITLE
   ========================================================= */

.nemshed-project-card-content h3 {
  margin: 0 0 15px;

  color: var(--green-dark);

  font-size: 28px;

  line-height: 1.2;

  font-weight: 600;
}


/* =========================================================
   CARD DESCRIPTION
   ========================================================= */

.nemshed-project-card-content p {
  margin: 0 0 27px;

  color: #5c5c5c;

  font-size: 15px;

  line-height: 1.8;
}


/* =========================================================
   EXPLORE PROJECTS BUTTON
   ========================================================= */

.nemshed-project-card-link {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  gap: 12px;

  min-width: 175px;

  padding: 14px 22px;

  border: 1px solid var(--green-dark);

  background: var(--green-dark);

  color: var(--white);

  text-decoration: none;

  font-size: 12px;

  font-weight: 700;

  letter-spacing: 1.3px;

  text-transform: uppercase;

  box-sizing: border-box;

  transition:
    background 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}


/* =========================================================
   BUTTON ARROW
   ========================================================= */

.nemshed-project-card-link span {
  display: inline-block;

  color: var(--gold);

  font-size: 18px;

  line-height: 1;

  transition:
    transform 0.3s ease,
    color 0.3s ease;
}


/* =========================================================
   BUTTON HOVER
   ========================================================= */

.nemshed-project-card-link:hover {
  background: var(--gold);

  border-color: var(--gold);

  color: var(--green-dark);

  transform: translateY(-2px);

  box-shadow:
    0 8px 20px rgba(0, 0, 0, 0.12);
}


.nemshed-project-card-link:hover span {
  color: var(--green-dark);

  transform: translateX(5px);
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

  .nemshed-project-categories {
    padding: 105px 0 100px;
  }


  .nemshed-project-categories-header {
    margin-bottom: 60px;
  }


  .nemshed-project-category-grid {
    gap: 50px 30px;
  }


  .nemshed-project-card-image {
    height: 330px;
  }


  .nemshed-project-card-content {
    padding: 27px 27px 30px;
  }


  .nemshed-project-card-content h3 {
    font-size: 25px;
  }


  .nemshed-project-card-link {
    min-width: 165px;

    padding: 13px 19px;
  }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

  .nemshed-project-categories {
    padding: 115px 0 80px;
  }


  .nemshed-project-categories-inner {
    width: 92%;
  }


  .nemshed-project-categories-header {
    margin-bottom: 45px;
  }


  .nemshed-project-categories-header h2 {
    font-size: 36px;
  }


  .nemshed-project-categories-header p {
    font-size: 15px;

    line-height: 1.8;
  }


  /* ONE CARD PER ROW */

  .nemshed-project-category-grid {
    grid-template-columns: 1fr;

    gap: 45px;
  }


  /* IMAGE */

  .nemshed-project-card-image {
    height: 300px;
  }


  /* CONTENT */

  .nemshed-project-card-content {
    padding: 25px 23px 29px;
  }


  .nemshed-project-card-content h3 {
    font-size: 25px;
  }


  .nemshed-project-card-content p {
    font-size: 15px;

    line-height: 1.8;
  }


  /* BUTTON */

  .nemshed-project-card-link {
    min-width: 175px;

    padding: 13px 19px;

    font-size: 11.5px;
  }

}

/* =========================================================
   FEATURED PROJECTS VIDEO SECTION
   ========================================================= */

.projects-video-section {
  width: 100%;

  padding: 110px 0 120px;

  background: var(--white);

  box-sizing: border-box;
}


/* =========================================================
   SECTION CONTAINER
   ========================================================= */

.projects-video-container {
  width: 90%;
  max-width: 1180px;

  margin: 0 auto;

  box-sizing: border-box;
}


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

.projects-video-header {
  width: 100%;

  margin: 0 auto 65px;

  text-align: center;

  box-sizing: border-box;
}


/* HEADING */

.projects-video-header h2 {
  margin: 0;

  color: var(--gold);

  font-size: clamp(38px, 4.5vw, 56px);

  line-height: 1.15;

  font-weight: 600;

  text-align: center;
}


/* DIVIDER */

.projects-video-line {
  display: block;

  width: 55px;
  height: 3px;

  margin: 21px auto 23px;

  background: var(--green-dark);
}


/* DESCRIPTION */

.projects-video-header p {
  max-width: 650px;

  margin: 0 auto;

  color: #666;

  font-size: 16px;

  line-height: 1.85;

  text-align: center;
}


/* =========================================================
   VIDEO GRID
   ========================================================= */

.projects-video-grid {
  display: grid;

  grid-template-columns: repeat(2, minmax(0, 1fr));

  gap: 35px;

  width: 100%;
}


/* =========================================================
   VIDEO ITEM
   ========================================================= */

.projects-video-item {
  width: 100%;

  overflow: hidden;

  background: #111;

  box-sizing: border-box;

  box-shadow:
    0 15px 35px rgba(0, 0, 0, 0.10);
}


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

.projects-video-item video {
  display: block;

  width: 100%;

  height: 430px;

  object-fit: cover;

  background: #111;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

  .projects-video-section {
    padding: 90px 0 100px;
  }


  .projects-video-header {
    margin-bottom: 55px;
  }


  .projects-video-grid {
    gap: 25px;
  }


  .projects-video-item video {
    height: 360px;
  }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

  .projects-video-section {
    padding: 85px 0 85px;
  }


  .projects-video-container {
    width: 92%;
  }


  .projects-video-header {
    margin-bottom: 45px;
  }


  .projects-video-header h2 {
    font-size: 36px;
  }


  .projects-video-header p {
    font-size: 15px;

    line-height: 1.8;
  }


  /* ONE VIDEO PER ROW */

  .projects-video-grid {
    grid-template-columns: 1fr;

    gap: 30px;
  }


  /* VIDEO */

  .projects-video-item video {
    width: 100%;

    height: 300px;
  }

}