:root {
    --primary-color: #050A1A; /* Dark Navy */
    --secondary-color: #C5A059; /* Champagne Gold */
    --text-color: #F8FAFC; /* Light color for navy background */
    --bg-color: #050A1A; /* Navy background */
    --gray-light: #1E293B; /* Darker navy/gray for light sections */
    --gray-medium: #94A3B8; /* Muted text color */
    --footer-bg: #2D2E32; /* Grey background for footer */
    --transition: 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    --max-width: 1600px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 110px;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--bg-color);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 300; /* Thinner for luxury */
    line-height: 1.2;
    color: #fff; /* White headings on navy */
}

p {
    font-size: 1rem;
    font-weight: 300;
    color: var(--gray-medium);
    line-height: 1.8;
}

.container {
    width: 90%;
    max-width: var(--max-width);
    margin: 0 auto;
}

/* SECTION HEADINGS - HRG STYLE */
.section-header {
    margin-bottom: 6rem;
    text-align: center;
}

.section-title {
    font-size: 5rem;
    text-transform: uppercase;
    letter-spacing: -2px;
    margin-bottom: 1rem;
    font-weight: 200;
}

.section-title span {
    font-style: italic;
    color: var(--secondary-color);
    font-weight: 300;
}

.subtitle {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 6px;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    display: block;
    font-weight: 600;
}

/* ACCENT ELEMENTS */
.v-divider {
    width: 1px;
    height: 120px;
    background-color: var(--secondary-color);
    margin: 4rem auto;
    opacity: 0.5;
}

/* BUTTONS */
.btn {
    display: inline-block;
    padding: 1.4rem 4rem;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 4px;
    font-weight: 500;
    transition: var(--transition);
    border-radius: 0;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-dark {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border: 1px solid var(--secondary-color);
}

.btn-dark:hover {
    background-color: transparent;
    color: var(--secondary-color);
}

.btn-outline {
    background-color: transparent;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.4);
}

.btn-outline:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border-color: var(--secondary-color);
}

.btn-outline-dark {
    background-color: transparent;
    color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
}

.btn-outline-dark:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

/* NAVBAR */
nav {
    height: 120px;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--transition);
    display: flex;
    align-items: center;
    overflow-x: clip;
}

nav.scrolled {
    background-color: rgba(5, 10, 26, 0.98);
    height: 90px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {

    @media (max-width: 768px) {
    .contact-form-hrg {
        display: none;
    }
}

    nav {
        height: 60px;
        position: fixed;
    }
    nav.scrolled {
        height: 60px;
    }
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    min-width: 0;
}

.logo {
    flex: 0 1 auto;
    min-width: 0;
}

.logo a {
    display: block;
}

/* Logo styling */
.logo img {
    height: 60px;
    width: auto;
    max-width: 100%;
    transition: var(--transition);
    display: block;
    filter: brightness(0) invert(1); /* Ensure logo is visible on navy */
    object-fit: contain; /* Prevent stretching */
}

nav.scrolled .logo img {
    height: 45px;
    width: auto; /* Maintain aspect ratio */
}

/* Ensure footer logo is white for contrast */
.footer-logo {
    filter: brightness(0) invert(1);
    height: 70px !important;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 4rem;
}

.nav-links a {
    text-decoration: none;
    color: #fff;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    transition: var(--transition);
    font-weight: 400;
}

nav.scrolled .nav-links a {
    color: #fff;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--secondary-color);
}

.page-header {
    min-height: 70vh;
    display: flex;
    align-items: center;
    text-align: center;
    padding: 220px 0 120px;
    background-color: #111;
    background-image:
        linear-gradient(rgba(5, 10, 26, 0.82), rgba(5, 10, 26, 0.9)),
        url("data:image/svg+xml,%3Csvg width='120' height='120' viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg stroke='%23C5A059' stroke-width='0.75' stroke-opacity='0.12'%3E%3Cpath d='M0 0h120v120H0z'/%3E%3Cpath d='M15 15h90v90H15z'/%3E%3Cpath d='M30 30h60v60H30z'/%3E%3Cpath d='M0 60h120M60 0v120'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-header .container {
    max-width: 900px;
}

.page-header h1 {
    font-size: 6rem;
    text-transform: uppercase;
    letter-spacing: -3px;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.page-header p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.75);
    max-width: 700px;
    margin: 0 auto;
}

.page-header .subtitle {
    margin-bottom: 2rem;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
[role="button"]:focus-visible {
    outline: 2px solid var(--secondary-color);
    outline-offset: 4px;
}

/* HERO SECTION CAROUSEL */
#hero {
    height: 100vh;
    height: 100svh;
    width: 100%;
    position: relative;
    overflow: hidden;
    background-color: var(--primary-color);
}

.hero-carousel {
    height: 100%;
    width: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.5s ease-in-out, visibility 1.5s;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 10, 26, 0.4); /* Consistent dark navy overlay */
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 1000px;
    text-align: center;
    color: #fff;
}

.slide-title {
    font-size: 8rem;
    text-transform: uppercase;
    letter-spacing: -5px;
    font-weight: 200;
    line-height: 0.9;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(30px);
    transition: 1s cubic-bezier(0.25, 1, 0.5, 1) 0.5s;
}

.slide-subtitle {
    font-size: 0.85rem;
    color: var(--secondary-color);
    letter-spacing: 8px;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(20px);
    transition: 1s cubic-bezier(0.25, 1, 0.5, 1) 0.3s;
}

.hero-slide.active .slide-title,
.hero-slide.active .slide-subtitle,
.hero-slide.active .hero-subtext,
.hero-slide.active .hero-btns {
    opacity: 1;
    transform: translateY(0);
}

.hero-subtext {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 4rem;
    opacity: 0;
    transform: translateY(20px);
    transition: 1s cubic-bezier(0.25, 1, 0.5, 1) 0.7s;
    font-weight: 300;
}

.hero-btns {
    display: flex;
    gap: 2.5rem;
    justify-content: center;
    opacity: 0;
    transform: translateY(20px);
    transition: 1s cubic-bezier(0.25, 1, 0.5, 1) 0.9s;
}

/* CAROUSEL NAVIGATION */
.carousel-nav {
    position: absolute;
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 10;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    padding: 0;
    appearance: none;
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    background-color: transparent;
}

.carousel-dot.active {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: scale(1.5);
}

/* SCROLL INDICATOR */
.scroll-indicator {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    opacity: 0.5;
}

.scroll-line {
    width: 1px;
    height: 80px;
    background-color: rgba(255,255,255,0.3);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--secondary-color);
    top: -100%;
    animation: scrollLineVertical 2s infinite;
}

@keyframes scrollLineVertical {
    0% { top: -100%; }
    100% { top: 100%; }
}

/* GENERAL SECTION PADDING */
section {
    padding: 180px 0;
}

/* PROJECTS GRID (EXACT HRG STYLE) */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem; /* Added gap to match HRG spacing */
    padding: 4rem;
}

.project-card {
    position: relative;
    height: 80vh;
    overflow: hidden;
    background-color: var(--primary-color);
}

/* Staggered effect like HRG */
.project-card:nth-child(even) {
    margin-top: 15rem;
}

