/* =========================================================
   EL-ONE HOMES & STRUCTURES
   Global Design Foundation

   Project: EL-ONE Homes & Structures
   Developer: SokoTech Solutions
   ========================================================= */


/* =========================================================
   1. GOOGLE FONT FALLBACKS
   ========================================================= */

/*
   The main fonts will be connected inside the HTML files.

   Poppins:
   Used for navigation, paragraphs, buttons and general text.

   Playfair Display:
   Used carefully for premium headings and luxury accents.
*/


/* =========================================================
   2. DESIGN VARIABLES
   ========================================================= */

:root {
    /* Brand colours */
    --color-primary: #c7a24b;
    --color-primary-dark: #a98430;
    --color-primary-light: #e1c879;

    --color-black: #0b0d0f;
    --color-dark: #121518;
    --color-dark-soft: #1b1f23;

    --color-white: #ffffff;
    --color-off-white: #f7f6f2;
    --color-light-gray: #ececec;
    --color-gray: #747474;
    --color-dark-gray: #444444;

    /* Text colours */
    --color-heading: #111315;
    --color-body: #555b60;
    --color-text-light: #f4f4f4;

    /* Feedback colours */
    --color-success: #218838;
    --color-error: #b42318;

    /* Font families */
    --font-primary: "Poppins", Arial, sans-serif;
    --font-display: "Playfair Display", Georgia, serif;

    /* Font sizes */
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-md: 1.125rem;
    --font-size-lg: 1.25rem;
    --font-size-xl: 1.5rem;
    --font-size-2xl: 2rem;
    --font-size-3xl: 2.75rem;
    --font-size-4xl: 3.75rem;
    --font-size-hero: clamp(2.5rem, 6vw, 5rem);

    /* Font weights */
    --font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;

    /* Line heights */
    --line-height-tight: 1.15;
    --line-height-heading: 1.25;
    --line-height-body: 1.75;

    /* Spacing system */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;
    --space-28: 7rem;

    /* Page layout */
    --container-width: 1200px;
    --container-padding: 1.25rem;

    /* Borders */
    --border-color: rgba(17, 19, 21, 0.12);
    --border-radius-sm: 0.25rem;
    --border-radius-md: 0.5rem;
    --border-radius-lg: 1rem;
    --border-radius-round: 999px;

    /* Shadows */
    --shadow-sm: 0 4px 16px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 12px 30px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 22px 60px rgba(0, 0, 0, 0.16);

    /* Transitions */
    --transition-fast: 180ms ease;
    --transition-normal: 300ms ease;
    --transition-slow: 500ms ease;

    /* Header */
    --header-height: 78px;
}


/* =========================================================
   3. CSS RESET
   ========================================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

body {
    min-height: 100vh;
    overflow-x: hidden;
    background-color: var(--color-white);
    color: var(--color-body);
    font-family: var(--font-primary);
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-regular);
    line-height: var(--line-height-body);
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
}

img {
    height: auto;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    border: 0;
    cursor: pointer;
}

a {
    color: inherit;
    text-decoration: none;
}

ul,
ol {
    list-style: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}


/* =========================================================
   4. TYPOGRAPHY
   ========================================================= */

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--color-heading);
    font-family: var(--font-primary);
    font-weight: var(--font-weight-bold);
    line-height: var(--line-height-heading);
}

h1 {
    font-size: var(--font-size-4xl);
}

h2 {
    font-size: var(--font-size-3xl);
}

h3 {
    font-size: var(--font-size-2xl);
}

h4 {
    font-size: var(--font-size-xl);
}

h5 {
    font-size: var(--font-size-lg);
}

h6 {
    font-size: var(--font-size-base);
}

p {
    margin-bottom: var(--space-4);
}

p:last-child {
    margin-bottom: 0;
}

strong {
    color: var(--color-heading);
    font-weight: var(--font-weight-semibold);
}

small {
    font-size: var(--font-size-sm);
}

.text-display {
    font-family: var(--font-display);
}

.text-gold {
    color: var(--color-primary);
}

.text-white {
    color: var(--color-white);
}

.text-center {
    text-align: center;
}

.text-uppercase {
    text-transform: uppercase;
}

.eyebrow {
    display: inline-block;
    margin-bottom: var(--space-4);
    color: var(--color-primary-dark);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-semibold);
    letter-spacing: 0.14em;
    line-height: 1.4;
    text-transform: uppercase;
}

.section-title {
    max-width: 760px;
    margin-bottom: var(--space-6);
    font-size: clamp(2rem, 4vw, 3.5rem);
    letter-spacing: -0.03em;
}

.section-description {
    max-width: 680px;
    color: var(--color-body);
    font-size: var(--font-size-md);
}


/* =========================================================
   5. ACCESSIBILITY
   ========================================================= */

:focus-visible {
    outline: 3px solid var(--color-primary);
    outline-offset: 4px;
}

.skip-link {
    position: fixed;
    top: var(--space-4);
    left: var(--space-4);
    z-index: 9999;
    padding: var(--space-3) var(--space-5);
    transform: translateY(-150%);
    background-color: var(--color-white);
    color: var(--color-black);
    border-radius: var(--border-radius-sm);
    box-shadow: var(--shadow-md);
    font-weight: var(--font-weight-semibold);
    transition: transform var(--transition-fast);
}

.skip-link:focus {
    transform: translateY(0);
}


/* =========================================================
   6. CONTAINER AND PAGE LAYOUT
   ========================================================= */

.container {
    width: min(
        calc(100% - (var(--container-padding) * 2)),
        var(--container-width)
    );
    margin-inline: auto;
}

.container-narrow {
    width: min(
        calc(100% - (var(--container-padding) * 2)),
        820px
    );
    margin-inline: auto;
}

.section {
    padding-block: var(--space-24);
}

.section-small {
    padding-block: var(--space-16);
}

.section-dark {
    background-color: var(--color-dark);
    color: var(--color-text-light);
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4,
.section-dark h5,
.section-dark h6 {
    color: var(--color-white);
}

.section-light {
    background-color: var(--color-off-white);
}

.section-white {
    background-color: var(--color-white);
}


/* =========================================================
   7. GRID SYSTEM
   ========================================================= */

.grid {
    display: grid;
    gap: var(--space-8);
}

.grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.align-center {
    align-items: center;
}

.justify-between {
    justify-content: space-between;
}


/* =========================================================
   8. BUTTON SYSTEM
   ========================================================= */

.btn {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: 0.85rem 1.65rem;
    border: 1px solid transparent;
    border-radius: var(--border-radius-sm);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-semibold);
    letter-spacing: 0.04em;
    line-height: 1;
    text-align: center;
    text-transform: uppercase;
    transition:
        background-color var(--transition-fast),
        border-color var(--transition-fast),
        color var(--transition-fast),
        transform var(--transition-fast),
        box-shadow var(--transition-fast);
}

.btn:hover {
    transform: translateY(-2px);
}

.btn:active {
    transform: translateY(0);
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-black);
    box-shadow: 0 10px 24px rgba(199, 162, 75, 0.18);
}

.btn-primary:hover {
    background-color: var(--color-primary-light);
    box-shadow: 0 14px 30px rgba(199, 162, 75, 0.28);
}

.btn-dark {
    background-color: var(--color-dark);
    color: var(--color-white);
}

.btn-dark:hover {
    background-color: var(--color-black);
}

.btn-outline-light {
    border-color: rgba(255, 255, 255, 0.72);
    background-color: transparent;
    color: var(--color-white);
}

.btn-outline-light:hover {
    border-color: var(--color-white);
    background-color: var(--color-white);
    color: var(--color-black);
}

.btn-outline-dark {
    border-color: var(--color-dark);
    background-color: transparent;
    color: var(--color-dark);
}

.btn-outline-dark:hover {
    background-color: var(--color-dark);
    color: var(--color-white);
}

.btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-4);
}


/* =========================================================
   9. CARDS
   ========================================================= */

.card {
    overflow: hidden;
    background-color: var(--color-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    transition:
        transform var(--transition-normal),
        box-shadow var(--transition-normal);
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.card-content {
    padding: var(--space-6);
}


/* =========================================================
   10. IMAGE TREATMENT
   ========================================================= */

.image-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-frame {
    position: relative;
    overflow: hidden;
    background-color: var(--color-light-gray);
    border-radius: var(--border-radius-md);
}

.image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.image-frame:hover img {
    transform: scale(1.04);
}

.image-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            rgba(11, 13, 15, 0.05) 20%,
            rgba(11, 13, 15, 0.75) 100%
        );
}


/* =========================================================
   11. FORMS
   ========================================================= */

.form-group {
    display: grid;
    gap: var(--space-2);
}

.form-label {
    color: var(--color-heading);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-semibold);
}

