:root {
    --bg: #F5F3EE;
    --bg2: #FFFFFF;
    --bg3: #EDEDEA;
    --bg4: #E0DDD5;
    --dark: #1A1A1D;
    --text: #1A1A1D;
    --t80: rgba(26, 26, 29, .8);
    --t50: rgba(26, 26, 29, .5);
    --t30: rgba(26, 26, 29, .3);
    --t15: rgba(26, 26, 29, .15);
    --green: #235E44;
    --green-l: #2E7A59;
    --g05: rgba(35, 94, 68, .05);
    --g10: rgba(35, 94, 68, .1);
    --g15: rgba(35, 94, 68, .15);
    --burg: #8B1122;
    --burg-l: #A81830;
    --gold: #D4AF37;
    --gold-d: #BA9A2F;
    --go20: rgba(212, 175, 55, .2);
    --go10: rgba(212, 175, 55, .1);
    --go05: rgba(212, 175, 55, .05);
    --serif: 'Cormorant Garamond', serif;
    --sans: 'Montserrat', sans-serif;
    --sh: 0 4px 20px rgba(0, 0, 0, .05);
    --sh-lg: 0 12px 40px rgba(0, 0, 0, .08);
    --tr: all .4s cubic-bezier(.25, .46, .45, .94);
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    font-family: var(--sans);
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden
}

a {
    text-decoration: none;
    color: inherit
}

ul {
    list-style: none
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem
}

/* Topbar */
.topbar {
    background: var(--dark);
    padding: .45rem 0;
    font-size: .7rem;
    color: rgba(255, 255, 255, .55)
}

.topbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.topbar-left {
    display: flex;
    gap: 1.5rem
}

.topbar-left span {
    display: flex;
    align-items: center;
    gap: .35rem
}

.topbar-left i {
    color: var(--gold);
    font-size: .6rem
}

.topbar-right {
    display: flex;
    gap: .8rem
}

.topbar-right a {
    color: rgba(255, 255, 255, .35);
    transition: color .3s;
    font-size: .8rem
}

.topbar-right a:hover {
    color: var(--gold)
}

/* Navbar */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, .97);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--bg4);
    box-shadow: 0 1px 8px rgba(0, 0, 0, .03)
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px
}
.contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem
}
.logo {
    display: flex;
    align-items: center;
    gap: .75rem
}

.logo-mark {
    width: 42px;
    height: 42px;
    border: 2px solid var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green);
    font-size: .95rem
}

.logo-text h2 {
    font-family: var(--serif);
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: .03em
}

.logo-text h2 span {
    color: var(--gold-d)
}

.logo-text p {
    font-size: .5rem;
    text-transform: uppercase;
    letter-spacing: .2em;
    color: var(--t30)
}
.mobile-hamburger{
    display:none;
    position:fixed;
    top:30px;
    right:30px;
}
.hamburger{
    display:none;
}
.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center
}

.nav-links a {
    font-size: .76rem;
    font-weight: 600;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: var(--t50);
    transition: color .3s;
    position: relative;
    padding-bottom: 3px
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1.5px;
    background: var(--gold);
    transition: all .3s;
    transform: translateX(-50%)
}

.nav-links a:hover {
    color: var(--text)
}

.nav-links a:hover::after {
    width: 100%
}

.nav-cta {
    padding: .6rem 1.5rem !important;
    border: 1.5px solid var(--green) !important;
    color: var(--green) !important;
    font-weight: 700 !important;
    letter-spacing: .08em !important;
    transition: all .3s !important
}

.nav-cta:hover {
    background: var(--green) !important;
    color: #fff !important
}

.nav-cta::after {
    display: none !important
}

.mobile-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer
}

.mobile-btn span {
    width: 24px;
    height: 2px;
    background: var(--text);
    transition: var(--tr)
}

/* Hero Slider */
.hero {
    position: relative;
    height: 85vh;
    min-height: 550px;
    overflow: hidden
}

/* Hero Water Ripple Overlay — sole background layer */
#heroRippleBg {
    position: absolute;
    inset: -20px;
    z-index: 0;
    background: transparent;
    transform: scale(1.05);
    will-change: transform;
    transition: transform .15s ease-out;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease
}

.hero-slide.active {
    opacity: 1
}

.hero-slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(.35)
}

/* 3D Mouse Parallax Layers */
.parallax-layer {
    position: absolute;
    inset: -40px;
    background-size: cover;
    background-position: center;
    filter: brightness(.3) saturate(.7);
    transition: transform .15s ease-out;
    will-change: transform;
    transform: translate(0, 0) scale(1.05);
}

.parallax-layer:nth-child(1) {
    z-index: 0
}

.parallax-layer:nth-child(2) {
    z-index: 1
}

.parallax-layer:nth-child(3) {
    z-index: 2
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 26, 29, .7), rgba(35, 94, 68, .3))
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    margin-bottom: 1rem;
    opacity: 0;
    animation: fadeUp .7s ease forwards .3s
}

.hero-eyebrow .dia {
    width: 7px;
    height: 7px;
    background: var(--gold);
    transform: rotate(45deg)
}

.hero-eyebrow span {
    font-size: .6rem;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 700
}

.hero h1 {
    font-family: var(--serif);
    font-size: clamp(2.5rem, 5.5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1rem;
    max-width: 700px;
    opacity: 0;
    animation: fadeUp .7s ease forwards .5s
}

.hero h1 em {
    font-style: italic;
    color: var(--gold)
}

.hero-desc {
    font-size: 1rem;
    max-width: 520px;
    color: rgba(255, 255, 255, .7);
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeUp .7s ease forwards .7s
}

.hero-btns {
    display: flex;
    gap: 1rem;
    opacity: 0;
    animation: fadeUp .7s ease forwards .9s
}

.btn-g {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .95rem 2rem;
    background: var(--green);
    color: #fff;
    border: none;
    font-family: var(--sans);
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--tr)
}

.btn-g:hover {
    background: var(--green-l);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(35, 94, 68, .25)
}

.btn-w {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .95rem 2rem;
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, .3);
    font-family: var(--sans);
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--tr)
}

.btn-w:hover {
    background: rgba(255, 255, 255, .1);
    border-color: rgba(255, 255, 255, .5)
}

/* Slider dots */
.hero-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: .6rem;
    z-index: 5
}

.hero-dot {
    width: 10px;
    height: 10px;
    border: 2px solid rgba(255, 255, 255, .4);
    border-radius: 50%;
    cursor: pointer;
    transition: all .3s;
    background: transparent
}

.hero-dot.active {
    background: var(--gold);
    border-color: var(--gold)
}

/* Breadcrumb bar */
.breadcrumb-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(35, 94, 68, .85);
    backdrop-filter: blur(10px);
    padding: .75rem 0;
    z-index: 5
}

.breadcrumb-bar .container {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .75rem;
    color: rgba(255, 255, 255, .7)
}

.breadcrumb-bar a {
    color: var(--gold);
    transition: color .3s
}

.breadcrumb-bar a:hover {
    color: #fff
}

.breadcrumb-bar span {
    color: rgba(255, 255, 255, .3)
}

/* Process Steps */
.process {
    padding: 5rem 0;
    background: var(--bg2)
}

.sec-head {
    text-align: center;
    margin-bottom: 3rem
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-size: .6rem;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gold-d);
    margin-bottom: .6rem
}