.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 3s cubic-bezier(0.1, 1, 0.2, 1);
    filter: brightness(0.8);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(5, 10, 26, 0.9) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    color: #fff;
    opacity: 0;
    padding: 12%; /* More generous padding */
    transition: var(--transition);
}

.project-card:hover .project-overlay {
    opacity: 1;
}

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

.project-info {
    text-align: left;
    transform: translateY(40px);
    transition: var(--transition);
}

.project-card:hover .project-info {
    transform: translateY(0);
}

.project-info h3 {
    font-size: 4rem;
    color: #fff;
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-weight: 200;
    line-height: 1;
}

.project-info p {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 6px;
    color: var(--secondary-color);
    font-weight: 600;
}

@media (max-width: 992px) {
    .projects-grid {
        grid-template-columns: 1fr;
        padding: 2rem;
        gap: 2rem;
    }
    .project-card:nth-child(even) {
        margin-top: 0;
    }
    .project-card {
        height: 60vh;
    }
    .project-info h3 {
        font-size: 3rem;
    }
}

/* ABOUT SECTION - HRG STYLE */
.about-section {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.about-section h2 {
    font-size: 4rem;
    margin-bottom: 3rem;
    text-transform: uppercase;
    font-weight: 200;
}

/* ABOUT US SECTION - CENTERED REFERENCE STYLE */
#about-hrg {
    background-color: #1a1a1a; /* Dark background from image */
    background-image: 
        linear-gradient(rgba(26, 26, 26, 0.9), rgba(26, 26, 26, 0.9)),
        url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg stroke='%23C5A059' stroke-width='0.5' stroke-opacity='0.05'%3E%3Cpath d='M0 0h100v100H0z'/%3E%3Cpath d='M10 10h80v80H10z'/%3E%3Cpath d='M20 20h60v60H20z'/%3E%3Cpath d='M0 50h100M50 0v100'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    padding: 120px 0;
    text-align: center;
}

.about-section {
    max-width: 1000px;
    margin: 0 auto;
}

.about-section h2 {
    font-size: 3rem;
    color: var(--secondary-color); /* Orange/Gold color from image */
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 3rem;
    font-family: 'Inter', sans-serif;
}

.about-section p {
    font-size: 1.1rem;
    color: #fff;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-weight: 300;
    opacity: 0.9;
}

/* HOME PROJECTS SECTION - GRID REFERENCE STYLE */
#home-projects {
    background-color: #000;
    padding: 120px 0;
}

.home-projects-title {
    text-align: center;
    font-size: 3rem;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 5rem;
    font-family: 'Inter', sans-serif;
}

.projects-grid-hrg {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    padding: 0 5%;
}

.project-card-hrg {
    background-color: #111;
    overflow: hidden;
    transition: var(--transition);
}

.project-card-hrg:hover {
    transform: translateY(-10px);
}

.project-img-container {
    height: 500px;
    overflow: hidden;
    position: relative; /* Added for absolute positioning of multiple images */
}

.project-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 1s ease, transform 1s ease;
    position: absolute; /* Stack images */
    top: 0;
    left: 0;
    opacity: 0;
    z-index: 1;
}

.project-img-container img.active {
    opacity: 1;
    z-index: 2;
}

.project-card-hrg:hover .project-img-container img.active {
    transform: scale(1.05);
}

.project-content-hrg {
    padding: 2.5rem;
    text-align: left;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.project-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.project-header-row h3 {
    font-size: 1.8rem;
    color: #fff;
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: 1px;
    font-family: 'Inter', sans-serif;
}

.project-line {
    width: 40px;
    height: 1px;
    background-color: #fff;
}

.project-card-hrg p {
    font-size: 0.8rem;
    color: var(--gray-medium);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

@media (max-width: 1024px) {
    .projects-grid-hrg { grid-template-columns: 1fr; }
}

/* CITY SECTION (NAIROBI/KENYA) */
#city-section {
    position: relative;
    height: 80vh;
    overflow: hidden;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: var(--primary-color);
}

.city-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%; /* Extra height for scroll movement */
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax effect: image stays, container moves */
    filter: brightness(0.3) contrast(1.1);
    z-index: 1;
}

.city-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    padding: 0 20px;
}

.city-ghost {
    display: none; /* Removing ghost text to match the new reference image exactly */
}

.city-main-title {
    font-size: 4rem;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2rem;
    font-family: 'Inter', sans-serif; /* Matching the sans-serif look in the new image */
}

.city-text {
    max-width: 900px;
    margin: 0 auto;
}

.city-text p {
    font-size: 1rem;
    color: #fff;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    opacity: 0.8;
    font-weight: 400;
}

@media (max-width: 768px) {
    #city-section { height: auto; padding: 120px 0; }
    .city-main-title { font-size: 2.5rem; }
    .city-bg { 
        background-attachment: scroll;
        height: 100%; 
    }
}

/* TESTIMONIALS SECTION */
.testimonials-section {
    background-color: var(--gray-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
}

.testimonial-card {
    background: #fff;
    padding: 5rem 4rem;
    position: relative;
    text-align: center;
}

.testimonial-quote {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 2.5rem;
    line-height: 1.4;
    font-style: italic;
    color: var(--primary-color);
}

.testimonial-author {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--secondary-color);
    font-weight: 700;
}

/* QUICK INQUIRY SECTION - REFERENCE STYLE */
#contact-hrg {
    background-color: #1a1a1a;
    padding: 100px 0;
}

.quick-inquiry-container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    background-color: #111;
    border-radius: 4px;
    overflow: hidden;
}

/* HELP BANNER STYLE */
.help-banner {
    background-color: #111;
    padding: 60px 0;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.help-banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
}

.help-banner h2 {
    font-size: 2.5rem;
    color: #fff;
    font-weight: 400;
    margin: 0;
    letter-spacing: 1px;
}

.help-phone {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: clamp(1.2rem, 2.5vw, 2rem);
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    line-height: 1.2;
    justify-content: center;
    flex-wrap: wrap;
}

.help-phone-icon {
    color: #fff;
    font-size: 2rem;
    line-height: 1;
}

.help-phone-group {
    display: grid;
    gap: 0.85rem;
}

.help-phone span:last-child {
    white-space: normal;
    overflow-wrap: anywhere;
}

@media (max-width: 992px) {
    .help-banner-content { flex-direction: column; gap: 1.5rem; }
    .help-banner h2, .help-phone { font-size: 1.8rem; }
}