.form-control {
    width: 100%;
    min-height: 52px;
    padding: 0.8rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    background-color: var(--color-white);
    color: var(--color-heading);
    transition:
        border-color var(--transition-fast),
        box-shadow var(--transition-fast);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.form-control:focus {
    border-color: var(--color-primary);
    outline: none;
    box-shadow: 0 0 0 4px rgba(199, 162, 75, 0.16);
}

.form-control::placeholder {
    color: #929292;
}


/* =========================================================
   12. HELPER CLASSES
   ========================================================= */

.hidden {
    display: none !important;
}

.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.no-scroll {
    overflow: hidden;
}

.margin-top-small {
    margin-top: var(--space-4);
}

.margin-top-medium {
    margin-top: var(--space-8);
}

.margin-top-large {
    margin-top: var(--space-12);
}


/* =========================================================
   13. TABLET RESPONSIVENESS
   ========================================================= */

@media (max-width: 960px) {
    :root {
        --header-height: 78px;
    }

    .section {
        padding-block: var(--space-20);
    }

    .grid-3,
    .grid-4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}


/* =========================================================
   14. MOBILE RESPONSIVENESS
   ========================================================= */

@media (max-width: 700px) {
    :root {
        --container-padding: 1rem;
    }

    h1 {
        font-size: var(--font-size-3xl);
    }

    h2 {
        font-size: var(--font-size-2xl);
    }

    h3 {
        font-size: var(--font-size-xl);
    }

    .section {
        padding-block: var(--space-16);
    }

    .section-small {
        padding-block: var(--space-12);
    }

    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

    .btn-group {
        align-items: stretch;
        flex-direction: column;
    }

    .btn-group .btn {
        width: 100%;
    }

    .section-title {
        font-size: clamp(1.9rem, 9vw, 2.6rem);
    }

    .section-description {
        font-size: var(--font-size-base);
    }
}


/* =========================================================
   15. SMALL MOBILE DEVICES
   ========================================================= */

@media (max-width: 420px) {
    .btn {
        width: 100%;
        padding-inline: 1.2rem;
    }
}


/* =========================================================
   16. REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}

/* =========================================================
   17. SITE HEADER AND NAVIGATION
   ========================================================= */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    height: var(--header-height);
    background-color: transparent;
    border-bottom: 1px solid transparent;
    transition:
        height var(--transition-normal),
        background-color var(--transition-normal),
        border-color var(--transition-normal),
        box-shadow var(--transition-normal);
}

.site-header.scrolled {
    height: 70px;
    background-color: rgba(11, 13, 15, 0.96);
    border-bottom-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.16);
    backdrop-filter: blur(12px);
}

.header-container {
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-6);

    padding-top: 4px;
    padding-bottom: 4px;
    padding-inline: 24px;
}


/* =========================================================
   18. LOGO
   ========================================================= */

.site-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    width: 148px;
    transition: transform var(--transition-fast);
}

.site-logo img {
    width: 100%;
    height: auto;
    display: block;
}


/* =========================================================
   19. DESKTOP NAVIGATION
   ========================================================= */

.primary-navigation {
    display: flex;
    align-items: center;
    gap: var(--space-6);
}

.navigation-list {
    display: flex;
    align-items: center;
    gap: var(--space-6);
}

.navigation-link {
    position: relative;
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    color: rgba(255, 255, 255, 0.88);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
    letter-spacing: 0.02em;
    transition: color var(--transition-fast);
}

.navigation-link::after {
    position: absolute;
    right: 0;
    bottom: 5px;
    left: 0;
    width: 0;
    height: 2px;
    margin-inline: auto;
    background-color: var(--color-primary);
    content: "";
    transition: width var(--transition-fast);
}

.navigation-link:hover,
.navigation-link.active {
    color: var(--color-white);
}

.navigation-link:hover::after,
.navigation-link.active::after {
    width: 100%;
}

.header-quote-button {
    min-height: 46px;
    padding-inline: 1.25rem;
    white-space: nowrap;
}


/* =========================================================
   20. MOBILE MENU BUTTON
   ========================================================= */

.menu-toggle {
    position: relative;
    z-index: 1002;
    display: none;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: var(--border-radius-sm);
}

.menu-toggle-line {
    display: block;
    width: 22px;
    height: 2px;
    background-color: var(--color-white);
    transition:
        transform var(--transition-fast),
        opacity var(--transition-fast);
}

.menu-toggle.active .menu-toggle-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active .menu-toggle-line:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .menu-toggle-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* =========================================================
   21. PREMIUM HOMEPAGE HERO
   ========================================================= */

.hero {
    position: relative;
    display: flex;
    min-height: 88svh;
    align-items: center;
    overflow: hidden;
    isolation: isolate;
    background-color: var(--color-dark);
}

.hero-slider {
    position: absolute;
    inset: 0;
    z-index: -3;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;

    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;

    opacity: 0;
    transform: scale(1.02);

    transition:
        opacity 1.2s ease,
        transform 7s ease;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1.08);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(
            90deg,
            rgba(6, 8, 9, 0.96) 0%,
            rgba(6, 8, 9, 0.84) 43%,
            rgba(6, 8, 9, 0.48) 72%,
            rgba(6, 8, 9, 0.3) 100%
        );
}

.hero::after {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.34) 0%,
            transparent 24%,
            transparent 72%,
            rgba(0, 0, 0, 0.5) 100%
        );
    content: "";
}

.hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
    padding-top: calc(var(--header-height) + var(--space-10));
    padding-bottom: var(--space-10);
}

.hero-content {
    max-width: 850px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: var(--space-3);
    margin-bottom: var(--space-4);
    color: var(--color-primary);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-semibold);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.hero-eyebrow::before {
    width: 42px;
    height: 2px;
    background-color: var(--color-primary);
    content: "";
}

.hero-title {
    max-width: 850px;
    margin-bottom: var(--space-5);
    color: var(--color-white);
    font-size: clamp(3rem, 5.7vw, 5.4rem);
    letter-spacing: -0.05em;
    line-height: 0.98;
}

.hero-title span {
    display: block;
    margin-top: var(--space-2);
    color: var(--color-primary);
    font-family: var(--font-display);
    font-weight: var(--font-weight-semibold);
    letter-spacing: -0.04em;
}

.hero-description {
    max-width: 670px;
    margin-bottom: var(--space-6);
    color: rgba(255, 255, 255, 0.8);
    font-size: var(--font-size-md);
    line-height: 1.65;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-4);
}

.hero-trust {
    display: grid;
    max-width: 800px;
    margin-top: var(--space-10);
    padding-top: var(--space-5);
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--space-5);
    border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-trust-item {
    display: grid;
    gap: var(--space-1);
}

.hero-trust-item strong {
    color: var(--color-white);
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-semibold);
}

.hero-trust-item span {
    color: rgba(255, 255, 255, 0.62);
    font-size: var(--font-size-sm);
    line-height: 1.6;
}

.hero-scroll {
    position: absolute;
    right: var(--space-8);
    bottom: var(--space-8);
    z-index: 3;
    display: flex;
    align-items: center;
    gap: var(--space-3);
    color: rgba(255, 255, 255, 0.68);
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-semibold);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    transform: rotate(90deg);
    transform-origin: right bottom;
}

.hero-scroll-line {
    position: relative;
    display: block;
    width: 54px;
    height: 1px;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.26);
}

.hero-scroll-line::after {
    position: absolute;
    inset: 0;
    background-color: var(--color-primary);
    content: "";
    transform: translateX(-100%);
    animation: hero-scroll-line 2.2s ease-in-out infinite;
}

/* ==========================================
   HERO SLIDER CONTROLS
========================================== */

.hero-controls {
    position: absolute;
    right: 5%;
    bottom: 58px;
    z-index: 5;

    display: flex;
    align-items: center;
    gap: 14px;
}

.hero-arrow {
    width: 46px;
    height: 46px;

    display: grid;
    place-items: center;

    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;

    background: rgba(8, 10, 11, 0.35);
    color: #ffffff;

    font-size: 1.1rem;
    cursor: pointer;

    backdrop-filter: blur(10px);
    transition:
        background 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}

.hero-arrow:hover {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.75);
    transform: translateY(-2px);
}

.hero-arrow:focus-visible {
    outline: 2px solid #ffffff;
    outline-offset: 4px;
}

.hero-dots {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-dot {
    width: 9px;
    height: 9px;

    padding: 0;
    border: 0;
    border-radius: 50%;

    background: rgba(255, 255, 255, 0.42);
    cursor: pointer;

    transition:
        width 0.3s ease,
        border-radius 0.3s ease,
        background 0.3s ease;
}

.hero-dot.active {
    width: 28px;
    border-radius: 999px;
    background: #ffffff;
}

.hero-dot:focus-visible {
    outline: 2px solid #ffffff;
    outline-offset: 4px;
}
@keyframes hero-image-zoom {
    from {
        transform: scale(1.02);
    }

    to {
        transform: scale(1.09);
    }
}

@keyframes hero-scroll-line {
    0% {
        transform: translateX(-100%);
    }

    50% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(100%);
    }
}

/* =========================================================
   HOMEPAGE ABOUT SECTION
   ========================================================= */

.home-about {
    padding-block: clamp(5rem, 9vw, 8rem);
    background-color: var(--color-white);
}

