:root {
    --primary-color: #192324;
    --secondery-color: #F8F8F8;
    --text-color: #283132;
    --accent-color: #7C877F;
    --white-color: #FFFFFF;
    --divider-color: #EAF0EC;
    --dark-divider-color: #FFFFFF1A;
}

/* ── TYPOGRAPHY ── */
.display-serif {

    font-weight: 300;
    line-height: 1.1;
    color: var(--primary-color)
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 16px
}

.eyebrow::before {
    content: '';
    width: 28px;
    height: 1.5px;
    background: var(--accent-color);
    flex-shrink: 0
}

.eyebrow-light {
    color: var(--accent-color)
}

/* ── NAVBAR ── */
.navbar-custom {
    background: rgba(25, 35, 36, .97);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--dark-divider-color)
}

.navbar-brand-custom {

    font-size: 1.3rem;
    font-weight: 400;
    color: var(--white-color) !important
}

.navbar-brand-custom span {
    color: var(--accent-color)
}

.nav-link-custom {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .55) !important;
    transition: color .2s;
    padding: 0 4px !important
}

.nav-link-custom:hover {
    color: var(--white-color) !important
}

.btn-nav {
    padding: 8px 22px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    background: var(--accent-color);
    color: var(--white-color);
    border: none;

    transition: opacity .2s
}

.btn-nav:hover {
    opacity: .85;
    color: var(--white-color)
}

/* ── HERO ── */
.hero-section {
    position: relative;
    min-height: 94vh;
    display: flex;
    align-items: center;
    background: var(--primary-color);
    overflow: hidden
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1600585154526-990dced4db0d?w=1800&auto=format&fit=crop&q=80') center/cover no-repeat;
    opacity: .2
}

.hero-grid-overlay {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px);
    background-size: 80px 80px
}

.hero-content {
    position: relative;
    z-index: 2
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--accent-color)
}

.hero-eyebrow::before,
.hero-eyebrow::after {
    content: '';
    width: 36px;
    height: 1px;
    background: var(--accent-color)
}

.hero-title {

    font-size: clamp(2.8rem, 7vw, 5.5rem);
    font-weight: 300;
    color: var(--white-color);
    line-height: 1.08
}

.hero-title em {
    font-style: italic;
    color: var(--accent-color)
}

.hero-desc {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, .6)
}

.btn-accent {
    padding: 13px 32px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    background: var(--accent-color);
    color: var(--white-color);
    border: none;

    transition: opacity .2s;
    text-decoration: none
}

.btn-accent:hover {
    opacity: .85;
    color: var(--white-color)
}

.btn-ghost {
    padding: 12px 32px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    background: transparent;
    color: rgba(255, 255, 255, .65);
    border: 1px solid rgba(255, 255, 255, .25);

    transition: all .2s;
    text-decoration: none
}

.btn-ghost:hover {
    border-color: var(--accent-color);
    color: var(--white-color)
}

/* ── SECTION BACKGROUNDS ── */
.bg-brand-white {
    background: var(--white-color)
}

.bg-brand-light {
    background: var(--secondery-color)
}

.bg-brand-dark {
    background: var(--primary-color)
}

.bg-brand-accent {
    background: var(--accent-color)
}

/* ── WHAT IS ── */
.what-img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block
}

/* ── SERVICE CARDS ── */
.svc-card {
    background: var(--white-color);
    border: 1px solid var(--divider-color);
    padding: 32px 28px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: box-shadow .25s, transform .25s
}

.svc-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--accent-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s
}

.svc-card:hover {
    box-shadow: 0 12px 36px rgba(25, 35, 36, .09);
    transform: translateY(-3px)
}

.svc-card:hover::after {
    transform: scaleX(1)
}

.svc-num {

    font-size: .85rem;
    color: var(--accent-color);
    letter-spacing: .12em;
    display: block;
    margin-bottom: 14px
}

.svc-title {

    font-size: 1.2rem;
    font-weight: 400;
    color: var(--primary-color);
    line-height: 1.3;
    margin-bottom: 12px
}