@media (max-width: 1024px) {
    .contact-grid-hrg {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    .contact-header-hrg h2 { font-size: 3.5rem; }
    .form-row-hrg { grid-template-columns: 1fr; gap: 2rem; }
}

/* FOOTER */
footer {
    background-color: var(--footer-bg);
    background-image: 
        linear-gradient(rgba(45, 46, 50, 0.95), rgba(45, 46, 50, 0.95)),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg stroke='%23C5A059' stroke-width='0.5' stroke-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    padding: 100px 0 60px;
    color: #fff;
    position: relative;
    overflow: hidden;
    border-radius: 40px 40px 0 0;
    margin-top: -40px; /* Overlap to show curve better */
    z-index: 10;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    position: relative;
    z-index: 2;
}

.footer-col h4 {
    color: var(--secondary-color);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-bottom: 2rem;
    font-weight: 700;
}

.footer-about p {
    color: rgba(255,255,255,0.4);
    max-width: 400px;
    font-size: 0.9rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: #fff;
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: rgba(255,255,255,0.2);
}

/* BACK TO TOP */
#backToTop {
    position: fixed;
    bottom: 50px;
    right: 50px;
    width: 60px;
    height: 60px;
    background-color: var(--secondary-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

#backToTop.show {
    opacity: 1;
    visibility: visible;
}

/* ABOUT PAGE SPECIFIC - HRG STYLE */
.about-header-section {
    background-color: #1a1a1a;
    background-image: 
        linear-gradient(rgba(26, 26, 26, 0.9), rgba(26, 26, 26, 0.9)),
        url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg stroke='%23C5A059' stroke-width='0.5' stroke-opacity='0.05'%3E%3Cpath d='M0 0h100v100H0z'/%3E%3Cpath d='M10 10h80v80H10z'/%3E%3Cpath d='M20 20h60v60H20z'/%3E%3Cpath d='M0 50h100M50 0v100'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    padding: 180px 0 100px;
    text-align: center;
}

.about-header-section h2 {
    color: var(--secondary-color);
    font-size: 3.5rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 4rem;
}

.about-header-section p {
    max-width: 900px;
    margin: 0 auto 2rem;
    color: #fff;
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.9;
}

/* CORE VALUES SECTION */
.values-section {
    background-color: #000;
    padding: 100px 0;
    text-align: center;
}

.values-section h2 {
    color: var(--secondary-color);
    font-size: 3rem;
    text-transform: uppercase;
    margin-bottom: 5rem;
}

.values-grid-hrg {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.value-card-hrg {
    padding: 3rem 2rem;
    background-color: #111;
    border: 1px solid rgba(255,255,255,0.05);
    transition: var(--transition);
}

.value-card-hrg:hover {
    background-color: #1a1a1a;
    border-color: var(--secondary-color);
}

.value-card-hrg h3 {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.value-card-hrg p {
    font-size: 0.9rem;
    line-height: 1.6;
}

/* MILESTONES SECTION */
.milestones-section {
    background-color: #1a1a1a;
    padding: 100px 0;
    text-align: center;
}

.milestones-section h2 {
    color: var(--secondary-color);
    font-size: 3rem;
    text-transform: uppercase;
    margin-bottom: 5rem;
}

.milestones-list {
    max-width: 1000px;
    margin: 0 auto;
    text-align: left;
}

.milestone-item {
    display: flex;
    gap: 3rem;
    padding: 2.5rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.milestone-year {
    color: var(--secondary-color);
    font-size: 1.5rem;
    font-weight: 700;
    min-width: 100px;
}

.milestone-content {
    color: #fff;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* TEAM SECTION - HRG STYLE */
.team-section {
    background-color: #000;
    padding: 120px 0;
    text-align: center;
}

.team-section h2 {
    color: var(--secondary-color);
    font-size: 3rem;
    text-transform: uppercase;
    margin-bottom: 6rem;
}

.team-grid-hrg {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.team-card-hrg {
    background-color: #111;
    overflow: hidden;
    transition: var(--transition);
    width: 300px; /* Fixed width for alignment */
}

.team-img-hrg {
    height: 350px;
    background-color: #222; /* Placeholder for images */
    overflow: hidden;
}

.team-img-hrg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.team-card-hrg:hover .team-img-hrg img {
    transform: scale(1.05);
}

.team-info-hrg {
    padding: 2rem;
    text-align: center;
}

.team-info-hrg h3 {
    font-size: 1.1rem;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.director-title {
    font-size: 0.8rem;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.director-quote {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    font-style: italic;
    position: relative;
    padding-top: 1.5rem;
    margin-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.director-quote::before {
    content: '"';
    position: absolute;
    top: 0.5rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    font-family: 'Playfair Display', serif;
    color: var(--secondary-color);
    opacity: 0.3;
}

@media (max-width: 1200px) {
    .team-grid-hrg { grid-template-columns: repeat(2, 1fr); }
    .values-grid-hrg { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .team-grid-hrg, .values-grid-hrg { grid-template-columns: 1fr; }
    .milestone-item { flex-direction: column; gap: 1rem; }
    .about-header-section h2 { font-size: 2.5rem; }
}

/* LIGHTBOX MODAL */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
}

.lightbox-content {
    position: relative;
    margin: auto;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-slider {
    width: 80%;
    height: 80%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-slider img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: none;
}

.lightbox-slider img.active {
    display: block;
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 50px;
    appearance: none;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    z-index: 2001;
    transition: var(--transition);
}

.lightbox-close:hover {
    color: var(--secondary-color);
}

.lightbox-prev, .lightbox-next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    padding: 0;
    appearance: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    transition: var(--transition);
    user-select: none;
    -webkit-user-select: none;
    font-family: inherit;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    z-index: 2005;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.lightbox-prev {
    left: 40px;
}

.lightbox-next {
    right: 40px;
}

.lightbox-prev:hover, .lightbox-next:hover {
    background-color: var(--secondary-color);
    color: #000;
    border-color: var(--secondary-color);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev:disabled, .lightbox-next:disabled {
    opacity: 0.35;
    cursor: default;
    transform: translateY(-50%);
}

@media (max-width: 768px) {
    .lightbox-prev, .lightbox-next {
        width: 45px;
        height: 45px;
        font-size: 18px;
        background-color: rgba(0, 0, 0, 0.5);
    }
    .lightbox-prev { left: 15px; }
    .lightbox-next { right: 15px; }
    .lightbox-close { right: 20px; top: 20px; font-size: 30px; }
}

.lightbox-caption {
    text-align: center;
    color: #ccc;
    padding: 20px 0;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: absolute;
    bottom: 20px;
    width: 100%;
}

.project-card-hrg {
    cursor: pointer;
}

/* CONTACT SECTION - HRG STYLE */
#contact-hrg {
    background-color: #000;
    padding: 120px 0;
}

.contact-grid-hrg {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10rem;
    align-items: start;
}

.contact-header-hrg h2 {
    font-size: 5rem;
    color: #fff;
    line-height: 1;
    margin-bottom: 2rem;
    font-weight: 700;
    text-transform: uppercase;
}

.contact-header-hrg h2 span {
    color: var(--secondary-color);
}

.v-divider {
    width: 1px;
    height: 100px;
    background-color: rgba(255,255,255,0.1);
}

.contact-details-hrg {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.detail-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.detail-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--secondary-color);
    font-weight: 700;
}

.detail-item p {
    font-size: 1.2rem;
    color: #fff;
    margin: 0;
    overflow-wrap: anywhere;
}

.contact-number-list {
    display: grid;
    gap: 0.45rem;
}

.contact-number-link {
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    line-height: 1.45;
    white-space: normal;
    overflow-wrap: anywhere;
}

.contact-number-link:hover {
    color: var(--secondary-color);
}

/* Form Styles */
.contact-form-hrg {
    background-color: #111;
    padding: 60px;
    border-radius: 4px;
}

.form-row-hrg {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.form-group-hrg {
    position: relative;
    margin-bottom: 2rem;
}

.form-group-hrg input,
.form-group-hrg textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 1rem 0;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    outline: none;
    transition: var(--transition);
}

.form-group-hrg textarea {
    resize: vertical;
    min-height: 140px;
}

.form-group-hrg input:focus,
.form-group-hrg textarea:focus {
    border-bottom-color: var(--secondary-color);
}

.form-group-hrg label {
    position: absolute;
    left: 0;
    top: 1rem;
    color: rgba(255,255,255,0.3);
    pointer-events: none;
    transition: var(--transition);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group-hrg input:focus ~ label,
.form-group-hrg input:not(:placeholder-shown) ~ label,
.form-group-hrg textarea:focus ~ label,
.form-group-hrg textarea:not(:placeholder-shown) ~ label {
    top: -1rem;
    font-size: 0.7rem;
    color: var(--secondary-color);
}

#form-message {
    min-height: 1.5rem;
    margin-top: 1.5rem;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

#form-message.info,
#form-message.success {
    color: var(--secondary-color);
}

#form-message.error {
    color: #fca5a5;
}

.btn-dark {
    background-color: #fff;
    color: #000;
    border: none;
    padding: 1.5rem 3rem;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-dark:hover {
    background-color: var(--secondary-color);
    color: #fff;
    transform: translateY(-5px);
}

/* RESPONSIVENESS */
@media (max-width: 1200px) {
    .hero-content h1 { font-size: 6rem; }
    .section-title { font-size: 4rem; }
    .sub-page .page-header h1 { font-size: 5rem; }
}

@media (max-width: 992px) {
    .projects-grid, .testimonials-grid, .footer-container {
        grid-template-columns: 1fr;
    }
    .hero-content h1 { font-size: 4rem; letter-spacing: -2px; }
    .section-title { font-size: 3rem; }
    .sub-page .page-header h1 { font-size: 4rem; }
}

/* HAMBURGER (Mobile) */
.hamburger {
    display: block;
    appearance: none;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
    width: 40px;
    height: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 0;
    transition: var(--transition);
}

.hamburger-line {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 999px;
    background-color: #fff;
    transition: transform 0.35s ease, opacity 0.35s ease;
}

.hamburger.active .hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (min-width: 769px) {
    .hamburger {
        display: none; /* Hide on desktop */
    }
}

/* Removed .bar and related animations */

/* MOBILE RESPONSIVENESS - HRG STYLE */
@media (max-width: 768px) {
    html {
        scroll-padding-top: 80px;
    }

    body,
    nav,
    section,
    #hero,
    .hero-carousel,
    .hero-slide {
        max-width: 100vw;
        overflow-x: clip;
    }

    .container {
        width: calc(100% - 32px);
        padding: 0 16px;
    }

    /* Navbar */
    nav {
        height: 60px;
    }

    .nav-container {
        width: 100%;
        max-width: 100%;
        padding: 0 16px;
    }

    .logo {
        flex: 0 1 118px;
        max-width: 118px;
    }

    .logo img {
        width: 100%;
        height: auto;
        max-width: 118px;
    }

    .nav-links {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        height: calc(100vh - 60px);
        height: calc(100svh - 60px);
        background-color: #000;
        display: none;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        z-index: 1000;
        padding: 60px 20px;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin-left: 0;
    }

    .nav-links a {
        font-size: 1rem;
        letter-spacing: 4px;
        margin-bottom: 2rem;
        display: block;
        text-align: center;
    }

    .nav-links a::after {
        display: none;
    }

    .hamburger {
        flex: 0 0 40px;
    }

    /* Hero */
    #hero {
        height: 100vh;
        height: 100svh;
        min-height: 640px;
    }

    .hero-slide {
        padding: 0 22px;
    }

    .hero-content {
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
        padding: 0;
    }

    .slide-title,
    .hero-content h1 {
        font-size: clamp(1.45rem, 7vw, 1.65rem);
        line-height: 1.05;
        letter-spacing: -0.6px;
        max-width: none;
        margin-left: auto;
        margin-right: auto;
        text-wrap: balance;
    }

    .slide-subtitle {
        font-size: 0.62rem;
        letter-spacing: 2.5px;
        margin-bottom: 1.5rem;
    }

    .hero-subtext {
        font-size: 0.88rem;
        margin-bottom: 3rem;
        padding: 0;
        line-height: 1.6;
        max-width: 19rem;
    }

    .hero-btns {
        display: none;
    }

    .carousel-nav {
        display: none;
    }

    /* Sections */
    section {
        padding: 80px 0;
    }

    .about-header-section {
        padding: 120px 0 60px;
    }

    .values-section, .milestones-section, .team-section {
        padding: 60px 0;
    }

    .values-grid-hrg {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .team-grid-hrg {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .team-img-hrg {
        height: 350px;
    }

    .milestone-item {
        flex-direction: column;
        gap: 1rem;
        padding: 2rem 0;
        text-align: center;
    }

    .milestone-year {
        font-size: 1.8rem;
        min-width: auto;
    }

    .section-title {
        font-size: 2.2rem;
        margin-bottom: 2.5rem;
    }

    /* Sub-page Headers (Redesigned) */
    .page-header {
        padding-top: 140px !important;
        height: auto !important;
        min-height: 400px !important;
        padding-bottom: 60px !important;
    }

    .page-hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .page-hero-copy h1 {
        font-size: 2.2rem !important;
        line-height: 1.2 !important;
        margin: 0 auto 1.5rem !important;
    }

    .page-hero-copy p {
        font-size: 0.95rem;
        margin: 0 auto;
    }

    .page-hero-chips {
        justify-content: center;
    }

    .page-hero-panel {
        margin: 0 auto;
        max-width: 100%;
        padding: 1.5rem;
    }

    .page-hero-panel h2 {
        font-size: 1.8rem;
    }

    /* Section Heading Split */
    .section-heading-split {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
        margin-bottom: 3rem;
    }

    .section-heading-split h2 {
        font-size: 2.5rem;
    }

    .section-heading-split p {
        margin: 0 auto;
    }

    /* Page CTA Band */
    .page-cta-band {
        flex-direction: column;
        text-align: center;
        padding: 2.5rem 1.5rem;
        gap: 1.5rem;
    }

    .page-cta-band h2 {
        font-size: 2rem;
    }

    .page-cta-actions {
        justify-content: center;
        width: 100%;
    }

    .page-cta-actions .btn {
        width: 100%;
    }

    #home-projects[style*="padding-top: 150px;"] {
        padding-top: 100px !important;
    }

    /* Projects Grid */
    .projects-grid-hrg {
        grid-template-columns: 1fr;
        padding: 0 15px;
        gap: 2.5rem;
    }

    .project-img-container {
        height: 300px;
    }

    .project-header-row h3 {
        font-size: 1.3rem;
    }

    .project-content-hrg {
        padding: 1.5rem;
    }

    /* Footer */
    footer {
        padding: 60px 0 40px;
        border-radius: 30px 30px 0 0;
        margin-top: -30px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .footer-col h4 {
        margin-bottom: 1.5rem;
    }

    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-bottom {
        margin-top: 40px;
        padding-top: 25px;
    }

    #backToTop {
        width: 50px;
        height: 50px;
        bottom: 30px;
        right: 30px;
        font-size: 1.2rem;
    }
}

/* REDESIGNED INNER PAGES */
.page-header.page-hero-about,
.page-header.page-hero-contact,
.page-header.page-hero-projects {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.page-header.page-hero-about {
    background-image:
        linear-gradient(90deg, rgba(5, 10, 26, 0.92) 0%, rgba(5, 10, 26, 0.72) 100%),
        url("GE Company Profile 2024/1.png");
}

.page-header.page-hero-contact {
    background-image:
        linear-gradient(90deg, rgba(5, 10, 26, 0.92) 0%, rgba(5, 10, 26, 0.7) 100%),
        url("WhatsApp Image 2026-04-06 at 4.29.35 PM.jpeg");
}

.page-header.page-hero-contact .page-hero-grid {
    align-items: center;
}

.page-header.page-hero-contact .contact-hero-panel {
    width: 100%;
    max-width: 560px;
    justify-self: end;
}

.page-header.page-hero-contact .page-hero-panel-label {
    margin-bottom: 1.4rem;
}

.page-header.page-hero-contact .contact-hero-links {
    gap: 0;
    border-top: 1px solid rgba(255,255,255,0.12);
}

.page-header.page-hero-contact .contact-hero-link {
    padding: 1rem 0;
}

.page-header.page-hero-contact .contact-hero-link:last-child {
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.page-header.page-hero-projects {
    background-image:
        linear-gradient(90deg, rgba(5, 10, 26, 0.92) 0%, rgba(5, 10, 26, 0.7) 100%),
        url("GE Company Profile 2024/Coconut/Main.jpg");
}

.page-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.9fr);
    gap: 3rem;
    align-items: end;
}

.page-hero-copy h1 {
    max-width: 12ch;
}

.page-hero-copy p {
    max-width: 680px;
}

.page-hero-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 2rem;
}

.page-hero-chips span {
    padding: 0.85rem 1.1rem;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 999px;
    background-color: rgba(255,255,255,0.04);
    color: #fff;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

.page-hero-panel {
    padding: 2.2rem;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.88), rgba(5, 10, 26, 0.78));
    backdrop-filter: blur(14px);
    box-shadow: 0 24px 60px rgba(0,0,0,0.25);
}

.page-hero-panel-label {
    display: inline-block;
    margin-bottom: 1rem;
    color: var(--secondary-color);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
}

.page-hero-panel h2 {
    font-size: 2rem;
    margin-bottom: 1.25rem;
}

.page-hero-points {
    list-style: none;
    display: grid;
    gap: 1rem;
}

.page-hero-points li,
.contact-hero-link,
.project-hero-stat {
    position: relative;
    padding-left: 1.25rem;
}

.page-hero-points li::before,
.contact-hero-link::before,
.project-hero-stat::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.75rem;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: var(--secondary-color);
}

.section-heading-split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
    gap: 2rem;
    align-items: end;
    margin-bottom: 3.5rem;
}

.section-heading-split h2 {
    font-size: 3.25rem;
    margin-top: 0.75rem;
}

.section-heading-split p {
    max-width: 540px;
}

.page-cta-band {
    margin-top: 4rem;
    padding: 2.5rem;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 30px;
    background: linear-gradient(135deg, rgba(197, 160, 89, 0.16), rgba(15, 23, 42, 0.88));
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.page-cta-band h2 {
    font-size: 2.5rem;
}

.page-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.about-story-redesign,
.about-leadership-redesign,
.projects-showcase-section {
    background-color: #050A1A;
}

.about-values-redesign,
.contact-page-section {
    background-color: #081120;
}

.about-milestones-redesign,
.projects-feature-section,
.contact-methods-section,
.contact-assurance-section {
    background-color: #0b1324;
}

.about-story-redesign,
.about-values-redesign,
.about-milestones-redesign,
.about-leadership-redesign,
.projects-feature-section,
.projects-showcase-section,
.contact-methods-section,
.contact-page-section,
.contact-assurance-section {
    padding: 120px 0;
}

.about-story-layout,
.projects-feature-layout,
.contact-page-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 3rem;
    align-items: center;
}

.about-story-copy h2,
.projects-feature-copy h2,
.contact-page-copy h2,
.contact-form-panel h2 {
    font-size: 3.25rem;
    margin: 0.75rem 0 1.5rem;
}

.about-story-media {
    display: grid;
    gap: 1.25rem;
}

.about-story-figure,
.projects-feature-media,
.leadership-image-wrap {
    overflow: hidden;
    border-radius: 30px;
    border: 1px solid rgba(255,255,255,0.08);
    background-color: #111827;
}

.about-story-figure img,
.projects-feature-media img,
.leadership-image-wrap img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-story-figure {
    min-height: 520px;
}

.about-story-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.about-stat-card,
.about-value-card,
.milestone-card-redesign,
.contact-step-card,
.contact-assurance-card,
.project-meta-item {
    padding: 1.4rem;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.08);
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.92), rgba(9, 15, 28, 0.96));
}

.about-stat-card strong {
    display: block;
    margin-bottom: 0.65rem;
    color: var(--secondary-color);
    font-size: 2rem;
    line-height: 1;
}

.about-stat-card span,
.project-meta-item span {
    display: block;
    color: rgba(255,255,255,0.68);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.about-values-grid-redesign,
.leadership-grid-redesign,
.projects-showcase-grid,
.contact-methods-grid,
.contact-assurance-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
}

.about-value-card {
    min-height: 240px;
}

.about-value-number,
.contact-step-number,
.project-code {
    display: inline-block;
    margin-bottom: 1rem;
    color: var(--secondary-color);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
}

.about-value-card h3,
.milestone-card-redesign h3,
.contact-step-card h3,
.contact-method-card h3,
.contact-assurance-card h3,
.project-showcase-body h3,
.leadership-content-redesign h3 {
    font-size: 1.8rem;
    margin-bottom: 0.85rem;
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
}

.milestone-track-redesign {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.milestone-card-year {
    display: inline-block;
    margin-bottom: 1rem;
    color: var(--secondary-color);
    font-size: 0.82rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 700;
}

.leadership-card-redesign {
    display: grid;
    grid-template-columns: minmax(220px, 0.9fr) minmax(0, 1fr);
    overflow: hidden;
    border-radius: 30px;
    border: 1px solid rgba(255,255,255,0.08);
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.92), rgba(9, 15, 28, 0.96));
}

.leadership-image-wrap {
    min-height: 100%;
    border: none;
    border-radius: 0;
}

.leadership-content-redesign {
    padding: 2rem;
}

.leadership-role-redesign {
    display: inline-block;
    margin-bottom: 0.9rem;
    color: var(--secondary-color);
    font-size: 0.78rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 700;
}

.leadership-quote-redesign {
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.72);
    font-size: 1rem;
    line-height: 1.7;
    font-style: italic;
}