.home-about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: clamp(3rem, 7vw, 7rem);
}

.home-about-content {
    max-width: 700px;
}

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: var(--space-3);
    margin-bottom: var(--space-4);
    color: var(--color-primary);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-semibold);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.section-eyebrow::before {
    width: 36px;
    height: 2px;
    background-color: var(--color-primary);
    content: "";
}

.home-about-title {
    max-width: 700px;
    margin-bottom: var(--space-6);
    color: var(--color-heading);
    font-size: clamp(2.4rem, 4.8vw, 4.8rem);
    line-height: 1.05;
    letter-spacing: -0.045em;
}

.home-about-description {
    margin-bottom: var(--space-4);
    color: var(--color-body);
    font-size: var(--font-size-md);
    line-height: 1.8;
}

.home-about-content .btn {
    margin-top: var(--space-4);
}

.home-about-image-wrapper {
    position: relative;
    min-height: 480px;
    overflow: hidden;
    border-radius: 12px;
    background-color: var(--color-light);
}

.home-about-image-wrapper::before {
    position: absolute;
    top: 22px;
    right: 22px;
    bottom: 22px;
    left: 22px;
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.42);
    content: "";
    pointer-events: none;
}

.home-about-image {
    width: 100%;
    height: 100%;
    min-height: 480px;
    object-fit: cover;
    object-position: center;
    transition: transform 0.8s ease;
}

.home-about-image-wrapper:hover .home-about-image {
    transform: scale(1.04);
}

/* =========================================================
   HOMEPAGE SERVICES SECTION
   ========================================================= */

.home-services {
    padding-block: clamp(5rem, 9vw, 8rem);
    background-color: var(--color-dark);
}

.home-services-heading {
    display: grid;
    margin-bottom: clamp(3rem, 6vw, 5rem);
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
    align-items: end;
    gap: clamp(2rem, 6vw, 6rem);
}

.home-services .section-eyebrow {
    color: var(--color-primary);
}

.home-services-title {
    max-width: 760px;
    color: var(--color-white);
    font-size: clamp(2.5rem, 5vw, 4.8rem);
    line-height: 1.05;
    letter-spacing: -0.045em;
}

.home-services-intro {
    max-width: 560px;
    color: rgba(255, 255, 255, 0.66);
    font-size: var(--font-size-md);
    line-height: 1.8;
}

.home-services-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.home-service-card {
    position: relative;
    min-height: 310px;
    padding: clamp(2rem, 4vw, 3.5rem);
    overflow: hidden;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    transition:
        background-color 0.35s ease,
        transform 0.35s ease;
}

.home-service-card::before {
    position: absolute;
    inset: auto 0 0 0;
    height: 4px;
    background-color: var(--color-primary);
    content: "";
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}

.home-service-card:hover {
    background-color: rgba(255, 255, 255, 0.04);
}

.home-service-card:hover::before {
    transform: scaleX(1);
}

.home-service-number {
    display: block;
    margin-bottom: var(--space-8);
    color: var(--color-primary);
    font-family: var(--font-display);
    font-size: 2rem;
    line-height: 1;
}

.home-service-card h3 {
    margin-bottom: var(--space-4);
    color: var(--color-white);
    font-size: clamp(1.5rem, 2.2vw, 2.1rem);
    line-height: 1.2;
}

.home-service-card p {
    max-width: 520px;
    margin-bottom: var(--space-6);
    color: rgba(255, 255, 255, 0.62);
    line-height: 1.75;
}

.home-service-card a {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    color: var(--color-primary);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-semibold);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.home-service-card a::after {
    content: "→";
    transition: transform 0.25s ease;
}

.home-service-card a:hover::after {
    transform: translateX(5px);
}

.home-services-action {
    display: flex;
    justify-content: center;
    margin-top: var(--space-10);
}

/* =========================================================
   22. HEADER TABLET AND MOBILE
   ========================================================= */

@media (max-width: 1040px) {
    .menu-toggle {
        display: flex;
    }

    .primary-navigation {
        position: fixed;
        top: 0;
        right: 0;
        z-index: 1001;
        width: min(88%, 420px);
        height: 100vh;
        padding:
            calc(var(--header-height) + var(--space-8))
            var(--space-6)
            var(--space-8);
        transform: translateX(100%);
        align-items: stretch;
        flex-direction: column;
        gap: var(--space-8);
        overflow-y: auto;
        background-color: var(--color-dark);
        box-shadow: -20px 0 50px rgba(0, 0, 0, 0.28);
        transition: transform var(--transition-normal);
    }

    .primary-navigation.open {
        transform: translateX(0);
    }

    .navigation-list {
        align-items: stretch;
        flex-direction: column;
        gap: 0;
    }

    .navigation-list li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .navigation-link {
        width: 100%;
        min-height: 58px;
        justify-content: space-between;
        font-size: var(--font-size-base);
    }

    .navigation-link::after {
        right: auto;
        bottom: 0;
        margin: 0;
    }

    .header-quote-button {
        width: 100%;
    }

    .site-logo {
        width: 104px;
        height: 62px;
    }
}

.hero-controls {
    right: 50%;
    bottom: 24px;
    transform: translateX(50%);
}

.hero-arrow {
    width: 40px;
    height: 40px;
}

.hero-dot {
    width: 8px;
    height: 8px;
}

.hero-dot.active {
    width: 24px;
}

/* =========================================================
   23. HEADER MOBILE
   ========================================================= */

@media (max-width: 700px) {
    .site-header {
        height: 96px;
    }

    .site-header.scrolled {
        height: 88px;
    }

    .site-logo {
        width: 110px;
        transform: translateY(2px);
    }

    .hero {
        min-height: 100svh;
    }
}

.hero-overlay {
    background:
        linear-gradient(
            180deg,
            rgba(6, 8, 9, 0.78) 0%,
            rgba(6, 8, 9, 0.92) 48%,
            rgba(6, 8, 9, 0.98) 100%
        );
}

.hero-container {
    padding-top: 120px;
    padding-bottom: var(--space-16);
}

.hero-content {
    max-width: 100%;
}

.hero-eyebrow {
    align-items: flex-start;
    font-size: 0.7rem;
    line-height: 1.7;
}

.hero-eyebrow::before {
    width: 28px;
    margin-top: 0.55rem;
    flex-shrink: 0;
}

.hero-title {
    margin-bottom: var(--space-5);
    font-size: clamp(2.65rem, 13vw, 4.3rem);
    line-height: 1.02;
}

.hero-title span {
    margin-top: var(--space-2);
}

.hero-description {
    margin-bottom: var(--space-6);
    font-size: var(--font-size-base);
    line-height: 1.75;
}

.hero-actions {
    align-items: stretch;
    flex-direction: column;
}

.hero-actions .btn {
    width: 100%;
}

.hero-trust {
    margin-top: var(--space-10);
    padding-top: var(--space-5);
    grid-template-columns: 1fr;
    gap: var(--space-4);
}

.hero-trust-item {
    padding-bottom: var(--space-4);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-trust-item:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.hero-scroll {
    display: none;
}

/* =========================================================
   24. MOBILE MENU BACKDROP
   ========================================================= */

.menu-backdrop {
    position: fixed;
    inset: 0;
    z-index: 999;
    visibility: hidden;
    opacity: 0;
    background-color: rgba(0, 0, 0, 0.58);
    transition:
        opacity var(--transition-normal),
        visibility var(--transition-normal);
}

.menu-backdrop.visible {
    visibility: visible;
    opacity: 1;
}

/* =========================================================
   25. INTERNAL PAGE HERO
   ========================================================= */

.page-hero {
    position: relative;
    display: flex;
    min-height: 72vh;
    align-items: flex-end;
    overflow: hidden;
    background-color: var(--color-dark);
    background-position: center;
    background-size: cover;
}

.about-page-hero {
    background-image:
        url("../images/hero/hero3.png");
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(6, 8, 9, 0.94) 0%,
            rgba(6, 8, 9, 0.7) 55%,
            rgba(6, 8, 9, 0.3) 100%
        ),
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.25) 0%,
            rgba(0, 0, 0, 0.68) 100%
        );
}

.page-hero-content {
    position: relative;
    z-index: 1;
    padding-top: calc(var(--header-height) + var(--space-20));
    padding-bottom: var(--space-20);
}

.page-hero-content h1 {
    max-width: 900px;
    margin-bottom: var(--space-6);
    color: var(--color-white);
    font-size: clamp(3rem, 6vw, 5.8rem);
    letter-spacing: -0.05em;
    line-height: 1;
}

.page-hero-content h1 span {
    display: block;
    margin-top: var(--space-3);
}

.page-hero-content p {
    max-width: 700px;
    color: rgba(255, 255, 255, 0.78);
    font-size: var(--font-size-md);
}


/* =========================================================
   26. ABOUT STORY
   ========================================================= */

.about-story-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
    gap: var(--space-16);
}

.about-story-image {
    min-height: 620px;
}

.about-story-content .section-title {
    margin-bottom: var(--space-6);
}