.eyebrow .line {
    width: 25px;
    height: 1px;
    background: var(--go20)
}

.sec-title {
    font-family: var(--serif);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 700;
    margin-bottom: .4rem
}

.sec-title em {
    font-style: italic;
    color: var(--green)
}

.sec-desc {
    font-size: .88rem;
    color: var(--t50);
    max-width: 500px;
    margin: 0 auto
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    position: relative
}

.process-grid::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 12%;
    width: 76%;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--go20), var(--gold));
    z-index: 0
}

.step {
    text-align: center;
    position: relative;
    z-index: 1
}

.step-num {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.2rem;
    background: var(--bg2);
    border: 2px solid var(--go20);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--serif);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--green);
    transition: var(--tr)
}

.step:hover .step-num {
    background: var(--green);
    color: #fff;
    border-color: var(--green);
    box-shadow: 0 8px 20px rgba(35, 94, 68, .2)
}

.step h4 {
    font-family: var(--serif);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: .3rem
}

.step p {
    font-size: .78rem;
    color: var(--t50);
    max-width: 220px;
    margin: 0 auto
}
.blog-shortcard {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 1.5rem;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #eee;
    text-decoration: none;
    color: inherit;
    transition: transform .3s,box-shadow .3s;
}
/* About */
.about {
    padding: 5rem 0
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center
}

.about-visual {
    position: relative
}

.about-img {
    width: 100%;
    aspect-ratio: 4/5;
    background: linear-gradient(135deg, var(--g05), var(--bg3));
    border: 1px solid var(--bg4);
    display: flex;
    align-items: center;
    justify-content: center
}

.about-img i {
    font-size: 5rem;
    color: var(--g10)
}

.about-badge {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 95px;
    height: 95px;
    background: var(--green);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 8px 25px rgba(35, 94, 68, .3)
}

.about-badge h4 {
    font-family: var(--serif);
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1
}

.about-badge span {
    font-size: .5rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    opacity: .8
}

.about-text .eyebrow {
    justify-content: flex-start;
    margin-bottom: .5rem
}

.about-text h2 {
    font-family: var(--serif);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2
}

.about-text h2 em {
    font-style: italic;
    color: var(--green)
}

.about-text .gold-line {
    width: 45px;
    height: 2px;
    background: var(--gold);
    margin-bottom: 1rem
}

.about-text>p {
    font-size: .88rem;
    color: var(--t50);
    margin-bottom: 1.5rem
}

.about-checks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .6rem;
    margin-bottom: 1.5rem
}

.about-check {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .82rem;
    color: var(--t80)
}

.about-check i {
    color: var(--green);
    font-size: .7rem
}

/* Services */
.services {
    padding: 5rem 0;
    background: var(--bg2)
}

.svc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem
}

.svc {
    padding: 2rem;
    background: var(--bg);
    border: 1px solid var(--bg4);
    transition: var(--tr);
    position: relative;
    overflow: hidden
}

.svc::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--go05), transparent 50%);
    opacity: 0;
    transition: opacity .4s
}

.svc:hover {
    transform: translateY(-5px);
    box-shadow: var(--sh-lg);
    border-color: var(--go20)
}

.svc:hover::before {
    opacity: 1
}

.svc-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem
}

.svc-ico {
    width: 46px;
    height: 46px;
    border: 1.5px solid var(--g15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green);
    font-size: 1rem;
    transition: var(--tr)
}

.svc:hover .svc-ico {
    background: var(--green);
    color: #fff;
    border-color: var(--green)
}

.svc-no {
    font-family: var(--serif);
    font-size: 2rem;
    color: var(--bg4)
}

.svc:hover .svc-no {
    color: var(--go20)
}

.svc h3 {
    font-family: var(--serif);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: .4rem;
    position: relative
}

.svc p {
    font-size: .8rem;
    color: var(--t50);
    margin-bottom: .8rem;
    position: relative
}

.svc-link {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--gold-d);
    transition: gap .3s;
    position: relative
}

.svc-link:hover {
    gap: .6rem
}

/* Stats */
.stats {
    background: var(--green);
    padding: 3rem 0
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
    color: #fff
}

.stat {
    padding: 1.5rem;
    border-right: 1px solid rgba(255, 255, 255, .12)
}

.stat:last-child {
    border: none
}

.stat h3 {
    font-family: var(--serif);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold)
}

.stat span {
    font-size: .7rem;
    text-transform: uppercase;
    letter-spacing: .12em;
    opacity: .7
}

/* Testimonials */
.testi {
    padding: 5rem 0
}

.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem
}

.testi-card {
    padding: 2rem;
    background: var(--bg2);
    border: 1px solid var(--bg4);
    transition: var(--tr)
}

.testi-card:hover {
    transform: translateY(-3px);
    border-color: var(--go20);
    box-shadow: var(--sh)
}

.testi-card .q {
    font-family: var(--serif);
    font-size: 3rem;
    color: var(--go20);
    line-height: 1
}

.testi-card .stars {
    color: var(--gold);
    font-size: .75rem;
    letter-spacing: .1em;
    margin-bottom: .6rem
}

.testi-card blockquote {
    font-size: .82rem;
    color: var(--t50);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1.2rem
}

.testi-who {
    display: flex;
    align-items: center;
    gap: .6rem;
    padding-top: .8rem;
    border-top: 1px solid var(--bg4)
}

.testi-av {
    width: 36px;
    height: 36px;
    border: 1.5px solid var(--g15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--serif);
    font-size: .85rem;
    font-weight: 700;
    color: var(--green)
}

.testi-who h5 {
    font-size: .82rem;
    font-weight: 600
}

.testi-who span {
    font-size: .68rem;
    color: var(--t30)
}

/* CTA */
.cta {
    padding: 5rem 0;
    background: var(--bg2);
    position: relative;
    overflow: hidden
}

.cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(var(--t15) 1px, transparent 1px), linear-gradient(90deg, var(--t15) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: .12
}

.cta .container {
    position: relative;
    z-index: 2;
    text-align: center
}

.cta-burg {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .35rem .8rem;
    border: 1.5px solid var(--burg);
    color: var(--burg);
    font-size: .6rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: .8rem
}

.cta h2 {
    font-family: var(--serif);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 700;
    max-width: 600px;
    margin: 0 auto .6rem;
    line-height: 1.15
}

.cta h2 em {
    font-style: italic;
    color: var(--green)
}

.cta>div>p {
    font-size: .88rem;
    color: var(--t50);
    max-width: 430px;
    margin: 0 auto 1.5rem
}

.cta-btns {
    display: flex;
    justify-content: center;
    gap: 1rem
}

/* Page Content Wrapper */
.page-content {
    position: relative;
    z-index: 1;
    background: var(--bg)
}

/* Footer with Water Ripple */
.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 4rem 0 2rem;
    background: var(--dark);
    color: rgba(255, 255, 255, .5);
    overflow: hidden;
    z-index: 0
}

.footer-bg {
    position: absolute;
    inset: 0;
    z-index: 0
}

.footer .container {
    position: relative;
    z-index: 2;
    pointer-events: none
}

.footer a,
.footer button {
    pointer-events: auto
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem
}

.footer-brand h3 {
    font-family: var(--serif);
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: .6rem
}

.footer-brand h3 span {
    color: var(--gold)
}

.footer-brand p {
    font-size: .78rem;
    max-width: 260px;
    margin-bottom: .8rem
}