.contact-hero-links {
    display: grid;
    gap: 1rem;
}

.contact-hero-link {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 1rem;
    align-items: start;
    color: #fff;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.contact-hero-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: rgba(197,160,89,0.14);
    color: var(--secondary-color);
    font-size: 1.25rem;
    line-height: 1;
}

.contact-hero-copy {
    display: grid;
    gap: 0.3rem;
    min-width: 0;
    padding-top: 0.15rem;
}

.contact-hero-label {
    color: rgba(255,255,255,0.66);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.contact-hero-link strong {
    color: #fff;
    font-size: 1.08rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    line-height: 1.45;
    word-break: normal;
    overflow-wrap: break-word;
}

.contact-hero-link-email strong {
    font-size: 0.96rem;
}

.contact-hero-link:hover .contact-hero-icon,
.contact-hero-link:focus-visible .contact-hero-icon {
    background: rgba(197,160,89,0.22);
}

.contact-hero-link-static {
    cursor: default;
}

.contact-method-card {
    display: block;
    padding: 2rem;
    border-radius: 28px;
    border: 1px solid rgba(255,255,255,0.08);
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.92), rgba(9, 15, 28, 0.96));
    text-decoration: none;
    transition: transform 0.35s ease, border-color 0.35s ease;
}

.contact-method-card:hover {
    transform: translateY(-6px);
    border-color: rgba(197,160,89,0.45);
}