.about-story-content p {
    color: var(--color-body);
}

.about-registration {
    display: flex;
    margin-top: var(--space-8);
    padding: var(--space-5) 0;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-4);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.about-registration span {
    color: var(--color-body);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.about-registration strong {
    color: var(--color-primary-dark);
    font-size: var(--font-size-lg);
}


/* =========================================================
   27. ABOUT CAPABILITIES
   ========================================================= */

.about-section-heading {
    display: flex;
    margin-bottom: var(--space-12);
    align-items: flex-end;
    justify-content: space-between;
    gap: var(--space-12);
}

.about-section-heading .section-title {
    margin-bottom: 0;
}

.about-section-heading .section-description {
    margin-bottom: var(--space-2);
}

.about-capabilities-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid var(--border-color);
    border-left: 1px solid var(--border-color);
}

.about-capability-card {
    position: relative;
    min-height: 320px;
    padding: var(--space-8);
    background-color: var(--color-white);
    border-right: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    transition:
        background-color var(--transition-normal),
        transform var(--transition-normal);
}

.about-capability-card:hover {
    z-index: 1;
    transform: translateY(-6px);
    background-color: var(--color-dark);
}

.about-card-number {
    display: block;
    margin-bottom: var(--space-16);
    color: var(--color-primary-dark);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-semibold);
    letter-spacing: 0.1em;
}

.about-capability-card h3 {
    margin-bottom: var(--space-4);
    font-size: var(--font-size-xl);
}

.about-capability-card p {
    color: var(--color-body);
    font-size: var(--font-size-sm);
}

.about-capability-card:hover h3 {
    color: var(--color-white);
}

.about-capability-card:hover p {
    color: rgba(255, 255, 255, 0.68);
}


/* =========================================================
   28. ABOUT VALUES
   ========================================================= */

.values-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    gap: var(--space-20);
}

.values-introduction {
    position: sticky;
    top: calc(var(--header-height) + var(--space-8));
    align-self: start;
}

.values-introduction p {
    max-width: 520px;
    color: rgba(255, 255, 255, 0.68);
}

.values-list {
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.value-item {
    display: grid;
    padding-block: var(--space-8);
    grid-template-columns: 60px 1fr;
    gap: var(--space-6);
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.value-item > span {
    color: var(--color-primary);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-semibold);
}

.value-item h3 {
    margin-bottom: var(--space-3);
    color: var(--color-white);
    font-size: var(--font-size-xl);
}

.value-item p {
    max-width: 600px;
    color: rgba(255, 255, 255, 0.62);
}


/* =========================================================
   29. LEADERSHIP
   ========================================================= */

.leadership-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(380px, 0.75fr);
    align-items: center;
    gap: var(--space-16);
}

.leadership-content {
    max-width: 720px;
}

.leadership-note {
    margin-top: var(--space-6);
    padding-left: var(--space-5);
    border-left: 3px solid var(--color-primary);
    color: var(--color-gray);
    font-size: var(--font-size-sm);
}

.leadership-placeholder {
    display: flex;
    min-height: 520px;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
    background:
        linear-gradient(
            135deg,
            var(--color-dark-soft),
            var(--color-black)
        );
    border-radius: var(--border-radius-md);
}

.leadership-placeholder-content {
    width: 100%;
    padding: var(--space-8);
    background:
        linear-gradient(
            180deg,
            transparent,
            rgba(0, 0, 0, 0.8)
        );
    color: var(--color-white);
}

.leadership-placeholder-content span {
    display: block;
    margin-bottom: var(--space-2);
    color: var(--color-primary);
    font-size: var(--font-size-sm);
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.leadership-placeholder-content strong {
    color: var(--color-white);
    font-size: var(--font-size-2xl);
}


/* =========================================================
   30. ABOUT CTA
   ========================================================= */

.about-cta {
    position: relative;
    overflow: hidden;
    background:
        url("../images/hero/hero5.png")
        center / cover
        no-repeat;
}

.about-cta-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(7, 9, 10, 0.88);
}

.about-cta-content {
    position: relative;
    z-index: 1;
    display: flex;
    min-height: 380px;
    padding-block: var(--space-20);
    align-items: center;
    justify-content: space-between;
    gap: var(--space-10);
}

.about-cta-content h2 {
    max-width: 760px;
    color: var(--color-white);
    font-size: clamp(2rem, 4vw, 3.7rem);
    letter-spacing: -0.04em;
}


/* =========================================================
   31. TEMPORARY FOOTER
   ========================================================= */

.temporary-footer {
    padding-block: var(--space-6);
    background-color: var(--color-black);
}

.temporary-footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-6);
}

.temporary-footer p {
    margin: 0;
    color: rgba(255, 255, 255, 0.55);
    font-size: var(--font-size-sm);
}


/* =========================================================
   32. ABOUT PAGE RESPONSIVENESS
   ========================================================= */

@media (max-width: 1040px) {
    .about-story-grid,
    .leadership-grid,
    .values-layout {
        grid-template-columns: 1fr;
    }

    .about-capabilities-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-story-image {
        min-height: 520px;
    }

    .values-introduction {
        position: static;
    }

    .leadership-placeholder {
        min-height: 460px;
    }
}


@media (max-width: 700px) {
    .page-hero {
        min-height: 66vh;
        background-position: 60% center;
    }

    .page-hero-content {
        padding-top: 130px;
        padding-bottom: var(--space-12);
    }

    .page-hero-content h1 {
        font-size: clamp(2.5rem, 12vw, 4rem);
    }

    .page-hero-content p {
        font-size: var(--font-size-base);
    }

    .about-story-grid {
        gap: var(--space-10);
    }

    .about-story-image {
        min-height: 390px;
    }

    .about-section-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: var(--space-4);
    }

    .about-capabilities-grid {
        grid-template-columns: 1fr;
    }

    .about-capability-card {
        min-height: auto;
    }

    .about-card-number {
        margin-bottom: var(--space-8);
    }

    .value-item {
        grid-template-columns: 42px 1fr;
        gap: var(--space-3);
    }

    .leadership-grid {
        grid-template-columns: 1fr;
    }

    .leadership-placeholder {
        min-height: 400px;
    }

    .about-cta-content {
        min-height: 360px;
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
    }

    .about-cta-content .btn {
        width: 100%;
    }

    .temporary-footer-content {
        align-items: flex-start;
        flex-direction: column;
        gap: var(--space-2);
    }
}

/* =========================================================
   33. SERVICES PAGE HERO
   ========================================================= */

.services-page-hero {
    background-image:
        url("../images/hero/hero5.png");
}


/* =========================================================
   34. SERVICES INTRODUCTION
   ========================================================= */

.services-introduction {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.8fr);
    align-items: end;
    gap: var(--space-16);
}

.services-introduction .section-title {
    margin-bottom: 0;
}

.services-introduction-copy {
    max-width: 620px;
}


/* =========================================================
   35. MAIN SERVICES LIST
   ========================================================= */

.services-list {
    display: grid;
    gap: var(--space-20);
}

.service-row {
    position: relative;
    display: grid;
    grid-template-columns:
        70px
        minmax(0, 1.05fr)
        minmax(0, 0.95fr);
    align-items: center;
    gap: var(--space-10);
}

.service-row-reverse {
    grid-template-columns:
        70px
        minmax(0, 0.95fr)
        minmax(0, 1.05fr);
}

.service-row-reverse .service-image {
    grid-column: 3;
    grid-row: 1;
}

.service-row-reverse .service-content {
    grid-column: 2;
    grid-row: 1;
}

.service-number {
    align-self: start;
    padding-top: var(--space-3);
    color: var(--color-primary-dark);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-semibold);
    letter-spacing: 0.12em;
}

.service-image {
    min-height: 520px;
}

.service-content {
    max-width: 560px;
}

.service-content h2 {
    margin-bottom: var(--space-5);
    font-size: clamp(2rem, 4vw, 3.4rem);
    letter-spacing: -0.04em;
}

.service-content > p {
    margin-bottom: var(--space-6);
    color: var(--color-body);
    font-size: var(--font-size-md);
}

.service-feature-list {
    display: grid;
    border-top: 1px solid var(--border-color);
}

.service-feature-list li {
    position: relative;
    padding:
        var(--space-3)
        0
        var(--space-3)
        var(--space-6);
    border-bottom: 1px solid var(--border-color);
    color: var(--color-dark-gray);
    font-size: var(--font-size-sm);
}

.service-feature-list li::before {
    position: absolute;
    top: 1.2rem;
    left: 0;
    width: 8px;
    height: 8px;
    background-color: var(--color-primary);
    content: "";
}


/* =========================================================
   36. SERVICES PROCESS
   ========================================================= */

.services-process-heading {
    display: flex;
    margin-bottom: var(--space-12);
    align-items: flex-end;
    justify-content: space-between;
    gap: var(--space-12);
}

.services-process-heading .section-title {
    margin-bottom: 0;
}

.services-process-heading .section-description {
    color: rgba(255, 255, 255, 0.64);
}