.footer-social {
    display: flex;
    gap: .5rem
}

.footer-social a {
    width: 32px;
    height: 32px;
    border: 1px solid rgba(255, 255, 255, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .35);
    transition: all .3s;
    font-size: .75rem
}

.footer-social a:hover {
    border-color: var(--gold);
    color: var(--gold)
}

.footer-col h4 {
    font-family: var(--serif);
    font-size: .95rem;
    color: var(--gold);
    margin-bottom: .6rem
}

.footer-col ul li {
    margin-bottom: .4rem
}

.footer-col ul a {
    font-size: .75rem;
    transition: color .3s
}

.footer-col ul a:hover {
    color: #fff
}

.footer-bottom {
    padding-top: 1.2rem;
    border-top: 1px solid rgba(255, 255, 255, .07);
    display: flex;
    justify-content: space-between
}

.footer-bottom p {
    font-size: .68rem;
    color: rgba(255, 255, 255, .25)
}

/* Reveal */
.reveal {
    opacity: 0;
    transform: translateY(25px);
    transition: all .7s ease
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0)
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

/* ============================================
   PREMIUM VISUAL EFFECTS
   ============================================ */

/* 1. Custom Cursor Glow */
.cursor-glow {
    position: fixed;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, .07) 0%, rgba(212, 175, 55, .02) 35%, transparent 70%);
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: opacity .4s;
    opacity: 0;
    mix-blend-mode: screen;
}

body:hover .cursor-glow {
    opacity: 1
}

/* 2. Button Shine Sweep */
.btn-g,
.btn-w,
.nav-cta {
    position: relative;
    overflow: hidden;
}

.btn-g::after,
.nav-cta::after {
    content: '' !important;
    position: absolute !important;
    top: -50% !important;
    left: -75% !important;
    width: 50% !important;
    height: 200% !important;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .15), transparent) !important;
    transform: skewX(-25deg) !important;
    transition: none !important;
    display: block !important;
}

.btn-g:hover::after,
.nav-cta:hover::after {
    animation: shineSweep .6s ease forwards !important;
}

.btn-w::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -75%;
    width: 50%;
    height: 200%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .1), transparent);
    transform: skewX(-25deg);
}

.btn-w:hover::after {
    animation: shineSweep .6s ease forwards;
}

@keyframes shineSweep {
    to {
        left: 125%
    }
}

/* 3. Service Cards - 3D Tilt (JS-enhanced) */
.svc {
    transform-style: preserve-3d;
    perspective: 800px;
}

.svc-ico {
    transition: var(--tr), transform .3s;
}

.svc:hover .svc-ico {
    transform: rotateY(360deg);
}

.svc-link {
    transition: gap .3s, letter-spacing .3s;
}

.svc-link:hover {
    letter-spacing: .15em;
}

/* 4. Testimonial Cards - Gold Glow Border */
.testi-card {
    position: relative;
    overflow: hidden;
}

.testi-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--gold), transparent 40%, transparent 60%, var(--green));
    opacity: 0;
    transition: opacity .5s;
    z-index: -1;
}

.testi-card::after {
    content: '';
    position: absolute;
    inset: 1px;
    background: var(--bg2);
    z-index: -1;
    transition: background .5s;
}

.testi-card:hover::before {
    opacity: 1;
}

.testi-card:hover {
    border-color: transparent;
    box-shadow: 0 8px 30px rgba(212, 175, 55, .12), 0 4px 15px rgba(35, 94, 68, .08);
}

/* 5. Hero Gold Particles */
.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat linear infinite;
}

@keyframes particleFloat {
    0% {
        opacity: 0;
        transform: translateY(0) scale(0)
    }

    10% {
        opacity: .6
    }

    90% {
        opacity: .2
    }

    100% {
        opacity: 0;
        transform: translateY(-85vh) scale(1)
    }
}

/* 6. Navbar Scroll Enhancement */
.navbar {
    transition: box-shadow .4s, background .4s, border-color .4s;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, .99);
    box-shadow: 0 4px 20px rgba(0, 0, 0, .06);
    border-bottom-color: var(--go20);
}

/* 7. Stats Counter Glow */
.stat h3 {
    transition: text-shadow .5s;
}

.stat:hover h3 {
    text-shadow: 0 0 20px rgba(212, 175, 55, .5), 0 0 40px rgba(212, 175, 55, .2);
}

.stat {
    transition: transform .3s;
}

.stat:hover {
    transform: scale(1.05);
}

/* 8. About Badge Pulse */
@keyframes badgePulse {

    0%,
    100% {
        box-shadow: 0 8px 25px rgba(35, 94, 68, .3)
    }

    50% {
        box-shadow: 0 8px 35px rgba(35, 94, 68, .5), 0 0 15px rgba(212, 175, 55, .15)
    }
}

.about-badge {
    animation: badgePulse 3s ease-in-out infinite;
}

/* 9. Process Step Hover Enhancement */
.step {
    transition: transform .3s;
}

.step:hover {
    transform: translateY(-8px);
}

.step:hover h4 {
    color: var(--green);
    transition: color .3s;
}

/* 10. Eyebrow Lines Animation */
.eyebrow .line {
    transition: width .5s;
}

.sec-head:hover .eyebrow .line {
    width: 45px;
}

/* 11. CTA Section Shimmer */
@keyframes ctaShimmer {
    0% {
        background-position: -200% center
    }

    100% {
        background-position: 200% center
    }
}

.cta-burg {
    transition: all .3s;
}

.cta-burg:hover {
    background: var(--burg);
    color: #fff;
    transform: scale(1.05);
}

/* 12. Footer Social Hover */
.footer-social a {
    transition: all .3s, transform .3s;
}

.footer-social a:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 4px 12px rgba(212, 175, 55, .25);
}

/* 13. Footer Links Slide */
.footer-col ul a {
    position: relative;
    padding-left: 0;
    transition: color .3s, padding-left .3s;
}

.footer-col ul a:hover {
    padding-left: .5rem;
    color: var(--gold);
}

.footer-col ul a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width .3s;
    transform: translateY(-50%);
}

.footer-col ul a:hover::before {
    width: .3rem;
}

/* 14. Mouse Spotlight on Cards (JS-driven) */
.svc .card-spotlight,
.testi-card .card-spotlight {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity .4s;
    pointer-events: none;
    z-index: 0;
}

.svc:hover .card-spotlight,
.testi-card:hover .card-spotlight {
    opacity: 1;
}

/* ============================================
   BREATHING & AMBIENT EFFECTS
   ============================================ */

/* 15. Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--green), var(--gold), var(--burg));
    z-index: 10000;
    width: 0%;
    transition: width .05s linear;
}

/* 16. Breathing Section Backgrounds */
@keyframes sectionBreathe {

    0%,
    100% {
        background-position: 0% 50%
    }

    50% {
        background-position: 100% 50%
    }
}