.contact-method-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin-bottom: 1.25rem;
    border-radius: 16px;
    background-color: rgba(197,160,89,0.14);
    color: var(--secondary-color);
    font-size: 1.6rem;
}

.contact-method-card p {
    margin-bottom: 1.25rem;
    color: rgba(255,255,255,0.72);
    text-transform: none;
    letter-spacing: 0;
    font-size: 0.98rem;
}

.contact-method-link {
    display: inline-block;
    color: var(--secondary-color);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    overflow-wrap: anywhere;
}

.contact-method-numbers {
    display: grid;
    gap: 0.6rem;
}

.contact-method-number {
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    white-space: normal;
    overflow-wrap: anywhere;
    line-height: 1.5;
}

.contact-method-number:hover {
    color: #fff;
}

.contact-step-list {
    display: grid;
    gap: 1rem;
    margin-top: 2rem;
}

.contact-side-note,
.contact-form-panel {
    padding: 2.2rem;
    border-radius: 30px;
    border: 1px solid rgba(255,255,255,0.08);
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.92), rgba(9, 15, 28, 0.96));
}

.contact-side-note {
    margin-top: 2rem;
}

.contact-form-panel p {
    margin-bottom: 1.75rem;
}

.contact-submit-btn {
    width: 100%;
    margin-top: 1rem;
}