.services-process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.services-process-step {
    min-height: 300px;
    padding: var(--space-8);
    border-right: 1px solid rgba(255, 255, 255, 0.14);
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.services-process-step > span {
    display: block;
    margin-bottom: var(--space-16);
    color: var(--color-primary);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-semibold);
}

.services-process-step h3 {
    margin-bottom: var(--space-4);
    color: var(--color-white);
    font-size: var(--font-size-xl);
}

.services-process-step p {
    color: rgba(255, 255, 255, 0.62);
    font-size: var(--font-size-sm);
}


/* =========================================================
   37. SERVICES AUDIENCE
   ========================================================= */

.services-audience-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: var(--space-20);
}

.services-audience-introduction {
    position: sticky;
    top: calc(var(--header-height) + var(--space-8));
    align-self: start;
}

.services-audience-list {
    border-top: 1px solid var(--border-color);
}

.services-audience-list article {
    display: grid;
    padding-block: var(--space-8);
    grid-template-columns: 60px 1fr;
    gap: var(--space-6);
    border-bottom: 1px solid var(--border-color);
}

.services-audience-list article > span {
    color: var(--color-primary-dark);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-semibold);
}

.services-audience-list h3 {
    margin-bottom: var(--space-3);
    font-size: var(--font-size-xl);
}

.services-audience-list p {
    max-width: 620px;
    color: var(--color-body);
}


/* =========================================================
   38. SERVICES CTA
   ========================================================= */

.services-cta {
    position: relative;
    overflow: hidden;
    background:
        url("../images/hero/hero1.png")
        center / cover
        no-repeat;
}

.services-cta-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(7, 9, 10, 0.9);
}

.services-cta-content {
    position: relative;
    z-index: 1;
    display: flex;
    min-height: 420px;
    padding-block: var(--space-20);
    align-items: center;
    justify-content: space-between;
    gap: var(--space-10);
}

.services-cta-content h2 {
    max-width: 720px;
    margin-bottom: var(--space-4);
    color: var(--color-white);
    font-size: clamp(2rem, 4vw, 3.7rem);
    letter-spacing: -0.04em;
}

.services-cta-content p {
    max-width: 650px;
    color: rgba(255, 255, 255, 0.68);
}


/* =========================================================
   39. SERVICES RESPONSIVENESS
   ========================================================= */

@media (max-width: 1040px) {
    .services-introduction,
    .services-audience-grid {
        grid-template-columns: 1fr;
    }

    .service-row,
    .service-row-reverse {
        grid-template-columns: 50px 1fr;
    }

    .service-row .service-image,
    .service-row-reverse .service-image {
        grid-column: 2;
        grid-row: 1;
    }

    .service-row .service-content,
    .service-row-reverse .service-content {
        grid-column: 2;
        grid-row: 2;
    }

    .service-number {
        grid-column: 1;
        grid-row: 1 / span 2;
    }

    .service-image {
        min-height: 480px;
    }

    .services-process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .services-audience-introduction {
        position: static;
    }
}


@media (max-width: 700px) {
    .services-introduction {
        gap: var(--space-6);
    }

    .services-list {
        gap: var(--space-16);
    }

    .service-row,
    .service-row-reverse {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }

    .service-number,
    .service-row .service-image,
    .service-row-reverse .service-image,
    .service-row .service-content,
    .service-row-reverse .service-content {
        grid-column: 1;
        grid-row: auto;
    }

    .service-number {
        padding-top: 0;
    }

    .service-image {
        min-height: 360px;
    }

    .services-process-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: var(--space-4);
    }

    .services-process-grid {
        grid-template-columns: 1fr;
    }

    .services-process-step {
        min-height: auto;
    }

    .services-process-step > span {
        margin-bottom: var(--space-8);
    }

    .services-audience-list article {
        grid-template-columns: 42px 1fr;
        gap: var(--space-3);
    }

    .services-cta-content {
        min-height: 400px;
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
    }

    .services-cta-content .btn {
        width: 100%;
    }
}

/* =========================================================
   40. PROJECTS PAGE HERO
   ========================================================= */

.projects-page-hero {
    background-image:
        url("../images/hero/hero3.png");
}


/* =========================================================
   41. PROJECTS INTRODUCTION
   ========================================================= */

.projects-introduction {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.8fr);
    align-items: end;
    gap: var(--space-16);
}

.projects-introduction .section-title {
    margin-bottom: 0;
}

.projects-introduction-copy {
    max-width: 620px;
}


/* =========================================================
   42. FEATURED PROJECT
   ========================================================= */

.featured-project {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    align-items: stretch;
    overflow: hidden;
    background-color: var(--color-white);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
}

.featured-project-image {
    position: relative;
    min-height: 680px;
    overflow: hidden;
}

.featured-project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.featured-project:hover .featured-project-image img {
    transform: scale(1.03);
}

.project-status {
    position: absolute;
    top: var(--space-6);
    left: var(--space-6);
    padding: var(--space-2) var(--space-4);
    background-color: var(--color-primary);
    color: var(--color-black);
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-semibold);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.featured-project-content {
    display: flex;
    padding: var(--space-12);
    justify-content: center;
    flex-direction: column;
}

.featured-project-content h2 {
    margin-bottom: var(--space-5);
    font-size: clamp(2rem, 4vw, 3.5rem);
    letter-spacing: -0.04em;
}

.featured-project-content > p {
    margin-bottom: var(--space-8);
    font-size: var(--font-size-md);
}

.project-details {
    margin-bottom: var(--space-8);
    border-top: 1px solid var(--border-color);
}

.project-details div {
    display: grid;
    padding-block: var(--space-4);
    grid-template-columns: 140px 1fr;
    gap: var(--space-4);
    border-bottom: 1px solid var(--border-color);
}

.project-details dt {
    color: var(--color-gray);
    font-size: var(--font-size-sm);
}

.project-details dd {
    color: var(--color-heading);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-semibold);
}


/* =========================================================
   43. PROJECT CARDS
   ========================================================= */

.projects-section-heading {
    display: flex;
    margin-bottom: var(--space-12);
    align-items: flex-end;
    justify-content: space-between;
    gap: var(--space-12);
}

.projects-section-heading .section-title {
    margin-bottom: 0;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-10);
}

.project-card {
    overflow: hidden;
    background-color: var(--color-white);
    border: 1px solid var(--border-color);
    transition:
        transform var(--transition-normal),
        box-shadow var(--transition-normal);
}

.project-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.project-card-image {
    position: relative;
    display: block;
    height: 430px;
    overflow: hidden;
    background-color: var(--color-light-gray);
}

.project-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.project-card:hover .project-card-image img {
    transform: scale(1.05);
}

.project-card-status {
    position: absolute;
    top: var(--space-5);
    left: var(--space-5);
    padding: var(--space-2) var(--space-3);
    background-color: rgba(11, 13, 15, 0.88);
    color: var(--color-white);
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-semibold);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.project-card-content {
    padding: var(--space-8);
}

.project-category {
    display: block;
    margin-bottom: var(--space-3);
    color: var(--color-primary-dark);
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-semibold);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.project-card-content h3 {
    margin-bottom: var(--space-4);
    font-size: var(--font-size-xl);
}

.project-card-content p {
    margin-bottom: var(--space-5);
    color: var(--color-body);
}

.project-card-content > a {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    color: var(--color-heading);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-semibold);
}

.project-card-content > a::after {
    color: var(--color-primary-dark);
    content: "→";
    transition: transform var(--transition-fast);
}

.project-card-content > a:hover::after {
    transform: translateX(5px);
}


/* =========================================================
   44. PROJECT PHILOSOPHY
   ========================================================= */

.project-philosophy-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: var(--space-20);
}

.project-philosophy-list {
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.project-philosophy-list article {
    display: grid;
    padding-block: var(--space-8);
    grid-template-columns: 60px 1fr;
    gap: var(--space-6);
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.project-philosophy-list article > span {
    color: var(--color-primary);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-semibold);
}

.project-philosophy-list h3 {
    margin-bottom: var(--space-3);
    color: var(--color-white);
    font-size: var(--font-size-xl);
}

.project-philosophy-list p {
    color: rgba(255, 255, 255, 0.62);
}


/* =========================================================
   45. PROJECT CTA
   ========================================================= */

.projects-cta {
    position: relative;
    overflow: hidden;
    background:
        url("../images/hero/hero1.png")
        center / cover
        no-repeat;
}

.projects-cta-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(7, 9, 10, 0.9);
}

.projects-cta-content {
    position: relative;
    z-index: 1;
    display: flex;
    min-height: 420px;
    padding-block: var(--space-20);
    align-items: center;
    justify-content: space-between;
    gap: var(--space-10);
}

.projects-cta-content h2 {
    max-width: 760px;
    margin-bottom: var(--space-4);
    color: var(--color-white);
    font-size: clamp(2rem, 4vw, 3.7rem);
    letter-spacing: -0.04em;
}

.projects-cta-content p {
    max-width: 650px;
    color: rgba(255, 255, 255, 0.68);
}