.svc-text {
    font-size: 16px;
    line-height: 1.75;
    color: var(--accent-color);
    margin: 0
}

/* ── BENEFIT ROWS ── */
.benefit-row {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid var(--dark-divider-color)
}

.benefit-row:last-child {
    border-bottom: none
}

.benefit-icon-box {
    width: 38px;
    height: 38px;
    background: rgba(124, 135, 127, .12);
    border: 1px solid rgba(124, 135, 127, .25);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px
}

.benefit-title {
    font-size: 16px;
    font-weight: 500;
    color: var(--white-color);
    margin-bottom: 3px
}

.benefit-desc {
    font-size: 16px;
    line-height: 1.65;
    color: rgba(255, 255, 255, .5);
    margin: 0
}

/* ── INCLUDED LIST ── */
.included-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 13px 0;
    border-bottom: 1px solid var(--divider-color)
}

.included-item:last-child {
    border-bottom: none
}

.included-dot {
    width: 5px;
    height: 5px;
    background: var(--accent-color);
    flex-shrink: 0;
    border-radius: 50%
}

.included-item span {
    font-size: 16px;
    color: var(--text-color)
}

/* ── INDUSTRIES ── */
.ind-card {
    background: var(--white-color);
    border: 1px solid var(--divider-color);
    padding: 28px 20px;
    text-align: center;
    transition: border-color .2s, box-shadow .2s;
    height: 100%
}

.ind-card:hover {
    border-color: var(--accent-color);
    box-shadow: 0 8px 24px rgba(25, 35, 36, .08)
}

.ind-card svg {
    color: var(--accent-color);
    margin-bottom: 14px
}

.ind-name {
    font-size: 16px;
    font-weight: 500;
    color: var(--primary-color)
}

/* ── PROCESS ── */
.process-step {
    padding: 36px 24px;
    border-right: 1px solid var(--divider-color);
    text-align: center;
    height: 100%
}

.process-step:last-child {
    border-right: none
}

@media(max-width:767px) {
    .process-step {
        border-right: none;
        border-bottom: 1px solid var(--divider-color)
    }

    .process-step:last-child {
        border-bottom: none
    }
}

.step-num {

    font-size: 3.5rem;
    font-weight: 300;
    color: var(--divider-color);
    line-height: 1;
    margin-bottom: 14px
}

.step-title {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: .06em;
    color: var(--primary-color);
    text-transform: uppercase;
    margin-bottom: 10px
}

.step-text {
    font-size: 14px;
    line-height: 1.7;
    color: var(--accent-color);
    margin: 0
}

/* ── WHY US ── */
.why-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 15px 0;
    border-bottom: 1px solid var(--dark-divider-color)
}

.why-item:last-child {
    border-bottom: none
}

.why-dot {
    width: 6px;
    height: 6px;
    background: var(--accent-color);
    flex-shrink: 0
}

.why-item span {
    font-size: 16px;
    color: rgba(255, 255, 255, .75)
}

.why-img {
    width: 100%;
    height: 100%;
    min-height: 400px;
    object-fit: cover;
    display: block
}

/* ── CTA BAND ── */
.cta-band h2 {

    font-weight: 300;
    color: var(--white-color)
}

.cta-band p {
    color: rgba(255, 255, 255, .8);
    font-size: 15px;
    line-height: 1.75
}

.btn-white {
    padding: 13px 36px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    background: var(--white-color);
    color: var(--primary-color);
    border: none;

    transition: opacity .2s;
    text-decoration: none;
    display: inline-block
}

.btn-white:hover {
    opacity: .9;
    color: var(--primary-color)
}

/* ── PAGE DIVIDER ── */
.page-divider-text {

    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 300;
    color: var(--accent-color);
    white-space: nowrap
}

/* ── INTERIOR HERO STRIP ── */
.int-hero {
    position: relative;
    overflow: hidden
}

.int-hero-bg {
    position: absolute;
    inset: 0;
    background: url('../images/architecture/1.webp') center/cover no-repeat;
    opacity: .14
}

.int-hero-img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover
}