.project-hero-stats {
    display: grid;
    gap: 1rem;
}

.project-hero-stat strong {
    display: block;
    margin-bottom: 0.35rem;
    color: #fff;
    font-size: 1.25rem;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
}

.projects-feature-media {
    min-height: 560px;
}

.project-fact-list {
    display: grid;
    gap: 0.85rem;
    margin-top: 2rem;
}

.project-fact-item {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding-bottom: 0.85rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.project-fact-item span {
    color: rgba(255,255,255,0.64);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.project-fact-item strong,
.project-meta-item strong {
    display: block;
    margin-top: 0.45rem;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
}

.project-showcase-card {
    overflow: hidden;
    border-radius: 30px;
    border: 1px solid rgba(255,255,255,0.08);
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.92), rgba(9, 15, 28, 0.96));
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.project-showcase-card:hover {
    transform: translateY(-8px);
    border-color: rgba(197,160,89,0.45);
    box-shadow: 0 24px 60px rgba(0,0,0,0.22);
}

.project-showcase-card .project-img-container {
    height: 340px;
}

.project-showcase-card .project-img-container::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(5, 10, 26, 0) 0%, rgba(5, 10, 26, 0.16) 100%);
    pointer-events: none;
}

.project-showcase-body {
    display: grid;
    gap: 1rem;
    padding: 1.7rem;
}

.project-showcase-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.project-tag {
    display: inline-flex;
    align-items: center;
    padding: 0.55rem 0.9rem;
    border-radius: 999px;
    background-color: rgba(197,160,89,0.14);
    color: var(--secondary-color);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.project-showcase-body h3 {
    margin-bottom: 0;
}

.project-showcase-card p,
.project-summary {
    color: rgba(255,255,255,0.74);
    text-transform: none;
    letter-spacing: 0;
    font-size: 1rem;
    line-height: 1.75;
}

.project-meta-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
}

.project-open-hint {
    color: var(--secondary-color);
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
}

.projects-page-cta {
    margin-top: 5rem;
}

@media (max-width: 1200px) {
    .page-hero-grid,
    .about-story-layout,
    .projects-feature-layout,
    .contact-page-grid,
    .section-heading-split,
    .leadership-card-redesign {
        grid-template-columns: 1fr;
    }

    .page-header h1,
    .about-story-copy h2,
    .projects-feature-copy h2,
    .contact-page-copy h2,
    .contact-form-panel h2,
    .section-heading-split h2 {
        font-size: 2.9rem;
    }

    .page-hero-copy h1 {
        max-width: 14ch;
    }

    .page-header.page-hero-contact .contact-hero-panel {
        max-width: none;
        justify-self: stretch;
    }
}

@media (max-width: 992px) {
    .about-story-stats,
    .milestone-track-redesign,
    .contact-methods-grid,
    .contact-assurance-grid,
    .projects-showcase-grid,
    .about-values-grid-redesign,
    .leadership-grid-redesign {
        grid-template-columns: 1fr;
    }

    .page-cta-band {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    .about-story-redesign,
    .about-values-redesign,
    .about-milestones-redesign,
    .about-leadership-redesign,
    .projects-feature-section,
    .projects-showcase-section,
    .contact-methods-section,
    .contact-page-section,
    .contact-assurance-section {
        padding: 80px 0;
    }

    .page-header {
        min-height: auto;
        padding: 150px 0 80px;
    }

    .page-header h1,
    .about-story-copy h2,
    .projects-feature-copy h2,
    .contact-page-copy h2,
    .contact-form-panel h2,
    .section-heading-split h2,
    .page-cta-band h2 {
        font-size: 2.3rem;
        letter-spacing: -1px;
    }

    .page-hero-panel,
    .contact-form-panel,
    .contact-side-note,
    .page-cta-band,
    .project-showcase-body {
        padding: 1.5rem;
    }

    .page-hero-chips {
        gap: 0.65rem;
    }

    .page-hero-chips span {
        width: 100%;
        text-align: center;
    }

    .about-story-figure,
    .projects-feature-media {
        min-height: 320px;
    }

    .project-showcase-card .project-img-container {
        height: 260px;
    }

    .project-meta-grid,
    .about-story-stats {
        grid-template-columns: 1fr;
    }

    .contact-hero-link {
        grid-template-columns: 46px minmax(0, 1fr);
        gap: 0.85rem;
    }

    .contact-hero-icon {
        width: 46px;
        height: 46px;
        border-radius: 14px;
        font-size: 1.1rem;
    }

    .project-showcase-top,
    .project-fact-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .page-cta-actions {
        width: 100%;
    }

    .page-cta-actions .btn {
        width: 100%;
        text-align: center;
    }
}

/* HOME PAGE REFRESH */
nav {
    background-color: transparent;
    border-bottom: 1px solid transparent;
}

nav.scrolled {
    background-color: rgba(5, 10, 26, 0.94);
    border-bottom-color: rgba(255,255,255,0.08);
    backdrop-filter: blur(16px);
    box-shadow: 0 12px 36px rgba(0,0,0,0.22);
}

body.sub-page nav,
body.sub-page nav.scrolled {
    background-color: rgba(5, 10, 26, 0.98);
    border-bottom-color: rgba(255,255,255,0.08);
    backdrop-filter: blur(16px);
    box-shadow: 0 12px 36px rgba(0,0,0,0.22);
}

body.sub-page .page-header {
    padding-top: 248px;
}

#home-projects.home-projects-redesign {
    padding: 120px 0;
    background:
        radial-gradient(circle at top left, rgba(197, 160, 89, 0.12), transparent 32%),
        linear-gradient(180deg, #050A1A 0%, #091325 100%);
}

.home-section-heading {
    align-items: end;
}

.home-section-actions {
    display: grid;
    gap: 1.5rem;
    justify-items: start;
}

.home-projects-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
    gap: 1.5rem;
    align-items: stretch;
}