/* =========================================================
   46. PROJECTS RESPONSIVENESS
   ========================================================= */

@media (max-width: 1040px) {
    .projects-introduction,
    .project-philosophy-grid {
        grid-template-columns: 1fr;
    }

    .featured-project {
        grid-template-columns: 1fr;
    }

    .featured-project-image {
        min-height: 560px;
    }

    .projects-section-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: var(--space-4);
    }
}


@media (max-width: 700px) {
    .projects-introduction {
        gap: var(--space-6);
    }

    .featured-project-image {
        min-height: 390px;
    }

    .featured-project-content {
        padding: var(--space-8) var(--space-6);
    }

    .project-details div {
        grid-template-columns: 1fr;
        gap: var(--space-1);
    }

    .projects-grid {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }

    .project-card-image {
        height: 350px;
    }

    .project-card-content {
        padding: var(--space-6);
    }

    .project-philosophy-list article {
        grid-template-columns: 42px 1fr;
        gap: var(--space-3);
    }

    .projects-cta-content {
        min-height: 400px;
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
    }

    .projects-cta-content .btn {
        width: 100%;
    }
}

/* =========================================================
   47. GALLERY PAGE HERO
   ========================================================= */

.gallery-page-hero {
    background-image:
        url("../images/hero/hero4.png");
}


/* =========================================================
   48. GALLERY INTRODUCTION
   ========================================================= */

.gallery-introduction {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.8fr);
    align-items: end;
    gap: var(--space-16);
}

.gallery-introduction .section-title {
    margin-bottom: 0;
}

.gallery-introduction-copy {
    max-width: 620px;
}


/* =========================================================
   49. GALLERY FILTERS
   ========================================================= */

.gallery-filters {
    display: flex;
    margin-bottom: var(--space-10);
    flex-wrap: wrap;
    gap: var(--space-3);
}

.gallery-filter {
    min-height: 46px;
    padding: 0.7rem 1.25rem;
    background-color: transparent;
    border: 1px solid var(--border-color);
    color: var(--color-dark-gray);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-semibold);
    transition:
        background-color var(--transition-fast),
        border-color var(--transition-fast),
        color var(--transition-fast);
}

.gallery-filter:hover,
.gallery-filter.active {
    background-color: var(--color-dark);
    border-color: var(--color-dark);
    color: var(--color-white);
}


/* =========================================================
   50. GALLERY GRID
   ========================================================= */

.gallery-grid {
    display: grid;
    grid-auto-rows: 260px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--space-5);
}

.gallery-item {
    min-width: 0;
    overflow: hidden;
    background-color: var(--color-dark);
}

.gallery-item-large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item-wide {
    grid-column: span 2;
}

.gallery-item-tall {
    grid-row: span 2;
}

.gallery-item.is-hidden {
    display: none;
}

.gallery-image-button {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: var(--color-dark);
    text-align: left;
}

.gallery-image-button img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition:
        transform 700ms ease,
        opacity var(--transition-normal);
}

.gallery-image-button:hover img {
    transform: scale(1.06);
    opacity: 0.86;
}

.gallery-item-overlay {
    position: absolute;
    inset: auto 0 0;
    display: flex;
    min-height: 46%;
    padding: var(--space-6);
    justify-content: flex-end;
    flex-direction: column;
    background:
        linear-gradient(
            180deg,
            transparent,
            rgba(7, 9, 10, 0.88)
        );
    color: var(--color-white);
    pointer-events: none;
}

.gallery-item-overlay span {
    display: block;
    margin-bottom: var(--space-2);
    color: var(--color-primary);
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-semibold);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.gallery-item-overlay strong {
    color: var(--color-white);
    font-size: clamp(1.15rem, 2vw, 1.65rem);
    line-height: 1.3;
}

.gallery-empty-message {
    padding: var(--space-12);
    background-color: var(--color-white);
    border: 1px solid var(--border-color);
    text-align: center;
}


/* =========================================================
   51. GALLERY NOTE
   ========================================================= */

.gallery-note-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: var(--space-20);
}

.gallery-note-content {
    max-width: 680px;
}

.gallery-note-content p {
    color: rgba(255, 255, 255, 0.66);
}

.gallery-note-content .btn {
    margin-top: var(--space-5);
}


/* =========================================================
   52. GALLERY CTA
   ========================================================= */

.gallery-cta {
    position: relative;
    overflow: hidden;
    background:
        url("../images/hero/hero1.png")
        center / cover
        no-repeat;
}

.gallery-cta-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(7, 9, 10, 0.9);
}

.gallery-cta-content {
    position: relative;
    z-index: 1;
    display: flex;
    min-height: 420px;
    padding-block: var(--space-20);
    align-items: center;
    justify-content: space-between;
    gap: var(--space-10);
}

.gallery-cta-content h2 {
    max-width: 760px;
    margin-bottom: var(--space-4);
    color: var(--color-white);
    font-size: clamp(2rem, 4vw, 3.7rem);
    letter-spacing: -0.04em;
}

.gallery-cta-content p {
    max-width: 650px;
    color: rgba(255, 255, 255, 0.68);
}


/* =========================================================
   53. GALLERY LIGHTBOX
   ========================================================= */

.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 5000;
    display: flex;
    padding: var(--space-8);
    align-items: center;
    justify-content: center;
    background-color: rgba(5, 6, 7, 0.97);
}

.gallery-lightbox[hidden] {
    display: none;
}

.lightbox-content {
    display: grid;
    width: min(100%, 1200px);
    max-height: calc(100vh - 80px);
    grid-template-columns: minmax(0, 1fr) 330px;
    overflow: hidden;
    background-color: var(--color-dark);
    box-shadow: var(--shadow-lg);
}

.lightbox-content img {
    width: 100%;
    height: min(76vh, 780px);
    object-fit: contain;
    background-color: var(--color-black);
}

.lightbox-caption {
    display: flex;
    padding: var(--space-8);
    justify-content: flex-end;
    flex-direction: column;
}

.lightbox-caption > span {
    margin-bottom: var(--space-3);
    color: var(--color-primary);
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-semibold);
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.lightbox-caption h2 {
    margin-bottom: var(--space-4);
    color: var(--color-white);
    font-size: var(--font-size-2xl);
}

.lightbox-caption p {
    color: rgba(255, 255, 255, 0.64);
}

.lightbox-close {
    position: absolute;
    top: var(--space-5);
    right: var(--space-5);
    z-index: 2;
    width: 52px;
    height: 52px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--color-white);
    font-size: 2rem;
    line-height: 1;
}

.lightbox-navigation {
    position: absolute;
    top: 50%;
    z-index: 2;
    width: 54px;
    height: 54px;
    transform: translateY(-50%);
    background-color: var(--color-primary);
    color: var(--color-black);
    font-size: var(--font-size-xl);
}

.lightbox-previous {
    left: var(--space-5);
}

.lightbox-next {
    right: var(--space-5);
}


/* =========================================================
   54. GALLERY RESPONSIVENESS
   ========================================================= */

@media (max-width: 1040px) {
    .gallery-introduction,
    .gallery-note-layout {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gallery-item-large {
        grid-column: span 2;
    }

    .lightbox-content {
        grid-template-columns: 1fr;
        overflow-y: auto;
    }

    .lightbox-content img {
        height: 62vh;
    }

    .lightbox-caption {
        padding: var(--space-6);
    }
}


@media (max-width: 700px) {
    .gallery-introduction {
        gap: var(--space-6);
    }

    .gallery-filters {
        flex-wrap: nowrap;
        padding-bottom: var(--space-2);
        overflow-x: auto;
    }

    .gallery-filter {
        flex-shrink: 0;
    }

    .gallery-grid {
        display: grid;
        grid-auto-rows: auto;
        grid-template-columns: 1fr;
    }

    .gallery-item,
    .gallery-item-large,
    .gallery-item-wide,
    .gallery-item-tall {
        grid-column: auto;
        grid-row: auto;
        height: 360px;
    }

    .gallery-cta-content {
        min-height: 400px;
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
    }

    .gallery-cta-content .btn {
        width: 100%;
    }

    .gallery-lightbox {
        padding: 0;
        align-items: stretch;
    }

    .lightbox-content {
        width: 100%;
        max-height: 100vh;
        padding-top: 70px;
    }

    .lightbox-content img {
        height: 52vh;
    }

    .lightbox-close {
        top: var(--space-3);
        right: var(--space-3);
    }

    .lightbox-navigation {
        top: 48%;
        width: 46px;
        height: 46px;
    }

    .lightbox-previous {
        left: var(--space-3);
    }

    .lightbox-next {
        right: var(--space-3);
    }
}

/* =========================================================
   55. CONTACT PAGE HERO
   ========================================================= */

.contact-page-hero {
    background-image:
        url("../images/hero/hero1.png");
}


/* =========================================================
   56. CONTACT OVERVIEW
   ========================================================= */

.contact-overview-heading {
    max-width: 820px;
    margin-bottom: var(--space-12);
}

.contact-information-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid var(--border-color);
    border-left: 1px solid var(--border-color);
}