.process {
    background: linear-gradient(135deg, #FFFFFF 0%, #f8f6f0 25%, #FFFFFF 50%, #faf8f2 75%, #FFFFFF 100%);
    background-size: 400% 400%;
    animation: sectionBreathe 12s ease-in-out infinite;
}

.services {
    background: linear-gradient(135deg, #FFFFFF 0%, #f5f3ed 25%, #FFFFFF 50%, #f8f6f0 75%, #FFFFFF 100%);
    background-size: 400% 400%;
    animation: sectionBreathe 15s ease-in-out infinite;
}

.testi {
    background: linear-gradient(135deg, var(--bg) 0%, #f0eee8 25%, var(--bg) 50%, #f2f0ea 75%, var(--bg) 100%);
    background-size: 400% 400%;
    animation: sectionBreathe 18s ease-in-out infinite;
}

/* 17. Gold Text Shimmer on Section Titles */
.sec-title em {
    background: linear-gradient(90deg, var(--green), var(--gold), var(--green));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textShimmer 4s linear infinite;
}

@keyframes textShimmer {
    to {
        background-position: 200% center
    }
}

/* 18. Hero Title Shimmer */
.hero h1 em {
    background: linear-gradient(90deg, var(--gold), #f0d77a, var(--gold));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textShimmer 3s linear infinite;
}

/* Fix: animated word spans inside em must also carry the shimmer */
.hero h1 em span,
.sec-title em span {
    background: inherit;
    background-size: inherit;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: inherit;
}

/* 19. Wave Dividers Between Sections */
.wave-divider {
    position: relative;
    height: 60px;
    overflow: hidden;
    margin-top: -1px;
}

.wave-divider svg {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100%;
}

.wave-divider .wave-1 {
    fill: var(--bg2);
    opacity: .4;
    animation: waveDrift 7s ease-in-out infinite
}

.wave-divider .wave-2 {
    fill: var(--bg2);
    opacity: .6;
    animation: waveDrift 5s ease-in-out infinite reverse
}

.wave-divider .wave-3 {
    fill: var(--bg2);
    opacity: 1
}

@keyframes waveDrift {

    0%,
    100% {
        transform: translateX(0)
    }

    50% {
        transform: translateX(-2%)
    }
}

/* Dark wave variant (before stats) */
.wave-divider--dark .wave-1 {
    fill: var(--green);
    opacity: .3
}

.wave-divider--dark .wave-2 {
    fill: var(--green);
    opacity: .5
}

.wave-divider--dark .wave-3 {
    fill: var(--green)
}

/* Inverse wave (after stats) */
.wave-divider--inv .wave-1 {
    fill: var(--bg);
    opacity: .4
}

.wave-divider--inv .wave-2 {
    fill: var(--bg);
    opacity: .6
}

.wave-divider--inv .wave-3 {
    fill: var(--bg)
}

/* 20. Floating Decorative Icons */
.floating-decor {
    position: absolute;
    pointer-events: none;
    opacity: .04;
    font-size: 4rem;
    color: var(--gold);
    z-index: 0;
    animation: floatDrift 20s ease-in-out infinite;
}

.floating-decor:nth-child(2) {
    animation-delay: -5s;
    animation-duration: 25s
}

.floating-decor:nth-child(3) {
    animation-delay: -10s;
    animation-duration: 22s
}

@keyframes floatDrift {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg)
    }

    25% {
        transform: translate(15px, -20px) rotate(5deg)
    }

    50% {
        transform: translate(-10px, -35px) rotate(-3deg)
    }

    75% {
        transform: translate(20px, -15px) rotate(4deg)
    }
}

/* 21. Hero Vignette Pulse */
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 50%, rgba(0, 0, 0, .4) 100%);
    z-index: 1;
    pointer-events: none;
    animation: vignettePulse 6s ease-in-out infinite;
}

@keyframes vignettePulse {

    0%,
    100% {
        opacity: .7
    }

    50% {
        opacity: .4
    }
}

/* 22. Staggered Reveal (JS applies data-delay) */
.reveal[data-delay="1"] {
    transition-delay: .1s
}

.reveal[data-delay="2"] {
    transition-delay: .2s
}

.reveal[data-delay="3"] {
    transition-delay: .3s
}

.reveal[data-delay="4"] {
    transition-delay: .4s
}

/* 23. Logo Mark Breathing */
@keyframes logoBreathe {

    0%,
    100% {
        border-color: var(--green);
        box-shadow: 0 0 0 rgba(35, 94, 68, 0)
    }

    50% {
        border-color: var(--gold);
        box-shadow: 0 0 12px rgba(212, 175, 55, .15)
    }
}

.logo-mark {
    animation: logoBreathe 4s ease-in-out infinite;
}

/* 24. Stats Section Particles */
.stats {
    position: relative;
    overflow: hidden
}

.stats-particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: rgba(255, 255, 255, .3);
    border-radius: 50%;
    pointer-events: none;
    animation: statsParticle 8s linear infinite;
}

@keyframes statsParticle {
    0% {
        opacity: 0;
        transform: translateY(100%) scale(0)
    }

    20% {
        opacity: .5
    }

    80% {
        opacity: .2
    }

    100% {
        opacity: 0;
        transform: translateY(-200px) scale(1.5)
    }
}

/* 25. About Image Hover Zoom */
.about-img {
    transition: transform .8s cubic-bezier(.25, .46, .45, .94);
    overflow: hidden;
}

.about-visual:hover .about-img i {
    transform: scale(1.1) rotate(-5deg);
    transition: transform .6s;
    color: var(--g15);
}

/* 26. Section Title Underline Grow */
.sec-title {
    position: relative;
    display: inline-block;
}

.sec-title::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    transition: width .8s, left .8s;
}

.sec-title.title-visible::after {
    width: 60%;
    left: 20%;
}