.home-project-featured,
.home-project-card {
    overflow: hidden;
    border-radius: 32px;
    border: 1px solid rgba(255,255,255,0.08);
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.96), rgba(9, 15, 28, 0.98));
    box-shadow: 0 24px 60px rgba(0,0,0,0.22);
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.home-project-featured:hover,
.home-project-card:hover {
    transform: translateY(-8px);
    border-color: rgba(197,160,89,0.45);
    box-shadow: 0 30px 70px rgba(0,0,0,0.28);
}

.home-project-featured .project-img-container {
    height: 560px;
}

.home-project-featured-body,
.home-project-card-body {
    display: grid;
    gap: 1rem;
    padding: 1.75rem;
}

.home-project-featured-body h3,
.home-project-card-body h3 {
    font-size: 2.25rem;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
    font-family: 'Playfair Display', serif;
}

.home-project-card-body h3 {
    font-size: 1.7rem;
}

.home-project-featured-body p,
.home-project-card-body p {
    color: rgba(255,255,255,0.74);
    text-transform: none;
    letter-spacing: 0;
    font-size: 1rem;
    line-height: 1.75;
}

.home-projects-stack {
    display: grid;
    gap: 1.5rem;
}

.home-project-card {
    display: grid;
    grid-template-columns: minmax(200px, 230px) minmax(0, 1fr);
    min-height: 224px;
}

.home-project-card .project-img-container {
    height: 100%;
    min-height: 224px;
}

#about-hrg.home-about-redesign {
    padding: 120px 0;
    background:
        linear-gradient(180deg, rgba(5, 10, 26, 0.98), rgba(9, 15, 28, 0.96)),
        url("data:image/svg+xml,%3Csvg width='120' height='120' viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg stroke='%23C5A059' stroke-width='0.6' stroke-opacity='0.08'%3E%3Cpath d='M0 0h120v120H0z'/%3E%3Cpath d='M15 15h90v90H15z'/%3E%3Cpath d='M30 30h60v60H30z'/%3E%3Cpath d='M0 60h120M60 0v120'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.home-about-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 3rem;
    align-items: center;
}

.home-about-figure {
    overflow: hidden;
    border-radius: 32px;
    border: 1px solid rgba(255,255,255,0.08);
    background-color: #111827;
    height: clamp(360px, 40vw, 540px);
}

.home-about-figure img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-about-metrics {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.home-about-metric,
.home-about-pillar {
    padding: 1.4rem;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.08);
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.92), rgba(9, 15, 28, 0.96));
}

.home-about-metric strong {
    display: block;
    margin-bottom: 0.65rem;
    color: var(--secondary-color);
    font-size: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.home-about-metric span,
.home-about-pillar p {
    color: rgba(255,255,255,0.72);
    font-size: 0.98rem;
    line-height: 1.7;
}

.home-about-content h2 {
    font-size: 3.3rem;
    margin: 0.75rem 0 1.5rem;
}

.home-about-content p {
    color: rgba(255,255,255,0.76);
    font-size: 1.02rem;
    line-height: 1.9;
    margin-bottom: 1.25rem;
}

.home-about-pillars {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.home-about-pillar span {
    display: inline-block;
    margin-bottom: 0.8rem;
    color: var(--secondary-color);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
}

/* FOOTER REFRESH */
footer {
    margin-top: 0;
    padding: 90px 0 40px;
    border-radius: 0;
    background:
        radial-gradient(circle at top left, rgba(197, 160, 89, 0.12), transparent 28%),
        linear-gradient(180deg, #050A1A 0%, #030712 100%);
    border-top: 1px solid rgba(255,255,255,0.08);
}

footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(88%, 1200px);
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(197,160,89,0.65), transparent);
}

.footer-container {
    grid-template-columns: minmax(0, 1.4fr) repeat(2, minmax(220px, 0.7fr));
    gap: 2rem;
}

.footer-col {
    padding: 1.75rem;
    border-radius: 28px;
    border: 1px solid rgba(255,255,255,0.08);
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.82), rgba(9, 15, 28, 0.92));
}

.footer-about {
    background: transparent;
    border: none;
    padding: 0;
}

.footer-links,
.footer-contact {
    background: transparent;
    border: none;
    padding: 0;
}

.footer-logo {
    height: 64px !important;
}

.footer-col h4 {
    margin-bottom: 1.4rem;
    letter-spacing: 4px;
}

.footer-about p {
    max-width: 520px;
    color: rgba(255,255,255,0.7);
    font-size: 0.98rem;
    line-height: 1.9;
}

.footer-links ul {
    display: grid;
    gap: 0.85rem;
}

.footer-links li {
    margin-bottom: 0;
}

.footer-links a,
.footer-contact p {
    color: rgba(255,255,255,0.7);
    font-size: 0.92rem;
    letter-spacing: 0;
    text-transform: none;
    line-height: 1.8;
    overflow-wrap: anywhere;
}

.footer-contact .contact-number-link {
    color: rgba(255,255,255,0.7);
    font-size: 0.92rem;
    line-height: 1.8;
}

.footer-contact .contact-number-link:hover {
    color: #fff;
}

.footer-links a:hover {
    color: #fff;
}