.contact-information-card {
    min-height: 300px;
    padding: var(--space-8);
    background-color: var(--color-white);
    border-right: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.contact-card-number {
    display: block;
    margin-bottom: var(--space-12);
    color: var(--color-primary-dark);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-semibold);
    letter-spacing: 0.1em;
}

.contact-information-card h3 {
    margin-bottom: var(--space-5);
    font-size: var(--font-size-xl);
}

.contact-information-card a,
.contact-information-card p,
.contact-information-card address {
    display: block;
    margin-bottom: var(--space-3);
    color: var(--color-body);
    font-size: var(--font-size-sm);
    font-style: normal;
    overflow-wrap: anywhere;
}

.contact-information-card a:hover {
    color: var(--color-primary-dark);
}


/* =========================================================
   57. CONTACT FORM AND MAP
   ========================================================= */

.contact-main-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
    align-items: stretch;
    gap: var(--space-10);
}

.contact-form-panel,
.contact-map-panel {
    background-color: var(--color-white);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.contact-form-panel {
    padding: var(--space-10);
}

.contact-form-panel h2 {
    margin-bottom: var(--space-4);
    font-size: clamp(2rem, 4vw, 3.2rem);
    letter-spacing: -0.04em;
}

.contact-form-panel > p {
    max-width: 680px;
    margin-bottom: var(--space-8);
}

.contact-form-grid {
    display: grid;
    margin-bottom: var(--space-6);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-5);
}

.contact-form-full {
    grid-column: 1 / -1;
}

.form-error {
    min-height: 1.2rem;
    color: var(--color-error);
    font-size: var(--font-size-xs);
}

.form-control.invalid {
    border-color: var(--color-error);
}

.contact-form-status {
    min-height: 1.5rem;
    margin-top: var(--space-4);
    color: var(--color-success);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-semibold);
}

.contact-map-panel {
    display: flex;
    flex-direction: column;
}

.contact-map-placeholder {
    display: flex;
    min-height: 560px;
    padding: var(--space-10);
    align-items: flex-end;
    background:
        linear-gradient(
            180deg,
            rgba(7, 9, 10, 0.1),
            rgba(7, 9, 10, 0.86)
        ),
        url("../images/hero/hero5.png")
        center / cover
        no-repeat;
}

.contact-map-placeholder > div {
    max-width: 480px;
}

.contact-map-placeholder span {
    display: block;
    margin-bottom: var(--space-3);
    color: var(--color-primary);
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-semibold);
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.contact-map-placeholder h2 {
    margin-bottom: var(--space-4);
    color: var(--color-white);
    font-size: var(--font-size-2xl);
}

.contact-map-placeholder p {
    color: rgba(255, 255, 255, 0.68);
}

.contact-map-address {
    padding: var(--space-6);
    border-top: 1px solid var(--border-color);
}

.contact-map-address span {
    display: block;
    margin-bottom: var(--space-2);
    color: var(--color-primary-dark);
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-semibold);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.contact-map-address p {
    margin: 0;
}


/* =========================================================
   58. CONTACT ACTION
   ========================================================= */

.contact-action-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-12);
}

.contact-action-grid .section-title {
    margin-bottom: var(--space-5);
}

.contact-action-grid p {
    max-width: 650px;
    color: rgba(255, 255, 255, 0.66);
}

.contact-action-buttons {
    display: flex;
    flex-shrink: 0;
    flex-wrap: wrap;
    gap: var(--space-4);
}


/* =========================================================
   59. CONTACT RESPONSIVENESS
   ========================================================= */

@media (max-width: 1040px) {
    .contact-information-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .contact-main-grid {
        grid-template-columns: 1fr;
    }

    .contact-map-placeholder {
        min-height: 480px;
    }

    .contact-action-grid {
        align-items: flex-start;
        flex-direction: column;
    }
}


@media (max-width: 700px) {
    .contact-information-grid {
        grid-template-columns: 1fr;
    }

    .contact-information-card {
        min-height: auto;
    }

    .contact-card-number {
        margin-bottom: var(--space-8);
    }

    .contact-form-panel {
        padding: var(--space-8) var(--space-5);
    }

    .contact-form-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-full {
        grid-column: auto;
    }

    .contact-form .btn {
        width: 100%;
    }

    .contact-map-placeholder {
        min-height: 400px;
        padding: var(--space-6);
    }

    .contact-action-buttons {
        width: 100%;
        flex-direction: column;
    }

    .contact-action-buttons .btn {
        width: 100%;
    }
}

/* =========================================================
   60. CORPORATE FOOTER
   ========================================================= */

.site-footer {
    position: relative;
    overflow: hidden;
    background-color: var(--color-black);
    color: rgba(255, 255, 255, 0.68);
}

.site-footer::before {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            rgba(11, 13, 15, 0.96),
            rgba(11, 13, 15, 0.98)
        ),
        url("../images/hero/hero1.png")
        center / cover
        no-repeat;
    content: "";
    opacity: 0.2;
    pointer-events: none;
}

.footer-main,
.footer-statement,
.footer-bottom {
    position: relative;
    z-index: 1;
}


/* =========================================================
   61. FOOTER MAIN LAYOUT
   ========================================================= */

.footer-main {
    padding-block:
        var(--space-20)
        var(--space-16);
}

.footer-grid {
    display: grid;
    grid-template-columns:
        minmax(260px, 1.4fr)
        minmax(150px, 0.7fr)
        minmax(190px, 0.9fr)
        minmax(250px, 1fr);
    gap: var(--space-12);
}


/* =========================================================
   62. FOOTER BRAND
   ========================================================= */

.footer-brand {
    max-width: 420px;
}

.footer-logo {
    display: flex;
    width: 150px;
    height: 90px;
    margin-bottom: var(--space-6);
    align-items: center;
}

.footer-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-brand-message {
    max-width: 390px;
    margin-bottom: var(--space-6);
    color: rgba(255, 255, 255, 0.62);
    font-size: var(--font-size-sm);
    line-height: 1.8;
}

.footer-registration {
    display: inline-flex;
    padding-top: var(--space-4);
    flex-direction: column;
    gap: var(--space-1);
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-registration span {
    color: rgba(255, 255, 255, 0.48);
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-semibold);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.footer-registration strong {
    color: var(--color-primary);
    font-size: var(--font-size-base);
}


/* =========================================================
   63. FOOTER COLUMNS AND LINKS
   ========================================================= */

.footer-heading {
    margin-bottom: var(--space-6);
    color: var(--color-white);
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-semibold);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.footer-links {
    display: grid;
    gap: var(--space-3);
}

.footer-links a {
    position: relative;
    display: inline-flex;
    color: rgba(255, 255, 255, 0.62);
    font-size: var(--font-size-sm);
    transition:
        color var(--transition-fast),
        transform var(--transition-fast);
}

.footer-links a::before {
    width: 0;
    height: 1px;
    margin-top: 0.75rem;
    margin-right: 0;
    background-color: var(--color-primary);
    content: "";
    transition:
        width var(--transition-fast),
        margin-right var(--transition-fast);
}

.footer-links a:hover {
    color: var(--color-white);
    transform: translateX(3px);
}

.footer-links a:hover::before {
    width: 18px;
    margin-right: var(--space-2);
}


/* =========================================================
   64. FOOTER CONTACT
   ========================================================= */

.footer-contact {
    min-width: 0;
}

.footer-contact-item {
    display: grid;
    margin-bottom: var(--space-5);
    gap: var(--space-1);
}

.footer-contact-item:last-child {
    margin-bottom: 0;
}

.footer-contact-item > span {
    margin-bottom: var(--space-1);
    color: var(--color-primary);
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-semibold);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.footer-contact-item a,
.footer-contact-item address {
    color: rgba(255, 255, 255, 0.64);
    font-size: var(--font-size-sm);
    font-style: normal;
    line-height: 1.75;
    overflow-wrap: anywhere;
    transition: color var(--transition-fast);
}

.footer-contact-item address a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-contact-item a:hover,
.footer-contact-item address a:hover {
    color: var(--color-primary);
}


/* =========================================================
   65. FOOTER STATEMENT
   ========================================================= */

.footer-statement {
    padding-block: var(--space-12);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-statement p {
    margin: 0;
    color: var(--color-white);
    font-size: clamp(2rem, 5vw, 4.6rem);
    font-weight: var(--font-weight-semibold);
    letter-spacing: -0.045em;
    line-height: 1.08;
}

.footer-statement p span {
    display: block;
    color: var(--color-primary);
    font-weight: var(--font-weight-semibold);
}


/* =========================================================
   66. FOOTER BOTTOM
   ========================================================= */

.footer-bottom {
    padding-block: var(--space-6);
}

.footer-bottom-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-6);
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.44);
    font-size: var(--font-size-xs);
}

.footer-bottom strong {
    color: rgba(255, 255, 255, 0.72);
    font-weight: var(--font-weight-medium);
}


/* =========================================================
   67. FOOTER RESPONSIVENESS
   ========================================================= */