/* 27. CTA Breathing Background */
.cta {
    background: linear-gradient(135deg, #FFFFFF 0%, #faf8f2 25%, #FFFFFF 50%, #f8f6f0 75%, #FFFFFF 100%);
    background-size: 400% 400%;
    animation: sectionBreathe 10s ease-in-out infinite;
}

/* 28. Breadcrumb Slide-in */
.breadcrumb-bar {
    animation: slideInUp .5s ease forwards .3s;
    opacity: 0;
    transform: translateY(10px);
}

@keyframes slideInUp {
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

/* ============================================ */
/* 29-45. EXTRA MOUSE & HOVER INTERACTIONS      */
/* ============================================ */

/* 29. Click Ripple Effect */
.click-ripple {
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    border: 2px solid var(--gold);
    animation: clickRipple .6s ease-out forwards;
}

@keyframes clickRipple {
    0% {
        width: 0;
        height: 0;
        opacity: .7;
        transform: translate(-50%, -50%)
    }

    100% {
        width: 80px;
        height: 80px;
        opacity: 0;
        transform: translate(-50%, -50%)
    }
}

/* 30. Cursor Trail Particles */
.cursor-particle {
    position: fixed;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 99998;
    background: var(--gold);
    opacity: 0;
    animation: cursorParticleFade .8s ease-out forwards;
}

@keyframes cursorParticleFade {
    0% {
        opacity: .6;
        transform: scale(1) translate(0, 0)
    }

    100% {
        opacity: 0;
        transform: scale(0) translate(var(--tx), var(--ty))
    }
}

/* 31. Nav Link Glow Underline */
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    transition: width .4s, left .4s;
    box-shadow: 0 0 8px rgba(212, 175, 55, 0);
}

.nav-links a:hover::after {
    width: 100%;
    left: 0;
    box-shadow: 0 0 8px rgba(212, 175, 55, .5);
}

.nav-links a {
    position: relative;
    transition: color .3s, text-shadow .3s;
}

.nav-links a:hover {
    text-shadow: 0 0 15px rgba(212, 175, 55, .3);
}

/* 32. Topbar Social Icon Hover Bounce */
.topbar-social a {
    transition: transform .3s cubic-bezier(.68, -.55, .27, 1.55), color .3s !important;
}

.topbar-social a:hover {
    transform: scale(1.35) rotate(10deg) !important;
    color: var(--gold) !important;
}

/* 33. Check Item Hover Animation */
.check {
    transition: transform .3s, background .3s, box-shadow .3s, border-color .3s;
    cursor: default;
}

.check:hover {
    transform: translateX(8px) scale(1.03);
    background: rgba(35, 94, 68, .08);
    box-shadow: 0 4px 20px rgba(35, 94, 68, .1);
    border-color: var(--green);
}

.check i {
    transition: transform .3s, color .3s;
}

.check:hover i {
    transform: scale(1.3) rotate(15deg);
    color: var(--gold);
}

/* 34. Process Step Number Glow */
.step-num {
    transition: text-shadow .4s, transform .4s, color .4s;
}

.step:hover .step-num {
    text-shadow: 0 0 25px rgba(212, 175, 55, .6), 0 0 50px rgba(212, 175, 55, .3);
    transform: scale(1.15);
    color: var(--gold);
}

.step h4 {
    transition: color .3s, transform .3s;
}

.step:hover h4 {
    color: var(--gold);
    transform: translateX(4px);
}

/* 35. Hero Eyebrow Diamond Spin */
.hero-eyebrow .dia {
    transition: transform .4s;
}

.hero:hover .hero-eyebrow .dia {
    transform: rotate(180deg);
}

/* 36. About Badge Float & Glow */
.about-badge {
    transition: transform .4s, box-shadow .4s !important;
    cursor: default;
}

.about-badge:hover {
    transform: translateY(-8px) scale(1.08) !important;
    box-shadow: 0 8px 30px rgba(212, 175, 55, .3) !important;
}

/* 37. Testimonial Stars Twinkle */
.testi-stars i {
    transition: transform .3s, filter .3s;
    display: inline-block;
}

.testi-card:hover .testi-stars i:nth-child(1) {
    transform: scale(1.3) rotate(15deg);
    transition-delay: 0s
}

.testi-card:hover .testi-stars i:nth-child(2) {
    transform: scale(1.3) rotate(-10deg);
    transition-delay: .05s
}

.testi-card:hover .testi-stars i:nth-child(3) {
    transform: scale(1.3) rotate(15deg);
    transition-delay: .1s
}

.testi-card:hover .testi-stars i:nth-child(4) {
    transform: scale(1.3) rotate(-10deg);
    transition-delay: .15s
}

.testi-card:hover .testi-stars i:nth-child(5) {
    transform: scale(1.3) rotate(15deg);
    transition-delay: .2s
}

.testi-card:hover .testi-stars i {
    filter: drop-shadow(0 0 6px rgba(212, 175, 55, .8));
}

/* 38. CTA Section Hover Lift */
.cta {
    transition: transform .5s, box-shadow .5s;
}

.cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, .3);
}

/* 39. About Image 3D Tilt */
.about-visual {
    perspective: 800px;
}

.about-img {
    transition: transform .6s ease-out !important;
    transform-style: preserve-3d;
}

/* 40. Stats Number Hover Counter Glow */
.stat-num {
    transition: text-shadow .4s, transform .4s, letter-spacing .4s;
    display: inline-block;
}

.stat:hover .stat-num {
    text-shadow: 0 0 30px rgba(212, 175, 55, .7), 0 0 60px rgba(212, 175, 55, .3);
    transform: scale(1.12);
    letter-spacing: 2px;
}

.stat-label {
    transition: color .4s, transform .4s;
}

.stat:hover .stat-label {
    color: var(--gold);
    transform: translateY(-3px);
}

.stat {
    transition: transform .4s, background .4s;
    cursor: default;
}

.stat:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, .05);
    border-radius: 12px;
}

/* 41. Footer Column Title Hover */
.footer-col h4 {
    transition: color .3s, letter-spacing .3s;
    cursor: default;
}

.footer-col h4:hover {
    color: var(--gold);
    letter-spacing: 1.5px;
}

/* 42. Section Eyebrow Line Pulse on Scroll */
.eyebrow .line {
    transition: width .6s, background .6s;
}

.reveal.visible .eyebrow .line {
    animation: eyebrowPulse 2s ease-in-out infinite;
}

@keyframes eyebrowPulse {

    0%,
    100% {
        opacity: .6
    }

    50% {
        opacity: 1;
        box-shadow: 0 0 8px rgba(212, 175, 55, .4)
    }
}

/* 43. Service Icon Hover Morph */
.svc .svc-icon {
    transition: transform .5s cubic-bezier(.68, -.55, .27, 1.55), background .4s, box-shadow .4s;
}

.svc:hover .svc-icon {
    transform: rotateY(180deg) scale(1.1);
    background: var(--gold);
    box-shadow: 0 0 20px rgba(212, 175, 55, .4);
}

.svc:hover .svc-icon i {
    color: var(--bg) !important;
}

/* 44. Hero Desc Text Glow */
.hero-desc {
    transition: text-shadow .6s;
}

.hero:hover .hero-desc {
    text-shadow: 0 0 20px rgba(255, 255, 255, .08);
}

/* 45. Footer Link Arrow Reveal */
.footer-col ul li a {
    position: relative;
    transition: color .3s, padding-left .3s !important;
}

.footer-col ul li a::before {
    content: '→';
    position: absolute;
    left: -15px;
    opacity: 0;
    transition: left .3s, opacity .3s;
    color: var(--gold);
}

.footer-col ul li a:hover::before {
    left: -20px;
    opacity: 1;
}

.footer-col ul li a:hover {
    padding-left: 10px !important;
    color: var(--gold) !important;
}

/* 46. Interactive Mouse Spotlight on Sections */
.mouse-spotlight {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, .06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    transition: opacity .3s;
    transform: translate(-50%, -50%);
}

/* 47. Scroll-triggered Letter Animation */
.letter-animate span {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px) rotateX(90deg);
    transition: opacity .4s, transform .4s;
}

.letter-animate.visible span {
    opacity: 1;
    transform: translateY(0) rotateX(0);
}

/* 48. Global Hover Sound Feedback - Visual Pulse */
.hover-pulse {
    position: fixed;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(212, 175, 55, .3);
    pointer-events: none;
    z-index: 99997;
    animation: hoverPulseFx .4s ease-out forwards;
}

@keyframes hoverPulseFx {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: .6
    }

    100% {
        transform: translate(-50%, -50%) scale(3);
        opacity: 0
    }
}

/* Responsive */
@media(max-width:1024px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .process-grid::before {
        display: none
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem
    }

    .svc-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .testi-grid {
        grid-template-columns: 1fr;
        max-width: 550px;
        margin: 0 auto
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr
    }
}