.footer-bottom {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-bottom p {
    color: rgba(255,255,255,0.38);
    font-size: 0.72rem;
    letter-spacing: 3px;
}

@media (max-width: 1200px) {
    .home-projects-layout,
    .home-about-layout {
        grid-template-columns: 1fr;
    }

    .home-about-content h2 {
        font-size: 2.9rem;
    }
}

@media (max-width: 992px) {
    .home-project-card {
        grid-template-columns: 1fr;
    }

    .home-project-card .project-img-container {
        min-height: 260px;
    }

    .home-about-metrics,
    .home-about-pillars,
    .footer-container {
        grid-template-columns: 1fr;
    }

    .footer-about {
        padding: 0;
    }
}

@media (max-width: 768px) {
    #home-projects.home-projects-redesign,
    #about-hrg.home-about-redesign {
        padding: 80px 0;
    }

    body.sub-page nav,
    body.sub-page nav.scrolled {
        background-color: rgba(5, 10, 26, 0.98);
        border-bottom: 1px solid rgba(255,255,255,0.08);
        backdrop-filter: blur(16px);
        box-shadow: 0 12px 36px rgba(0,0,0,0.22);
    }

    body:not(.sub-page) nav {
        background-color: transparent;
        border-bottom-color: transparent;
        backdrop-filter: none;
        box-shadow: none;
    }

    body:not(.sub-page) nav.scrolled {
        background-color: rgba(5, 10, 26, 0.98);
        border-bottom: 1px solid rgba(255,255,255,0.08);
        backdrop-filter: blur(16px);
        box-shadow: 0 12px 36px rgba(0,0,0,0.22);
    }

    body.sub-page .page-header {
        padding-top: 172px;
    }

    #contact-hrg {
        padding: 72px 0;
    }

    .contact-grid-hrg {
        gap: 2.25rem;
    }

    .contact-header-hrg h2 {
        font-size: 2.45rem;
        line-height: 1.08;
        margin-bottom: 1.1rem;
    }

    #contact-hrg .v-divider {
        display: none;
    }

    .contact-details-hrg {
        gap: 1.5rem;
    }

    .contact-form-hrg {
        padding: 1.75rem;
    }

    .form-group-hrg {
        margin-bottom: 1.5rem;
    }

    #form-message {
        line-height: 1.5;
        letter-spacing: 1px;
    }

    .home-project-featured .project-img-container,
    .home-about-figure {
        min-height: 320px;
        height: 320px;
    }

    .home-project-featured-body,
    .home-project-card-body,
    .footer-col {
        padding: 1.4rem;
    }

    .home-project-featured-body h3,
    .home-about-content h2 {
        font-size: 2.3rem;
    }

    .home-project-card-body h3 {
        font-size: 1.5rem;
    }

    .home-section-actions {
        justify-items: stretch;
    }

    .footer-container {
        gap: 1.25rem;
        text-align: left;
    }

    .footer-col {
        border-radius: 24px;
    }

    footer {
        padding: 70px 0 36px;
    }

    .help-phone-group {
        justify-items: center;
    }

    .help-phone {
        gap: 0.65rem;
        font-size: 1.1rem;
        align-items: flex-start;
    }

    .contact-number-link {
        font-size: 1rem;
        white-space: normal;
    }

    .contact-hero-link strong {
        font-size: 1rem;
    }

    .contact-hero-link-email strong {
        font-size: 0.92rem;
    }

    .contact-method-number {
        font-size: 0.76rem;
    }

    .detail-item p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .slide-title,
    .hero-content h1 {
        font-size: 1.35rem;
        letter-spacing: -0.4px;
    }

    .hero-subtext {
        font-size: 0.82rem;
        margin-bottom: 2.4rem;
        max-width: 16rem;
    }

    .carousel-nav {
        bottom: 90px;
        gap: 10px;
    }

    .page-header {
        padding: 128px 0 64px;
    }

    body.sub-page .page-header {
        padding-top: 148px;
    }

    .page-header h1,
    .about-story-copy h2,
    .projects-feature-copy h2,
    .contact-page-copy h2,
    .contact-form-panel h2,
    .section-heading-split h2,
    .page-cta-band h2,
    .home-about-content h2,
    .contact-header-hrg h2 {
        font-size: 1.8rem;
        letter-spacing: -0.5px;
    }

    .page-hero-panel,
    .contact-form-panel,
    .contact-side-note,
    .page-cta-band,
    .project-showcase-body,
    .footer-col {
        padding: 1.2rem;
    }

    .help-banner h2 {
        font-size: 1.6rem;
        line-height: 1.2;
    }

    .help-phone {
        font-size: 1rem;
    }

    .page-hero-chips span,
    .project-tag,
    .project-open-hint,
    .contact-method-number,
    .footer-bottom p {
        letter-spacing: 1.5px;
    }

    #backToTop {
        width: 46px;
        height: 46px;
        right: 18px;
        bottom: 18px;
        font-size: 1.05rem;
    }
}

/* SHARED MOTION */
.nav-links a {
    position: relative;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.55rem;
    width: 100%;
    height: 1px;
    background: currentColor;
    opacity: 0.75;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    transform: scaleX(1);
}

.btn::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 -130%;
    width: 110%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transform: skewX(-22deg);
    transition: left 0.7s ease;
    pointer-events: none;
}

.btn:hover::before {
    left: 140%;
}

.page-hero-chips span,
.home-about-metric,
.home-about-pillar,
.about-value-card,
.milestone-card-redesign,
.leadership-card-redesign,
.contact-step-card,
.footer-col {
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease, background-color 0.35s ease;
}

.page-hero-chips span:hover,
.home-about-metric:hover,
.home-about-pillar:hover,
.about-value-card:hover,
.milestone-card-redesign:hover,
.leadership-card-redesign:hover,
.contact-step-card:hover {
    transform: translateY(-6px);
    border-color: rgba(197,160,89,0.35);
    box-shadow: 0 18px 40px rgba(0,0,0,0.18);
}

.home-about-figure img,
.about-story-figure img,
.projects-feature-media img,
.leadership-image-wrap img,
.project-showcase-card .project-img-container img {
    transition: transform 1s ease, filter 1s ease;
}

.home-about-figure:hover img,
.about-story-figure:hover img,
.projects-feature-media:hover img,
.leadership-image-wrap:hover img,
.project-showcase-card:hover .project-img-container img {
    transform: scale(1.04);
    filter: saturate(1.05);
}

.contact-hero-link {
    transition: transform 0.35s ease, border-color 0.35s ease;
}

.contact-hero-icon {
    transition: transform 0.35s ease, background-color 0.35s ease;
}

.contact-hero-link:hover,
.contact-hero-link:focus-visible {
    transform: translateX(8px);
    border-color: rgba(197,160,89,0.28);
}

.contact-hero-link:hover .contact-hero-icon,
.contact-hero-link:focus-visible .contact-hero-icon {
    transform: translateY(-3px);
}

.contact-hero-link-static:hover,
.contact-hero-link-static:focus-visible {
    transform: none;
}

.contact-hero-link-static:hover .contact-hero-icon,
.contact-hero-link-static:focus-visible .contact-hero-icon {
    transform: none;
}

.footer-links a,
.footer-contact .contact-number-link {
    display: inline-block;
    transition: color 0.35s ease, transform 0.35s ease;
}

.footer-links a:hover,
.footer-contact .contact-number-link:hover {
    transform: translateX(6px);
}

.reveal-on-scroll {
    opacity: 0;
    transform: translate3d(0, 32px, 0) scale(0.985);
    transition:
        opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, transform;
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
}

@media (max-width: 768px), (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .btn::before,
    .nav-links a::after,
    .home-about-figure img,
    .about-story-figure img,
    .projects-feature-media img,
    .leadership-image-wrap img,
    .project-showcase-card .project-img-container img,
    .contact-hero-link,
    .contact-hero-icon,
    .page-hero-chips span,
    .home-about-metric,
    .home-about-pillar,
    .about-value-card,
    .milestone-card-redesign,
    .leadership-card-redesign,
    .contact-step-card,
    .footer-links a,
    .footer-contact .contact-number-link,
    .reveal-on-scroll {
        transition: none !important;
        animation: none !important;
        transform: none !important;
    }

    .reveal-on-scroll {
        opacity: 1 !important;
    }
}