@media (max-width: 1040px) {
    .footer-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }
}


@media (max-width: 700px) {
    .footer-main {
        padding-block:
            var(--space-16)
            var(--space-12);
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-10);
    }

    .footer-brand {
        max-width: 100%;
    }

    .footer-logo {
        width: 138px;
        height: 82px;
    }

    .footer-column {
        padding-top: var(--space-8);
        border-top: 1px solid rgba(255, 255, 255, 0.12);
    }

    .footer-statement {
        padding-block: var(--space-10);
    }

    .footer-statement p {
        font-size: clamp(2rem, 10vw, 3.2rem);
    }

    .footer-bottom-content {
        align-items: flex-start;
        flex-direction: column;
        gap: var(--space-2);
    }
}

/* =========================================================
   68. FLOATING WHATSAPP BUTTON
   ========================================================= */

.floating-whatsapp {
    position: fixed;
    right: var(--space-5);
    bottom: var(--space-5);
    z-index: 3000;
    display: inline-flex;
    min-height: 54px;
    align-items: center;
    gap: var(--space-3);
    padding:
        var(--space-3)
        var(--space-5)
        var(--space-3)
        var(--space-3);
    background-color: #1f9d55;
    color: var(--color-white);
    border-radius: var(--border-radius-round);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-semibold);
    transition:
        transform var(--transition-fast),
        box-shadow var(--transition-fast),
        background-color var(--transition-fast);
}

.floating-whatsapp:hover {
    transform: translateY(-3px);
    background-color: #188447;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.3);
}

.floating-whatsapp-icon {
    display: inline-flex;
    width: 34px;
    height: 34px;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background-color: rgba(255, 255, 255, 0.16);
    border-radius: 50%;
    font-size: 0.72rem;
    font-weight: var(--font-weight-bold);
    letter-spacing: 0.04em;
}

.floating-whatsapp-text {
    white-space: nowrap;
}


/* =========================================================
   69. BACK TO TOP BUTTON
   ========================================================= */

.back-to-top {
    position: fixed;
    right: var(--space-5);
    bottom: 92px;
    z-index: 2999;
    display: flex;
    width: 50px;
    height: 50px;
    visibility: hidden;
    opacity: 0;
    transform: translateY(12px);
    align-items: center;
    justify-content: center;
    background-color: var(--color-dark);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: var(--color-white);
    border-radius: 50%;
    box-shadow: var(--shadow-md);
    font-size: var(--font-size-lg);
    transition:
        opacity var(--transition-fast),
        visibility var(--transition-fast),
        transform var(--transition-fast),
        background-color var(--transition-fast);
}

.back-to-top.visible {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.back-to-top:hover {
    background-color: var(--color-primary);
    color: var(--color-black);
}


/* =========================================================
   70. FLOATING BUTTON RESPONSIVENESS
   ========================================================= */

@media (max-width: 700px) {
    .floating-whatsapp {
        right: var(--space-3);
        bottom: var(--space-3);
        min-height: 50px;
        padding:
            var(--space-2)
            var(--space-3)
            var(--space-2)
            var(--space-2);
    }

    .floating-whatsapp-icon {
        width: 32px;
        height: 32px;
    }

    .floating-whatsapp-text {
        display: none;
    }

    .back-to-top {
        right: var(--space-3);
        bottom: 72px;
        width: 46px;
        height: 46px;
    }
}

/* =========================================================
   71. PREMIUM LEADERSHIP SECTION
   ========================================================= */

.leadership-section {
    position: relative;
    overflow: hidden;
    padding-top: calc(var(--space-24) + var(--header-height));
    padding-bottom: var(--space-24);
    background:
        radial-gradient(
            circle at 82% 32%,
            rgba(199, 162, 75, 0.1),
            transparent 34%
        ),
        var(--color-black);
}

.leadership-section::before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.08);
    content: "";
}

.leadership-feature {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns:
        minmax(0, 0.9fr)
        minmax(420px, 1.1fr);
    align-items: center;
    gap: var(--space-16);
}


/* =========================================================
   72. LEADERSHIP CONTENT
   ========================================================= */

.leadership-feature-content {
    max-width: 690px;
}

.leadership-feature-content .section-title {
    margin-bottom: var(--space-8);
    color: var(--color-white);
}

.leadership-feature-content > p {
    color: rgba(255, 255, 255, 0.66);
}

.leadership-identity {
    margin-bottom: var(--space-6);
    padding-bottom: var(--space-5);
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.leadership-identity h3 {
    margin-bottom: var(--space-2);
    color: var(--color-white);
    font-size: clamp(1.6rem, 3vw, 2.35rem);
}

.leadership-identity > span {
    color: var(--color-primary);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-semibold);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}


/* =========================================================
   73. CEO QUOTE
   ========================================================= */

.leadership-quote {
    position: relative;
    margin-top: var(--space-8);
    padding:
        var(--space-8)
        var(--space-8)
        var(--space-8)
        var(--space-10);
    background-color: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(199, 162, 75, 0.45);
    border-radius: var(--border-radius-md);
}

.leadership-quote-mark {
    position: absolute;
    top: -0.7rem;
    left: var(--space-5);
    color: var(--color-primary);
    font-family: Georgia, serif;
    font-size: 5rem;
    line-height: 1;
}

.leadership-quote > p {
    margin-bottom: var(--space-6);
    color: rgba(255, 255, 255, 0.83);
    font-family: var(--font-display);
    font-size: var(--font-size-md);
    font-style: italic;
    line-height: 1.8;
}

.leadership-quote footer {
    display: grid;
    gap: var(--space-1);
}

.leadership-quote footer strong {
    color: var(--color-primary);
    font-size: var(--font-size-base);
}

.leadership-quote footer span {
    color: rgba(255, 255, 255, 0.48);
    font-size: var(--font-size-xs);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}


/* =========================================================
   74. LEADERSHIP TRUST DETAILS
   ========================================================= */

.leadership-trust-list {
    display: grid;
    margin-top: var(--space-8);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.leadership-trust-list div {
    display: grid;
    min-height: 125px;
    padding: var(--space-5);
    align-content: center;
    gap: var(--space-2);
    border-right: 1px solid rgba(255, 255, 255, 0.14);
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.leadership-trust-list span {
    color: rgba(255, 255, 255, 0.45);
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-semibold);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.leadership-trust-list strong {
    color: var(--color-white);
    font-size: var(--font-size-sm);
    line-height: 1.6;
}


/* =========================================================
   75. LEADERSHIP PORTRAIT
   ========================================================= */

.leadership-feature-image {
    position: relative;
    min-height: 620px;
    overflow: hidden;
    background-color: var(--color-dark);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-lg);
}

.leadership-feature-image::after {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            transparent 54%,
            rgba(5, 6, 7, 0.92) 100%
        );
    content: "";
    pointer-events: none;
}

.leadership-feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 15% center;
}

.leadership-feature-image figcaption {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    padding: var(--space-8);
}

.leadership-feature-image figcaption span {
    display: block;
    margin-bottom: var(--space-2);
    color: var(--color-primary);
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-semibold);
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.leadership-feature-image figcaption strong {
    color: var(--color-white);
    font-size: clamp(1.5rem, 3vw, 2.3rem);
}


/* =========================================================
   76. LEADERSHIP RESPONSIVENESS
   ========================================================= */

@media (max-width: 1040px) {
    .leadership-section::before {
        display: none;
    }

    .leadership-feature {
        grid-template-columns: 1fr;
    }

    .leadership-feature-content {
        max-width: 820px;
    }

    .leadership-feature-image {
        min-height: 680px;
    }
}


@media (max-width: 700px) {
    .leadership-section {
        padding-block: var(--space-16);
    }

    .leadership-feature {
        gap: var(--space-10);
    }

    .leadership-quote {
        padding:
            var(--space-8)
            var(--space-5)
            var(--space-6);
    }

    .leadership-trust-list {
        grid-template-columns: 1fr;
    }

    .leadership-feature-image {
        min-height: 500px;
    }

    .leadership-feature-image img {
        object-position: 55% center;
    }

    .leadership-feature-image figcaption {
        padding: var(--space-6);
    }
}

/* =========================================================
   77. LIVE CONTACT MAP
   ========================================================= */

.contact-map {
    min-height: 520px;
    overflow: hidden;
    background-color: var(--color-light-gray);
}

.contact-map iframe {
    display: block;
    width: 100%;
    height: 520px;
    border: 0;
}

.contact-map-address h3 {
    margin-bottom: var(--space-3);
    font-size: var(--font-size-xl);
}

.contact-map-address address {
    margin-bottom: var(--space-4);
    color: var(--color-body);
    font-style: normal;
    line-height: 1.8;
}

.contact-map-address p {
    margin-bottom: var(--space-5);
    color: var(--color-body);
    font-size: var(--font-size-sm);
}

.contact-direction-button {
    width: 100%;
}


/* Mobile map */
@media (max-width: 700px) {
    .contact-map,
    .contact-map iframe {
        min-height: 380px;
        height: 380px;
    }
}