@media(max-width:768px) {
    .topbar {
        display: none
    }

    .hamburger {
        display: flex
    }
    .mobile-hamburger{
        display:flex
    }
    .nav-links {
        position: fixed;
        display: none;
        top: 0;
        width: 100%;
        height: 100vh;
        background: var(--bg2);
        flex-direction: column;
        padding: 5rem 2rem;
        gap: 1.2rem;
        box-shadow: -10px 0 30px rgba(0, 0, 0, .08);
        transition: right .4s;
        z-index: 1001
    }

    .open {
        display:flex;
    }
    .blog-shortcard {
        grid-template-columns: 1fr;
        grid-template-rows: 100px 1fr;
    }
    .contact {
        grid-template-columns:1fr;
        grid-template-rows: 1fr 1fr;
    }
    .svc-grid,
    .process-grid {
        grid-template-columns: 1fr
    }

    .hero-btns,
    .cta-btns {
        flex-direction: column;
        align-items: flex-start
    }

    .about-checks {
        grid-template-columns: 1fr
    }

    .footer-grid {
        grid-template-columns: 1fr
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: .4rem
    }

    .stats-grid {
        grid-template-columns: 1fr
    }
}

/* =============================================
   PAGE-SPECIFIC STYLES (Sub-pages)
   ============================================= */

/* Page Hero Banner */
.page-hero {
    position: relative;
    height: 35vh;
    min-height: 280px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff
}

.page-hero-bg {
    position: absolute;
    inset: -20px;
    z-index: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(.3) saturate(.7);
    transform: scale(1.05);
    will-change: transform
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(135deg, rgba(35, 94, 68, .4), rgba(26, 26, 29, .6))
}

.page-hero-content {
    position: relative;
    z-index: 2
}

.page-hero h1 {
    font-family: var(--serif);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: .5rem
}

.page-hero h1 em {
    font-style: italic;
    background: linear-gradient(90deg, var(--gold), #f0d77a, var(--gold));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textShimmer 3s linear infinite
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    font-size: .85rem;
    color: rgba(255, 255, 255, .6)
}

.breadcrumb a {
    color: var(--gold);
    text-decoration: none;
    transition: color .3s
}

.breadcrumb a:hover {
    color: #f0d77a
}

.breadcrumb span {
    color: rgba(255, 255, 255, .4)
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--gold), var(--green));
    transform: translateX(-50%)
}

.timeline-item {
    position: relative;
    width: 50%;
    padding: 1.5rem 2.5rem
}

.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right
}

.timeline-item:nth-child(even) {
    left: 50%
}

.timeline-item::before {
    content: '';
    position: absolute;
    top: 2rem;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--gold);
    border: 3px solid var(--bg2);
    box-shadow: 0 0 0 3px var(--gold);
    z-index: 2
}

.timeline-item:nth-child(odd)::before {
    right: -7px
}

.timeline-item:nth-child(even)::before {
    left: -7px
}

.timeline-year {
    font-family: var(--serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--green);
    margin-bottom: .3rem
}

.timeline-text {
    font-size: .95rem;
    color: var(--t80)
}

/* Value Cards */
.value-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem
}

.value-card {
    background: var(--bg2);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--sh);
    transition: var(--tr);
    border: 1px solid var(--t15)
}

.value-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--sh-lg);
    border-color: var(--gold)
}

.value-card i {
    font-size: 2.2rem;
    color: var(--green);
    margin-bottom: 1rem;
    transition: var(--tr)
}

.value-card:hover i {
    color: var(--gold);
    transform: scale(1.15)
}

.value-card h3 {
    font-family: var(--serif);
    font-size: 1.3rem;
    margin-bottom: .5rem;
    color: var(--text)
}

.value-card p {
    font-size: .9rem;
    color: var(--t80)
}

/* Mission Vision */
.mv-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem
}

.mv-card {
    background: var(--bg2);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--sh);
    border-left: 4px solid var(--green);
    transition: var(--tr)
}

.mv-card:hover {
    border-left-color: var(--gold);
    transform: translateY(-4px)
}

.mv-card h3 {
    font-family: var(--serif);
    font-size: 1.4rem;
    margin-bottom: .8rem;
    display: flex;
    align-items: center;
    gap: .6rem
}

.mv-card h3 i {
    color: var(--gold)
}

/* Team Cards */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem
}

.team-card {
    background: var(--bg2);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--sh);
    transition: var(--tr);
    border: 1px solid var(--t15)
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--sh-lg);
    border-color: var(--gold)
}

.team-photo {
    height: 320px;
    background: linear-gradient(135deg, var(--green), #1a3d2d);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden
}

.team-photo i {
    font-size: 5rem;
    color: rgba(255, 255, 255, .15)
}

.team-photo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .7), transparent);
    opacity: 0;
    transition: opacity .4s;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 1.5rem;
    gap: .8rem
}

.team-card:hover .team-photo-overlay {
    opacity: 1
}

.team-photo-overlay a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .15);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: .9rem;
    transition: var(--tr);
    text-decoration: none
}

.team-photo-overlay a:hover {
    background: var(--gold);
    color: var(--dark)
}

.team-info {
    padding: 1.5rem;
    text-align: center
}

.team-info h3 {
    font-family: var(--serif);
    font-size: 1.3rem;
    margin-bottom: .2rem
}

.team-info .title {
    color: var(--green);
    font-size: .85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .05em
}

.team-info .specialty {
    font-size: .85rem;
    color: var(--t50);
    margin-top: .5rem
}

/* Partner Highlight */
.partner-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem
}

.partner-card {
    display: flex;
    gap: 2rem;
    background: var(--bg2);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--sh);
    border: 1px solid var(--t15);
    transition: var(--tr)
}

.partner-card:hover {
    border-color: var(--gold)
}

.partner-photo-lg {
    width: 160px;
    height: 160px;
    flex-shrink: 0;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--green), #1a3d2d);
    display: flex;
    align-items: center;
    justify-content: center
}

.partner-photo-lg i {
    font-size: 3rem;
    color: rgba(255, 255, 255, .2)
}

.partner-details h3 {
    font-family: var(--serif);
    font-size: 1.3rem;
    margin-bottom: .2rem
}

.partner-details .title {
    color: var(--green);
    font-weight: 600;
    font-size: .85rem;
    margin-bottom: .6rem
}

.partner-details p {
    font-size: .9rem;
    color: var(--t80)
}

/* Contact Form */
.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem
}

.contact-form {
    background: var(--bg2);
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: var(--sh);
    border: 1px solid var(--t15)
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
    margin-bottom: 1.2rem
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: .4rem
}

.form-group.full {
    grid-column: 1/-1
}

.form-group label {
    font-size: .85rem;
    font-weight: 600;
    color: var(--text);
    letter-spacing: .02em
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: .85rem 1rem;
    border: 1.5px solid var(--t15);
    border-radius: 8px;
    font-family: var(--sans);
    font-size: .9rem;
    background: var(--bg);
    color: var(--text);
    transition: var(--tr);
    outline: none
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 3px var(--g10)
}

.form-group textarea {
    resize: vertical;
    min-height: 120px
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 1.2rem
}

.info-card {
    background: var(--bg2);
    padding: 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    box-shadow: var(--sh);
    border: 1px solid var(--t15);
    transition: var(--tr)
}

.info-card:hover {
    border-color: var(--gold);
    transform: translateX(4px)
}

.info-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: var(--g10);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--green);
    font-size: 1.1rem;
    transition: var(--tr)
}

.info-card:hover .info-card-icon {
    background: var(--green);
    color: #fff
}

.info-card h4 {
    font-size: .95rem;
    margin-bottom: .2rem
}

.info-card p {
    font-size: .88rem;
    color: var(--t80)
}

.map-container {
    margin-top: 1.5rem;
    border-radius: 12px;
    overflow: hidden;
    height: 280px;
    background: var(--bg3);
    border: 1px solid var(--t15)
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0
}

/* Blog */
.blog-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 3rem
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem
}

.blog-card {
    background: var(--bg2);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--sh);
    border: 1px solid var(--t15);
    transition: var(--tr)
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--sh-lg);
    border-color: var(--gold)
}

.blog-card-img {
    height: 200px;
    background: linear-gradient(135deg, var(--green), #1a3d2d);
    position: relative;
    overflow: hidden
}

.blog-card-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--green);
    color: #fff;
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    padding: .3rem .8rem;
    border-radius: 4px
}

.blog-card-body {
    padding: 1.5rem
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: .78rem;
    color: var(--t50);
    margin-bottom: .6rem
}

.blog-card-meta i {
    color: var(--gold);
    margin-right: .2rem
}

.blog-card h3 {
    font-family: var(--serif);
    font-size: 1.2rem;
    margin-bottom: .5rem;
    line-height: 1.3;
    transition: color .3s
}

.blog-card:hover h3 {
    color: var(--green)
}

.blog-card p {
    font-size: .88rem;
    color: var(--t80);
    line-height: 1.6
}

.blog-card-link {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    color: var(--green);
    font-size: .85rem;
    font-weight: 600;
    margin-top: .8rem;
    text-decoration: none;
    transition: var(--tr)
}

.blog-card-link:hover {
    color: var(--gold);
    gap: .7rem
}

.featured-article {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--bg2);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--sh);
    border: 1px solid var(--t15);
    margin-bottom: 2.5rem;
    transition: var(--tr)
}

.featured-article:hover {
    box-shadow: var(--sh-lg);
    border-color: var(--gold)
}

.featured-img {
    min-height: 300px;
    background: linear-gradient(135deg, var(--green), #1a3d2d);
    position: relative
}

.featured-badge {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background: var(--gold);
    color: var(--dark);
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    padding: .4rem 1rem;
    border-radius: 4px
}

.featured-body {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center
}

.featured-body h2 {
    font-family: var(--serif);
    font-size: 1.6rem;
    margin-bottom: .8rem;
    line-height: 1.3
}

/* Blog Sidebar */
.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem
}

.sidebar-widget {
    background: var(--bg2);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: var(--sh);
    border: 1px solid var(--t15)
}

.sidebar-widget h4 {
    font-family: var(--serif);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    padding-bottom: .6rem;
    border-bottom: 2px solid var(--go20)
}

.sidebar-cat-list {
    list-style: none
}

.sidebar-cat-list li {
    padding: .5rem 0;
    border-bottom: 1px solid var(--t15);
    display: flex;
    justify-content: space-between;
    align-items: center
}

.sidebar-cat-list li:last-child {
    border-bottom: 0
}

.sidebar-cat-list a {
    color: var(--text);
    text-decoration: none;
    font-size: .9rem;
    transition: color .3s
}

.sidebar-cat-list a:hover {
    color: var(--green)
}

.sidebar-cat-list .count {
    background: var(--g10);
    color: var(--green);
    font-size: .75rem;
    font-weight: 600;
    padding: .15rem .5rem;
    border-radius: 4px
}

.sidebar-tags {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem
}

.sidebar-tag {
    display: inline-block;
    padding: .35rem .8rem;
    background: var(--bg);
    border: 1px solid var(--t15);
    border-radius: 6px;
    font-size: .78rem;
    color: var(--t80);
    text-decoration: none;
    transition: var(--tr)
}

.sidebar-tag:hover {
    background: var(--green);
    color: #fff;
    border-color: var(--green)
}

.sidebar-popular {
    list-style: none
}

.sidebar-popular li {
    padding: .6rem 0;
    border-bottom: 1px solid var(--t15)
}

.sidebar-popular li:last-child {
    border-bottom: 0
}

.sidebar-popular a {
    text-decoration: none;
    font-size: .88rem;
    color: var(--text);
    display: flex;
    gap: .5rem;
    transition: color .3s
}

.sidebar-popular a::before {
    content: '›';
    color: var(--gold);
    font-weight: 700;
    font-size: 1.1rem
}

.sidebar-popular a:hover {
    color: var(--green)
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: .5rem;
    margin-top: 2.5rem
}

.pagination a,
.pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 8px;
    font-size: .9rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--tr);
    border: 1.5px solid var(--t15);
    color: var(--text)
}

.pagination a:hover {
    border-color: var(--green);
    color: var(--green)
}

.pagination .active {
    background: var(--green);
    color: #fff;
    border-color: var(--green)
}

/* Article Detail */
.article-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 3rem
}

.article-header {
    margin-bottom: 2rem
}

.article-category {
    display: inline-block;
    background: var(--g10);
    color: var(--green);
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    padding: .35rem .8rem;
    border-radius: 4px;
    margin-bottom: .8rem
}

.article-header h1 {
    font-family: var(--serif);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    line-height: 1.3;
    margin-bottom: 1rem
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-size: .85rem;
    color: var(--t50)
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: .4rem
}

.article-meta i {
    color: var(--gold)
}

.article-content {
    background: var(--bg2);
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: var(--sh);
    border: 1px solid var(--t15)
}

.article-content h2 {
    font-family: var(--serif);
    font-size: 1.5rem;
    margin: 2rem 0 .8rem;
    color: var(--text);
    padding-bottom: .4rem;
    border-bottom: 2px solid var(--go20)
}

.article-content h2:first-child {
    margin-top: 0
}

.article-content p {
    margin-bottom: 1rem;
    font-size: .95rem;
    line-height: 1.8;
    color: var(--t80)
}

.article-content blockquote {
    border-left: 4px solid var(--gold);
    padding: 1.2rem 1.5rem;
    background: var(--go05);
    border-radius: 0 8px 8px 0;
    margin: 1.5rem 0;
    font-style: italic;
    font-family: var(--serif);
    font-size: 1.1rem;
    color: var(--text)
}

.article-content ul,
.article-content ol {
    margin: 1rem 0 1rem 1.5rem;
    font-size: .95rem;
    color: var(--t80)
}

.article-content li {
    margin-bottom: .5rem;
    line-height: 1.7
}

.article-share {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    margin-top: 2rem;
    border-top: 1px solid var(--t15)
}

.article-share span {
    font-weight: 600;
    font-size: .9rem
}

.article-share a {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: var(--bg);
    border: 1px solid var(--t15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--t80);
    text-decoration: none;
    transition: var(--tr)
}

.article-share a:hover {
    background: var(--green);
    color: #fff;
    border-color: var(--green)
}

.author-box {
    display: flex;
    gap: 1.5rem;
    background: var(--bg2);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--sh);
    border: 1px solid var(--t15);
    margin-top: 2rem
}

.author-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--green), #1a3d2d);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: rgba(255, 255, 255, .3);
    font-size: 2rem
}

.author-info h4 {
    font-family: var(--serif);
    font-size: 1.1rem;
    margin-bottom: .2rem
}

.author-info .author-title {
    color: var(--green);
    font-size: .8rem;
    font-weight: 600
}

.author-info p {
    font-size: .88rem;
    color: var(--t80);
    margin-top: .5rem
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem
}

/* Service Detail */
.svc-detail-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 3rem
}

.svc-detail-content {
    background: var(--bg2);
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: var(--sh);
    border: 1px solid var(--t15)
}

.svc-detail-content h2 {
    font-family: var(--serif);
    font-size: 1.5rem;
    margin: 2rem 0 .8rem;
    color: var(--text)
}

.svc-detail-content h2:first-child {
    margin-top: 0
}

.svc-detail-content p {
    margin-bottom: 1rem;
    font-size: .95rem;
    line-height: 1.8;
    color: var(--t80)
}

.svc-checklist {
    list-style: none;
    margin: 1.5rem 0
}

.svc-checklist li {
    padding: .7rem 0;
    border-bottom: 1px solid var(--t15);
    display: flex;
    align-items: center;
    gap: .8rem;
    font-size: .95rem;
    color: var(--t80)
}

.svc-checklist li:last-child {
    border-bottom: 0
}

.svc-checklist li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--green);
    font-size: .85rem
}

.svc-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem
}

.svc-sidebar-list {
    list-style: none
}

.svc-sidebar-list li {
    border-bottom: 1px solid var(--t15)
}

.svc-sidebar-list li:last-child {
    border-bottom: 0
}

.svc-sidebar-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .8rem 0;
    color: var(--text);
    text-decoration: none;
    font-size: .9rem;
    transition: var(--tr)
}

.svc-sidebar-list a:hover {
    color: var(--green);
    padding-left: .5rem
}

.svc-sidebar-list a i {
    color: var(--gold);
    font-size: .75rem
}

.svc-sidebar-list li.active a {
    color: var(--green);
    font-weight: 600
}

.svc-cta-card {
    background: linear-gradient(135deg, var(--green), #1a3d2d);
    border-radius: 12px;
    padding: 2rem;
    color: #fff;
    text-align: center
}

.svc-cta-card h4 {
    font-family: var(--serif);
    font-size: 1.3rem;
    margin-bottom: .5rem
}

.svc-cta-card p {
    font-size: .88rem;
    opacity: .8;
    margin-bottom: 1.2rem
}

.svc-cta-card .btn-g {
    background: var(--gold);
    color: var(--dark)
}

.svc-process {
    counter-reset: step-counter;
    margin: 2rem 0
}

.svc-step {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--t15);
    counter-increment: step-counter
}

.svc-step:last-child {
    border-bottom: 0
}

.svc-step-num {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--g10);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--serif);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--green);
    flex-shrink: 0
}

.svc-step h4 {
    font-size: 1rem;
    margin-bottom: .3rem
}

.svc-step p {
    font-size: .88rem;
    color: var(--t80)
}

/* FAQ Accordion */
.faq-section {
    max-width: 800px;
    margin: 0 auto
}

.faq-group-title {
    font-family: var(--serif);
    font-size: 1.3rem;
    color: var(--green);
    margin: 2rem 0 1rem;
    display: flex;
    align-items: center;
    gap: .6rem
}

.faq-group-title i {
    color: var(--gold)
}

.faq-item {
    background: var(--bg2);
    border-radius: 10px;
    margin-bottom: .8rem;
    box-shadow: var(--sh);
    border: 1px solid var(--t15);
    overflow: hidden;
    transition: border-color .3s
}

.faq-item.active {
    border-color: var(--green)
}

.faq-question {
    padding: 1.2rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: .95rem;
    color: var(--text);
    transition: color .3s;
    user-select: none
}

.faq-question:hover {
    color: var(--green)
}

.faq-question i {
    color: var(--gold);
    transition: transform .3s;
    font-size: .85rem
}

.faq-item.active .faq-question i {
    transform: rotate(180deg)
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease, padding .4s ease;
    padding: 0 1.5rem
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 1.5rem 1.2rem
}

.faq-answer p {
    font-size: .9rem;
    color: var(--t80);
    line-height: 1.7
}

/* FAQ Section Title */
.faq-section-title {
    font-family: var(--serif);
    font-size: 1.3rem;
    color: var(--green);
    margin: 2.5rem 0 1rem;
    display: flex;
    align-items: center;
    gap: .6rem
}

.faq-section-title i {
    color: var(--gold)
}

/* FAQ Bottom Card */
.faq-bottom-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    background: linear-gradient(135deg, var(--green), #1a3d2d);
    border-radius: 12px;
    padding: 2rem 2.5rem;
    margin-top: 3rem;
    color: #fff
}

.faq-bottom-card h3 {
    font-family: var(--serif);
    font-size: 1.4rem;
    margin-bottom: .3rem
}

.faq-bottom-card p {
    font-size: .9rem;
    opacity: .8
}

.faq-bottom-card .btn-g {
    background: var(--gold);
    color: var(--dark);
    white-space: nowrap
}

/* Article Detail */
.article-detail {
    background: var(--bg2);
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: var(--sh);
    border: 1px solid var(--t15)
}

.article-body h2 {
    font-family: var(--serif);
    font-size: 1.5rem;
    margin: 2rem 0 .8rem;
    color: var(--text);
    padding-bottom: .4rem;
    border-bottom: 2px solid var(--go20)
}

.article-body h2:first-child {
    margin-top: 0
}

.article-body p {
    margin-bottom: 1rem;
    font-size: .95rem;
    line-height: 1.8;
    color: var(--t80)
}

.article-body blockquote {
    border-left: 4px solid var(--gold);
    padding: 1.2rem 1.5rem;
    background: var(--go05);
    border-radius: 0 8px 8px 0;
    margin: 1.5rem 0;
    font-style: italic;
    font-family: var(--serif);
    font-size: 1.1rem;
    color: var(--text)
}

.article-body ul,
.article-body ol {
    margin: 1rem 0 1rem 1.5rem;
    font-size: .95rem;
    color: var(--t80)
}

.article-body li {
    margin-bottom: .5rem;
    line-height: 1.7;
    list-style: disc
}

/* Article Author */
.article-author {
    display: flex;
    align-items: center;
    gap: 1rem
}

.article-author strong {
    display: block;
    font-size: .95rem;
    color: var(--text)
}

.article-author span {
    font-size: .8rem;
    color: var(--green)
}

.article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--t15)
}

.article-meta-right {
    display: flex;
    gap: 1.5rem;
    font-size: .85rem;
    color: var(--t50)
}

.article-meta-right i {
    color: var(--gold);
    margin-right: .3rem
}

/* Related Articles */
.related-articles {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--t15)
}

.related-articles h3 {
    font-family: var(--serif);
    font-size: 1.3rem;
    margin-bottom: 1.5rem
}

/* Form Submit */
.form-submit {
    margin-top: 1rem;
    text-align: right
}

/* Sub-page responsive overrides */
@media(max-width:1024px) {

    .blog-layout,
    .article-layout,
    .svc-detail-layout {
        grid-template-columns: 1fr
    }

    .contact-grid {
        grid-template-columns: 1fr
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .partner-grid {
        grid-template-columns: 1fr
    }

    .featured-article {
        grid-template-columns: 1fr
    }

    .related-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width:768px) {

    .value-grid,
    .mv-grid,
    .blog-grid {
        grid-template-columns: 1fr
    }

    .team-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto
    }

    .form-row {
        grid-template-columns: 1fr
    }

    .timeline::before {
        left: 20px
    }

    .timeline-item {
        width: 100%;
        left: 0 !important;
        text-align: left !important;
        padding-left: 50px;
        padding-right: 0
    }

    .timeline-item::before {
        left: 13px !important;
        right: auto !important
    }

    .related-grid {
        grid-template-columns: 1fr
    }

    .page-hero {
        min-height: 220px
    }
}