:root {
    --primary: #909B4C;
    --dark: #2E2C2F;
    --secondary: #B4BB85;
    --accent: #489926;
    --light: #F0EEE9;
    --soft: #E6DAC8;
    --drawer-ease: cubic-bezier(0.76, 0, 0.24, 1);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--light);
    color: var(--dark);
    overflow-x: clip;
    padding-top: 90px;
}

html,
body {
    overflow-x: clip;
    width: 100%;
    max-width: 100%;
}

body.menu-open {
    overflow: hidden;
}

.serif {
    font-family: 'Cormorant Garamond', serif;
}

#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100000;
    width: 100%;
    overflow: hidden;
}

#navbar nav {
    width: 100%;
    max-width: 100vw;
    position: relative;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.0rem 5%;
    background: rgba(240, 238, 233, 0.92);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(144, 155, 76, 0.15);
    transition: all 0.3s ease;
    box-sizing: border-box;
}

#navbar nav.scrolled {
    padding: 1.0rem 5%;
    background: rgba(240, 238, 233, 0.98);
    box-shadow: 0 2px 30px rgba(46, 44, 47, 0.06);
}

#navbar .logo {
    display: flex;
    align-items: center;
}

#navbar .nav-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

#navbar .nav-logo img {
    height: 58px;
    width: auto;
    object-fit: contain;
    display: block;
    transition: transform 0.3s ease;
}

#navbar .nav-logo img:hover {
    transform: scale(1.04);
}

#navbar .nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
}

#navbar .nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-size: 0.84rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    opacity: 0.75;
    transition: all 0.25s ease;
}

#navbar .nav-links a:hover {
    opacity: 1;
    color: var(--primary);
}

#navbar .nav-links a.active {
    color: var(--primary);
    opacity: 1;
    position: relative;
}

#navbar .nav-links a.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 1.5px;
    background: var(--primary);
    border-radius: 10px;
}

#navbar .nav-cta {
    background: var(--primary);
    color: #fff;
    padding: 0.72rem 1.6rem;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

#navbar .nav-cta:hover {
    background: var(--accent);
    transform: translateY(-2px);
}

#navbar .mobile-cta {
    display: none;
}

#navbar .hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    position: relative;
    z-index: 9999;
}

#navbar .hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--dark);
    border-radius: 10px;
    transition: all 0.3s ease;
}

#navbar .hamburger.active span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}

#navbar .hamburger.active span:nth-child(2) {
    opacity: 0;
}

#navbar .hamburger.active span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}

.page-content {
    transition: filter 0.45s ease;
    overflow-x: clip;
}

.drawer {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99999;
    pointer-events: none;
    visibility: hidden;
    overflow: hidden;
    width: 100%;
    max-width: 100vw;
}

.drawer.open {
    pointer-events: all;
    visibility: visible;
}

.drawer-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(46, 44, 47, 0.50);
    opacity: 0;
    transition: opacity 0.4s ease;
    cursor: pointer;
    z-index: 99998;
}

.drawer.open .drawer-backdrop {
    opacity: 1;
}

.drawer-panel {
    position: absolute;
    top: 90px;
    right: 0;
    bottom: 0;
    width: 45%;
    background: rgba(240, 238, 233, 0.98);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    display: flex;
    flex-direction: column;
    max-width: 100vw;
    overflow-y: auto;
    overflow-x: hidden;
    border-left: 1px solid rgba(144, 155, 76, 0.18);
    box-shadow: -16px 0 60px rgba(46, 44, 47, 0.15),
        -3px 0 16px rgba(46, 44, 47, 0.07);
    transform: translateX(100%);
    transition: transform 0.48s var(--drawer-ease);
    will-change: transform;
    z-index: 100000;
}

.drawer.open .drawer-panel {
    transform: translateX(0);
}

.drawer-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
    z-index: 1;
    flex-shrink: 0;
}

.drawer-eyebrow {
    padding: 1.6rem 2rem 0.6rem;
    font-size: 0.62rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--primary);
    font-weight: 600;
    opacity: 0.8;
    flex-shrink: 0;
}

.drawer-nav {
    flex: 1;
    padding: 0.3rem 0;
}

.drawer-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.drawer-nav li {
    opacity: 0;
    transform: translateX(22px);
    transition:
        opacity 0.36s ease calc(var(--i, 0) * 60ms + 0.08s),
        transform 0.40s var(--drawer-ease) calc(var(--i, 0) * 60ms + 0.06s);
}

.drawer.open .drawer-nav li {
    opacity: 1;
    transform: translateX(0);
}

.drawer-nav a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.1rem 2rem;
    text-decoration: none;
    color: var(--dark);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(144, 155, 76, 0.1);
    opacity: 0.85;
    position: relative;
    transition: color 0.22s, padding-left 0.25s ease, background 0.2s, opacity 0.2s;
}

.drawer-nav a::after {
    content: '→';
    font-size: 0.82rem;
    opacity: 0;
    transform: translateX(-6px);
    transition: opacity 0.2s, transform 0.25s ease;
    color: var(--primary);
    flex-shrink: 0;
}

.drawer-nav a:hover {
    color: var(--primary);
    opacity: 1;
    padding-left: 2.5rem;
    background: rgba(144, 155, 76, 0.06);
}

.drawer-nav a:hover::after {
    opacity: 1;
    transform: translateX(0);
}

.drawer-nav a.active {
    color: var(--primary);
    opacity: 1;
    font-weight: 700;
    background: rgba(144, 155, 76, 0.10);
    padding-left: 2.5rem;
}

.drawer-nav a.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    bottom: 14px;
    width: 4px;
    background: var(--primary);
    border-radius: 0 6px 6px 0;
}

.drawer-foot {
    padding: 1.4rem 1.2rem 2rem;
    border-top: 1px solid rgba(144, 155, 76, 0.15);
    margin-top: auto;
    flex-shrink: 0;
    background: rgba(216, 192, 173, 0.2);
    opacity: 0;
    transform: translateY(10px);
    transition:
        opacity 0.36s ease 0.38s,
        transform 0.36s ease 0.38s;
}

.drawer.open .drawer-foot {
    opacity: 1;
    transform: translateY(0);
}

.drawer-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.9rem 1.5rem;
    background: var(--primary);
    color: #fff;
    border-radius: 12px;
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    box-shadow: 0 6px 22px rgba(144, 155, 76, 0.3);
    transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
    margin-bottom: 1.2rem;
}

.drawer-cta:hover {
    background: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(72, 153, 38, 0.36);
}

.drawer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    margin-bottom: 1rem;
}

.drawer-contact p {
    font-size: 0.76rem;
    color: var(--dark);
    opacity: 0.55;
}

.drawer-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.82rem;
    font-style: italic;
    color: var(--primary);
    opacity: 0.75;
    line-height: 1.4;
    white-space: nowrap;
}

.hero {
    height: calc(100vh - 90px);
    min-height: calc(100vh - 90px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    overflow: hidden;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0.04;
    background-image:
        radial-gradient(circle, var(--dark) 1px, transparent 1px);
    background-size: 28px 28px;
}

.hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;

    padding-top: clamp(2rem, 4vh, 4rem);
    padding-bottom: clamp(2rem, 4vh, 4rem);
    padding-left: 8%;
    padding-right: 6%;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 1.8rem;
}

.hero-tag::before {
    content: '';
    display: block;
    width: 32px;
    height: 1px;
    background: var(--primary);
}

.hero-h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 5vw, 6rem);
    font-weight: 300;
    line-height: .92;
    color: var(--dark);
    letter-spacing: -.02em;
    margin-bottom: 1.2rem;
}

.hero-h1 em {
    font-style: italic;
    color: var(--primary);
}

.hero-sub {
    font-size: .95rem;
    line-height: 1.7;
    opacity: 0.65;
    max-width: 440px;
    margin-bottom: 1.2rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    padding: 0.9rem 2.2rem;
    border-radius: 100px;
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-decoration: none;
    text-transform: uppercase;
    transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
    box-shadow: 0 8px 30px rgba(144, 155, 76, 0.3);
}

.btn-primary:hover {
    background: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(72, 153, 38, 0.35);
}

.btn-ghost {
    color: var(--dark);
    font-size: 0.88rem;
    font-weight: 500;
    text-decoration: none;
    letter-spacing: 0.04em;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.7;
    transition: opacity 0.2s, gap 0.2s;
}

.btn-ghost:hover {
    opacity: 1;
    gap: 0.8rem;
}

.hero-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 1.2rem;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(144, 155, 76, 0.2);
    flex-wrap: wrap;
}

.hero-stat-num {
    font-family: 'Cardo', serif;
    font-size: 2.6rem;
    font-weight: 600;
    color: var(--primary);
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.75rem;
    opacity: 0.6;
    margin-top: 0.25rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.hero-right {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.hero-img-overlay {
    position: absolute;
    inset: 0;
    background: url('/images/owner/owner5.webp') center top/cover no-repeat;
    mix-blend-mode: multiply;
    opacity: 1;
}

.hero-badge {
    position: absolute;
    bottom: 2.5rem;
    left: 2.5rem;
    background: rgba(240, 238, 233, 0.92);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(144, 155, 76, 0.2);
    border-radius: 16px;
    padding: 1.2rem 1.6rem;
    box-shadow: 0 20px 60px rgba(46, 44, 47, 0.12);
}

.hero-badge-title {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.6;
    margin-bottom: 0.35rem;
}

.hero-badge-val {
    font-family: 'Cardo', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--accent);
    line-height: 1;
}

.hero-badge-sub {
    font-size: 0.75rem;
    opacity: 0.65;
    margin-top: 0.2rem;
}

.hero-badge-sub i {
    color: var(--primary);
    ;
    margin-left: 6px;
}

.marquee-wrap {
    background: var(--primary);
    overflow: hidden;
    width: 100%;
    padding: 0.85rem 0;
}

.marquee-track {
    width: max-content;
    will-change: transform;
    display: flex;
    gap: 4rem;
    animation: marquee 22s linear infinite;
    white-space: nowrap;
}

.marquee-item {
    color: #fff;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    opacity: 0.9;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.marquee-item::after {
    content: '✦';
    font-size: 0.6rem;
    opacity: 0.7;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

section {
    padding: 3rem 0;
}

.hero,
.about-hero,
.services-hero,
.blog-hero,
.contact-hero,
.testimonial-hero {
    padding: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 1rem;
}

.section-label::before {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--primary);
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.2rem, 4vw, 3.8rem);
    font-weight: 300;
    line-height: 1.1;
    color: var(--dark);
}

.section-title em {
    font-style: italic;
    color: var(--primary);
}

.services {
    background: var(--soft);
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 5%;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 1rem;
}

.section-label::before {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--primary);
    display: block;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.2rem, 4vw, 3.8rem);
    font-weight: 300;
    line-height: 1.1;
    color: var(--dark);
    margin-bottom: 3.5rem;
}

.section-title em {
    font-style: italic;
    color: var(--primary);
}

.services-grid {
    display: flex;
    flex-direction: column;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(144, 155, 76, 0.2);
    box-shadow: 0 30px 80px rgba(46, 44, 47, 0.08);
}

.svc-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-bottom: 1px solid rgba(144, 155, 76, 0.12);
    align-items: stretch;
}

.svc-row:last-child {
    border-bottom: none;
}

.svc-row.flip .svc-img-col {
    order: 2;
}

.svc-row.flip .svc-text-col {
    order: 1;
}

.svc-img-col {
    background: var(--dark);
    aspect-ratio: unset;
    min-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;

    position: relative;
    overflow: hidden;
}

.svc-img-col img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    opacity: 0.75;
    transition: opacity 0.5s ease, transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}

.svc-row:hover .svc-img-col img {
    opacity: 0.88;
    transform: scale(1.04);
}

.svc-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
            rgba(46, 44, 47, 0.55) 0%,
            rgba(46, 44, 47, 0.1) 60%,
            transparent 100%);
    pointer-events: none;
}

.svc-row.flip .svc-img-overlay {
    background: linear-gradient(to left,
            rgba(46, 44, 47, 0.55) 0%,
            rgba(46, 44, 47, 0.1) 60%,
            transparent 100%);
}

.svc-img-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(144, 155, 76, 0.88);
    color: var(--light);
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 100px;
    z-index: 2;
}

.svc-img-num {
    position: absolute;
    bottom: 16px;
    right: 20px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 5rem;
    font-style: italic;
    font-weight: 600;
    color: rgba(180, 187, 133, 0.12);
    line-height: 1;
    pointer-events: none;
    z-index: 2;
}

.svc-text-col {
    background: var(--light);
    padding: 1.8rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.svc-prog-num {
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 0.6rem;
}

.svc-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.7rem, 2.5vw, 2.4rem);
    font-weight: 400;
    color: var(--dark);
    line-height: 1.15;
    margin-bottom: 0.9rem;
}

.svc-title em {
    font-style: italic;
    color: var(--primary);
}

.svc-desc {
    font-size: 0.9rem;
    line-height: 1.85;
    color: rgba(46, 44, 47, 0.62);
    margin-bottom: 1.4rem;
    max-width: 420px;
}

.svc-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.6rem;
}

.svc-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.35rem 0.9rem;
    border-radius: 100px;
    background: rgba(144, 155, 76, 0.1);
    border: 1px solid rgba(144, 155, 76, 0.22);
    color: var(--dark);
}

.svc-pill-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--primary);
    flex-shrink: 0;
}

.svc-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary);
    text-decoration: none;
    transition: gap 0.25s ease, color 0.25s ease;
}

.svc-link:hover {
    gap: 0.85rem;
    color: var(--accent);
}

.svc-link i {
    font-size: 0.9rem;
    transition: transform 0.25s ease;
}

.svc-link:hover i {
    transform: translateX(3px);
}

.why {
    position: relative;
    overflow: hidden;
    background: linear-gradient(160deg, #141409 0%, #1e1c1f 45%, #131208 100%);
}

.why::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(ellipse, rgba(144, 155, 76, 0.13) 0%, transparent 68%);
    pointer-events: none;
    z-index: 0;
}

.why-grain {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    opacity: 0.55;
    z-index: 0;
}

.why-orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px solid rgba(144, 155, 76, 0.07);
    pointer-events: none;
    z-index: 0;
}

.why-orbit-1 {
    width: 680px;
    height: 680px;
    animation: orbitSpin 60s linear infinite;
}

.why-orbit-2 {
    width: 460px;
    height: 460px;
    border-style: dashed;
    border-color: rgba(144, 155, 76, 0.05);
    animation: orbitSpin 40s linear infinite reverse;
}

.why-orbit-3 {
    width: 260px;
    height: 260px;
    animation: orbitSpin 25s linear infinite;
}

@keyframes orbitSpin {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.why .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
    position: relative;
    z-index: 1;
}

.why-header {
    text-align: center;
    margin-bottom: 64px;
}

.why-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 16px;
}

.why-eyebrow::before,
.why-eyebrow::after {
    content: '';
    width: 28px;
    height: 1px;
    background: var(--primary);
    opacity: 0.7;
}

.why-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.4rem, 4.5vw, 4rem);
    font-weight: 300;
    color: #F0EEE9;
    line-height: 1.08;
    letter-spacing: -0.01em;
}

.why-title em {
    font-style: italic;
    color: var(--primary);
}

.why-subtitle {
    font-size: 0.85rem;
    color: rgba(240, 238, 233, 0.35);
    margin-top: 12px;
    letter-spacing: 0.04em;
    font-weight: 300;
}

.why-spoke-wrap {
    display: grid;
    grid-template-rows: auto auto;
    gap: 0;
}

.why-spoke-main {
    display: grid;
    grid-template-columns: 1fr 240px 1fr;
    align-items: center;
    gap: 40px;
}

.why-col {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.why-col-right {
    align-items: flex-end;
}

.why-pillar {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    cursor: default;
    position: relative;
    padding: 20px 22px;
    border: 1px solid rgba(144, 155, 76, 0.1);
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.02);
    transition:
        border-color 0.4s ease,
        background 0.4s ease,
        transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    max-width: 380px;
    width: 100%;
    overflow: hidden;
}

.why-col-right .why-pillar {
    flex-direction: row-reverse;
    text-align: right;
}

.why-pillar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(144, 155, 76, 0.07) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.why-pillar:hover {
    border-color: rgba(144, 155, 76, 0.38);
    background: rgba(144, 155, 76, 0.055);
    transform: translateY(-4px);
}

.why-col-right .why-pillar:hover {
    transform: translateY(-4px);
}

.why-pillar:hover::before {
    opacity: 1;
}

.why-pillar::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(144, 155, 76, 0.4), transparent);
    transition: width 0.45s cubic-bezier(0.23, 1, 0.32, 1);
    pointer-events: none;
}

.why-col .why-pillar::after {
    right: -22px;
}

.why-col-right .why-pillar::after {
    left: -22px;
    background: linear-gradient(270deg, rgba(144, 155, 76, 0.4), transparent);
}

.why-pillar:hover::after {
    width: 26px;
}

.why-pillar-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 50%;
    border: 1px solid rgba(144, 155, 76, 0.22);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: border-color 0.4s ease, transform 0.4s ease;
    flex-shrink: 0;
    z-index: 1;
}

.why-pillar-icon::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 50%;
    background: conic-gradient(from 0deg, rgba(144, 155, 76, 0.35), transparent, rgba(144, 155, 76, 0.12), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.why-pillar:hover .why-pillar-icon {
    border-color: rgba(144, 155, 76, 0.6);
    transform: scale(1.08);
}

.why-pillar:hover .why-pillar-icon::before {
    opacity: 1;
}

.why-pillar-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--primary);
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    position: relative;
    z-index: 1;
    transition: stroke 0.3s ease;
}

.why-pillar:hover .why-pillar-icon svg {
    stroke: var(--secondary);
}

.why-pillar-body {
    flex: 1;
    z-index: 1;
}

.why-pillar-num {
    font-size: 0.65rem;
    letter-spacing: 0.16em;
    color: rgba(144, 155, 76, 0.4);
    text-transform: uppercase;
    margin-bottom: 5px;
    font-weight: 400;
    display: block;
}

.why-pillar-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.22rem;
    font-weight: 500;
    color: #F0EEE9;
    line-height: 1.22;
    margin-bottom: 6px;
    letter-spacing: 0.01em;
    transition: color 0.3s ease;
}

.why-pillar:hover .why-pillar-title {
    color: var(--secondary);
}

.why-pillar-desc {
    font-size: 0.76rem;
    line-height: 1.85;
    color: rgba(240, 238, 233, 0.35);
    font-weight: 300;
    transition: color 0.3s ease;
}

.why-pillar:hover .why-pillar-desc {
    color: rgba(240, 238, 233, 0.58);
}

.why-pillar-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1.5px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    transform: scaleX(0);
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.why-pillar:hover .why-pillar-accent {
    transform: scaleX(1);
}

.why-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.why-center-ring-outer {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 1px solid rgba(144, 155, 76, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: ringPulse 4s ease-in-out infinite;
}

@keyframes ringPulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(144, 155, 76, 0.0);
    }

    50% {
        box-shadow: 0 0 0 12px rgba(144, 155, 76, 0.06);
    }
}

.why-center-ring-mid {
    width: 158px;
    height: 158px;
    border-radius: 50%;
    border: 1px solid rgba(144, 155, 76, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.why-center-ring-inner {
    width: 118px;
    height: 118px;
    border-radius: 50%;
    border: 1px solid rgba(144, 155, 76, 0.08);
    background: radial-gradient(ellipse at center, rgba(144, 155, 76, 0.1) 0%, rgba(144, 155, 76, 0.03) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 12px;
}

.why-center-ring-outer::after {
    content: '';
    position: absolute;
    top: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 8px rgba(144, 155, 76, 0.6);
}

.why-center-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 300;
    color: var(--primary);
    line-height: 1;
    letter-spacing: -0.02em;
}

.why-center-num sup {
    font-size: 1rem;
    vertical-align: super;
}

.why-center-label {
    font-size: 0.62rem;
    color: rgba(240, 238, 233, 0.38);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-top: 4px;
    line-height: 1.4;
    font-weight: 300;
}

.why-spoke-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(144, 155, 76, 0.3);
    border: 1px solid rgba(144, 155, 76, 0.5);
}

.why-spoke-dot-l {
    left: -24px;
    top: 50%;
    transform: translateY(-50%);
}

.why-spoke-dot-r {
    right: -24px;
    top: 50%;
    transform: translateY(-50%);
}

.why-spoke-dot-tl {
    top: -24px;
    left: 50%;
    transform: translateX(-50%);
}

.why-spoke-dot-bl {
    bottom: -24px;
    left: 50%;
    transform: translateX(-50%);
}

.why-spoke-bottom {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    position: relative;
}

.why-spoke-bottom::before {
    content: '';
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(144, 155, 76, 0.3), transparent);
}

.why-pillar-bottom {
    display: flex;
    align-items: center;
    gap: 22px;
    cursor: default;
    position: relative;
    padding: 22px 32px;
    border: 1px solid rgba(144, 155, 76, 0.1);
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.02);
    transition:
        border-color 0.4s ease,
        background 0.4s ease,
        transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    max-width: 440px;
    width: 100%;
    overflow: hidden;
}

.why-pillar-bottom::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(144, 155, 76, 0.07) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.why-pillar-bottom:hover {
    border-color: rgba(144, 155, 76, 0.38);
    background: rgba(144, 155, 76, 0.055);
    transform: translateY(-4px);
}

.why-pillar-bottom:hover::before {
    opacity: 1;
}

.why-pillar-bottom .why-pillar-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1.5px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    transform: scaleX(0);
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.why-pillar-bottom:hover .why-pillar-accent {
    transform: scaleX(1);
}

.why-pillar-bottom .why-pillar-icon {
    width: 54px;
    height: 54px;
    min-width: 54px;
    border-radius: 50%;
    border: 1px solid rgba(144, 155, 76, 0.22);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: border-color 0.4s, transform 0.4s;
    flex-shrink: 0;
}

.why-pillar-bottom .why-pillar-icon::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 50%;
    background: conic-gradient(from 0deg, rgba(144, 155, 76, 0.35), transparent, rgba(144, 155, 76, 0.12), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}

.why-pillar-bottom:hover .why-pillar-icon {
    border-color: rgba(144, 155, 76, 0.6);
    transform: scale(1.08);
}

.why-pillar-bottom:hover .why-pillar-icon::before {
    opacity: 1;
}

.why-pillar-bottom .why-pillar-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--primary);
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    position: relative;
    z-index: 1;
    transition: stroke 0.3s;
}

.why-pillar-bottom:hover .why-pillar-icon svg {
    stroke: var(--secondary);
}

.why-pillar-bottom .why-pillar-body {
    flex: 1;
}

.why-pillar-bottom .why-pillar-num {
    font-size: 0.65rem;
    letter-spacing: 0.16em;
    color: rgba(144, 155, 76, 0.4);
    text-transform: uppercase;
    margin-bottom: 4px;
    display: block;
}

.why-pillar-bottom .why-pillar-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.28rem;
    font-weight: 500;
    color: #F0EEE9;
    line-height: 1.2;
    margin-bottom: 5px;
    transition: color 0.3s;
}

.why-pillar-bottom:hover .why-pillar-title {
    color: var(--secondary);
}

.why-pillar-bottom .why-pillar-desc {
    font-size: 0.76rem;
    line-height: 1.85;
    color: rgba(240, 238, 233, 0.35);
    font-weight: 300;
    transition: color 0.3s;
}

.why-pillar-bottom:hover .why-pillar-desc {
    color: rgba(240, 238, 233, 0.58);
}

.fade-up-delay-1 {
    transition-delay: 0.1s;
}

.fade-up-delay-2 {
    transition-delay: 0.2s;
}

.fade-up-delay-3 {
    transition-delay: 0.3s;
}

.fade-up-delay-4 {
    transition-delay: 0.4s;
}

.fade-up-delay-5 {
    transition-delay: 0.5s;
}

.about {
    background: var(--light);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    margin-top: 0;
}

.about-img-wrap {
    position: relative;
}

.about-img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 40px 100px rgba(46, 44, 47, 0.12);
}

.about-img-bg {
    position: absolute;
    top: 2rem;
    left: 2rem;
    right: -2rem;
    bottom: -2rem;
    background: var(--secondary);
    border-radius: 20px;
    z-index: -1;
    opacity: 0.4;
}

.about-accent-card {
    position: absolute;
    top: 2rem;
    right: -2rem;
    background: var(--primary);
    color: #fff;
    border-radius: 16px;
    padding: 1.4rem 1.8rem;
    box-shadow: 0 20px 50px rgba(144, 155, 76, 0.35);
    text-align: center;
}

.about-accent-num {
    font-family: 'Cardo', serif;
    font-size: 2.8rem;
    font-weight: 600;
    line-height: 1;
}

.about-accent-txt {
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    opacity: 0.85;
    margin-top: 0.2rem;
    text-transform: uppercase;
}

.about-text {
    padding-left: 1rem;
}

.about-body {
    font-size: 1rem;
    line-height: 1.85;
    opacity: 0.7;
    margin: 1.8rem 0 2.5rem;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.about-feat {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.2rem 1.5rem;
    background: var(--soft);
    border-radius: 12px;
    border-left: 3px solid var(--primary);
}

.about-feat-icon {
    width: 3rem;
    height: 3rem;
    min-width: 3rem;
    border-radius: 50%;
    background: rgba(144, 155, 76, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1rem;
    transition: 0.3s ease;
}

.about-feat:hover .about-feat-icon {
    background: var(--primary);
    color: #fff;
}

.about-feat-title {
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--dark);
}

.about-feat-desc {
    font-size: 0.8rem;
    opacity: 0.65;
    margin-top: 0.2rem;
}

.process {
    background: var(--dark);
}

.process .section-label {
    color: var(--secondary);
}

.process .section-label::before {
    background: var(--secondary);
}

.process .section-title {
    color: var(--light);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 4rem;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 2.5rem;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), var(--secondary), var(--primary), transparent);
}

.process-step {
    padding: 0 1.5rem;
    text-align: center;
}

.ps-num {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.8rem;
    box-shadow: 0 0 0 6px rgba(144, 155, 76, 0.15), 0 10px 30px rgba(144, 155, 76, 0.3);
    position: relative;
    z-index: 1;
}

.ps-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    font-weight: 400;
    color: var(--light);
    margin-bottom: 0.75rem;
}

.ps-desc {
    font-size: 0.82rem;
    line-height: 1.7;
    color: rgba(240, 238, 233, 0.55);
}

.transforms {
    background: var(--soft);
}


.transforms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3.5rem;
}

.transform-card {
    background: var(--light);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(144, 155, 76, 0.15);
    box-shadow: 0 4px 30px rgba(46, 44, 47, 0.06);
    transition: transform 0.3s, box-shadow 0.3s;
}

.transform-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(46, 44, 47, 0.12);
}

.transform-img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    object-position: top;
    border-radius: 20px;
}

.transform-body {
    padding: 1.5rem 1.75rem;
}

.transform-result {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.55rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 0.3rem;
}

.transform-name {
    font-size: 0.8rem;
    opacity: 0.6;
    letter-spacing: 0.04em;
}

.testimonials {
    background: var(--light);
}

.testi-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1.5rem;
    margin-top: 3.5rem;
}

.testi-card {
    background: var(--soft);
    border-radius: 20px;
    padding: 2.2rem;
    border: 1px solid rgba(144, 155, 76, 0.15);
    position: relative;
    overflow: hidden;
}

.testi-card::before {
    content: '"';
    position: absolute;
    top: -0.5rem;
    right: 1.5rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 8rem;
    font-weight: 600;
    color: var(--primary);
    opacity: 0.08;
    line-height: 1;
}

.testi-quote {
    font-size: 0.92rem;
    line-height: 1.8;
    opacity: 0.75;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testi-avatar {
    width: 2.8rem;
    height: 2.8rem;
    border-radius: 50%;
    background: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark);
}

.testi-name {
    font-weight: 500;
    font-size: 0.88rem;
}

.testi-meta {
    font-size: 0.75rem;
    opacity: 0.55;
    margin-top: 0.15rem;
}

.testi-stars {
    color: var(--accent);
    font-size: 0.8rem;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}

.blog {
    background: var(--soft);
}

.blog-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 1.5rem;
    margin-top: 3.5rem;
}

.blog-right-col {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.blog-card {
    background: var(--light);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(144, 155, 76, 0.15);
    transition: transform 0.3s, box-shadow 0.3s;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(46, 44, 47, 0.1);
}

.blog-img {
    width: 100%;
    object-fit: cover;
    display: block;
}

.blog-card.featured .blog-img {
    aspect-ratio: 4/3;
}

.blog-card:not(.featured) .blog-img {
    aspect-ratio: 16/9;
}

.blog-body {
    padding: 1.5rem 1.75rem;
}

.blog-tag {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 0.6rem;
}

.blog-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--dark);
    line-height: 1.3;
    margin-bottom: 0.75rem;
}

.blog-card:not(.featured) .blog-title {
    font-size: 1.15rem;
}

.blog-excerpt {
    font-size: 0.84rem;
    line-height: 1.7;
    opacity: 0.65;
    margin-bottom: 1.2rem;
}

.blog-link {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    font-weight: 500;
    text-decoration: none;
}

.cta {
    background: var(--light);
    position: relative;
    overflow: hidden;
}

.cta-inner {
    background: var(--dark);
    border-radius: 30px;
    padding: 5rem 5%;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-inner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    right: -20%;
    bottom: -50%;
    background: radial-gradient(ellipse at 30% 50%, rgba(144, 155, 76, 0.2) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 50%, rgba(72, 153, 38, 0.15) 0%, transparent 60%);
}

.cta-label {
    color: var(--secondary);
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 1rem;
    position: relative;
}

.cta-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 300;
    color: var(--light);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    position: relative;
}

.cta-title em {
    font-style: italic;
    color: var(--secondary);
}

.cta-sub {
    font-size: 1rem;
    color: rgba(240, 238, 233, 0.6);
    max-width: 500px;
    margin: 0 auto 2.5rem;
    position: relative;
}

.cta-btn {
    background: var(--primary);
    color: #fff;
    padding: 1rem 2.8rem;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 10px 40px rgba(144, 155, 76, 0.4);
    transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
    position: relative;
}

.cta-btn:hover {
    background: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 16px 50px rgba(72, 153, 38, 0.45);
}

.contact {
    background: var(--soft);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 5rem;
    align-items: center;
}

.contact-info h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--dark);
    margin-bottom: 2rem;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-bottom: 2.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.2rem 1.5rem;
    background: var(--light);
    border-radius: 14px;
    border: 1px solid rgba(144, 155, 76, 0.15);
}

.contact-icon {
    width: 3rem;
    height: 3rem;
    min-width: 3rem;
    border-radius: 50%;
    background: rgba(144, 155, 76, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1rem;
    transition: 0.3s ease;
}

.contact-item:hover .contact-icon {
    background: var(--primary);
    color: #fff;
}

.contact-wa-btn {
    display: inline-flex !important;
    align-items: center;
    gap: 0.7rem;
}

.contact-text {
    font-size: 0.88rem;
    color: var(--dark);
    opacity: 0.75;
}

.contact-text strong {
    opacity: 1;
    display: block;
    margin-bottom: 0.15rem;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.contact-map {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(46, 44, 47, 0.1);
    border: 2px solid rgba(144, 155, 76, 0.15);
}

footer {
    background: var(--dark);
    color: rgba(240, 238, 233, 0.5);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    color: var(--light);
    margin-bottom: 1rem;
}

.footer-brand-logo span {
    color: var(--secondary);
}

.footer-desc {
    font-size: 0.84rem;
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.footer-socials {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.2rem;
}

.footer-social-icon {
    width: 2.6rem;
    height: 2.6rem;
    border-radius: 50%;
    background: rgba(240, 238, 233, 0.08);
    border: 1px solid rgba(240, 238, 233, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(240, 238, 233, 0.7);
    font-size: 0.9rem;
    text-decoration: none;
    transition: 0.3s ease;
}

.footer-social-icon:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-3px);
}

.footer-col-title {
    color: var(--light);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
    margin-bottom: 1.2rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.footer-links a {
    text-decoration: none;
    color: rgba(240, 238, 233, 0.5);
    font-size: 0.85rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--secondary);
}

.footer-bottom {
    border-top: 1px solid rgba(240, 238, 233, 0.08);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.78rem;
}

.rw-fab-wrap {
    position: fixed;
    bottom: 1.8rem;
    right: 1.8rem;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
    z-index: 999999;
}

.rw-fab-options {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 9px;
    transition: opacity 0.32s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: bottom right;
}

.rw-fab-options.rw-hidden {
    opacity: 0;
    transform: scale(0.75) translateY(14px);
    pointer-events: none;
}

.rw-fab-option {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    animation: rwSlideIn 0.3s ease both;
}

.rw-fab-option:nth-child(1) {
    animation-delay: 0.04s;
}

.rw-fab-option:nth-child(2) {
    animation-delay: 0.10s;
}

@keyframes rwSlideIn {
    from {
        opacity: 0;
        transform: translateX(16px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.rw-fab-label {
    background: var(--light);
    color: var(--dark);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    padding: 6px 14px;
    border-radius: 100px;
    white-space: nowrap;
    border: 1px solid rgba(144, 155, 76, 0.22);
    box-shadow: 0 2px 14px rgba(46, 44, 47, 0.1);
    transition: background 0.2s, box-shadow 0.2s;
}

.rw-fab-option:hover .rw-fab-label {
    background: var(--soft);
    box-shadow: 0 4px 20px rgba(46, 44, 47, 0.14);
}

.rw-fab-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 18px rgba(46, 44, 47, 0.2);
    text-decoration: none;
}

.rw-fab-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 26px rgba(46, 44, 47, 0.28);
}

.rw-fab-icon.rw-wa {
    background: #25D366;
}

.rw-fab-icon.rw-call {
    background: var(--dark);
}

.rw-fab-main-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rw-fab-pulse {
    position: absolute;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 2px solid rgba(144, 155, 76, 0.45);
    animation: rwPulse 2.2s ease-out infinite;
    pointer-events: none;
}

.rw-fab-pulse.rw-p2 {
    animation-delay: 0.8s;
}

@keyframes rwPulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(1.75);
        opacity: 0;
    }
}

.rw-fab-main {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--primary);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 28px rgba(144, 155, 76, 0.45),
        0 2px 8px rgba(46, 44, 47, 0.12);
    transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1),
        background 0.25s ease,
        box-shadow 0.25s ease;
    position: relative;
    z-index: 2;
}

.rw-fab-main:hover {
    transform: scale(1.08);
    background: var(--accent);
    box-shadow: 0 10px 35px rgba(72, 153, 38, 0.45),
        0 4px 10px rgba(46, 44, 47, 0.14);
}

.rw-fab-main .rw-ic-msg {
    transition: opacity 0.22s, transform 0.22s;
}

.rw-fab-main .rw-ic-close {
    position: absolute;
    opacity: 0;
    transform: rotate(-90deg);
    transition: opacity 0.22s, transform 0.22s;
}

.rw-fab-main.rw-open .rw-ic-msg {
    opacity: 0;
    transform: rotate(90deg);
}

.rw-fab-main.rw-open .rw-ic-close {
    opacity: 1;
    transform: rotate(0);
}

@media (max-width: 640px) {
    .rw-fab-wrap {
        right: 1rem;
        bottom: 1.2rem;
    }

    .rw-fab-main {
        width: 50px;
        height: 50px;
    }

    .rw-fab-pulse {
        width: 50px;
        height: 50px;
    }

    .rw-fab-icon {
        width: 42px;
        height: 42px;
    }

    .rw-fab-label {
        font-size: 0.7rem;
        padding: 5px 12px;
    }
}


.fade-up {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1100px) {
    .why-spoke-main {
        grid-template-columns: 1fr 200px 1fr;
        gap: 28px;
    }

    .why-center-ring-outer {
        width: 170px;
        height: 170px;
    }

    .why-center-ring-mid {
        width: 134px;
        height: 134px;
    }

    .why-center-ring-inner {
        width: 100px;
        height: 100px;
    }

    .why-center-num {
        font-size: 1.9rem;
    }

    .why-pillar {
        padding: 18px 18px;
    }

    .why-pillar-bottom {
        max-width: 400px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .about-grid {
        gap: 4rem;
    }
}

@media (max-width: 1024px) {
    #navbar .hamburger {
        display: flex;
    }

    #navbar .desktop-cta {
        display: none;
    }

    #navbar .nav-links {
        display: none;
    }

    #navbar .mobile-cta {
        display: block;
    }

    .drawer-panel {
        width: 45%;
    }

    .hero {
        height: calc(100svh - 90px);
        min-height: calc(100svh - 90px);
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: auto 1fr;
        overflow: hidden;
    }

    .hero-left {
        padding: 1.2rem 6% 0.8rem;
        justify-content: center;
        min-height: 0;
        text-align: center;
        align-items: center;
    }

    .hero-tag {
        margin-bottom: 0.5rem;
        font-size: 0.7rem;
    }

    .hero-h1 {
        font-size: clamp(1.8rem, 5vw, 2.8rem);
        margin-bottom: 0.5rem;
    }

    .hero-sub {
        font-size: 0.82rem;
        margin-bottom: 0.7rem;
        line-height: 1.55;
    }

    .hero-actions {
        justify-content: center;
        gap: 0.75rem;
        margin-bottom: 0;
    }

    .btn-primary {
        padding: 0.7rem 1.6rem;
        font-size: 0.8rem;
    }

    .btn-ghost {
        font-size: 0.8rem;
    }

    .hero-stats {
        margin-top: 0.7rem;
        padding-top: 0.7rem;
        gap: 1.5rem;
        border-top: 1px solid rgba(144, 155, 76, 0.2);
        justify-content: center;
    }

    .hero-stat-num {
        font-size: 1.8rem;
    }

    .hero-stat-label {
        font-size: 0.62rem;
    }

    .hero-right {
        display: block;
        height: 100%;
        min-height: 0;
        overflow: hidden;
    }

    .hero-img-overlay {
        height: 100%;
        background-size: cover;
        background-position: center top;
    }

    .hero-badge {
        bottom: 1rem;
        left: 1rem;
        padding: 0.85rem 1.1rem;
    }

    .hero-badge-val {
        font-size: 1.4rem;
    }

    .hero-badge-title {
        font-size: 0.62rem;
    }

    .hero-badge-sub {
        font-size: 0.68rem;
    }

    .svc-text-col {
        padding: 2rem 2.2rem;
    }

    .svc-img-col {
        min-height: 180px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-img-wrap {
        max-width: 520px;
        margin: 0 auto;
    }

    .about-accent-card {
        right: 1rem;
    }

    .about-text {
        padding-left: 0;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .transforms-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testi-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }

    .process-steps::before {
        display: none;
    }

    .process-step {
        padding: 0;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-right-col {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        text-align: center;
    }

    .footer-socials {
        justify-content: center;
    }

    .footer-links {
        align-items: center;
    }
}

@media (max-width: 900px) {
    .why {
        padding: 70px 0 80px;
    }

    .why-spoke-main {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto auto;
        gap: 14px;
    }

    .why-center {
        grid-column: 1 / -1;
        grid-row: 1;
        margin-bottom: 8px;
    }

    .why-center-ring-outer {
        width: 150px;
        height: 150px;
    }

    .why-center-ring-mid {
        width: 118px;
        height: 118px;
    }

    .why-center-ring-inner {
        width: 88px;
        height: 88px;
    }

    .why-center-num {
        font-size: 1.7rem;
    }

    .why-col {
        grid-column: 1;
        grid-row: 2 / 4;
        gap: 14px;
    }

    .why-col-right {
        grid-column: 2;
        grid-row: 2 / 4;
        align-items: flex-start;
    }

    .why-col-right .why-pillar {
        flex-direction: row;
        text-align: left;
    }

    .why-col-right .why-pillar::after {
        right: -14px;
        left: auto;
        background: linear-gradient(90deg, rgba(144, 155, 76, 0.4), transparent);
    }

    .why-pillar {
        max-width: 100%;
    }

    .why-pillar-bottom {
        max-width: 100%;
    }

    .why-spoke-dot {
        display: none;
    }

    .why-spoke-bottom::before {
        height: 28px;
        top: -28px;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 90px;
    }

    section {
        padding: 4rem 0;
    }

    .drawer-panel {
        width: 58%;
    }

    .hero {
        height: calc(100svh - 90px);
        min-height: calc(100svh - 90px);
        grid-template-rows: auto 1fr;
    }

    .hero-left {
        padding: 1rem 5% 0.6rem;
    }

    .hero-tag {
        margin-bottom: 0.4rem;
        font-size: 0.65rem;
    }

    .hero-h1 {
        font-size: clamp(1.6rem, 6.5vw, 2.4rem);
        margin-bottom: 0.4rem;
    }

    .hero-sub {
        font-size: 0.78rem;
        margin-bottom: 0.6rem;
        line-height: 1.5;
    }

    .hero-actions {
        gap: 0.6rem;
    }

    .btn-primary {
        padding: 0.65rem 1.4rem;
        font-size: 0.78rem;
    }

    .hero-stats {
        border: none !important;
        border-top: none !important;
        padding-top: 0 !important;

        display: flex;
        flex-wrap: wrap !important;
        justify-content: center;
        gap: 1rem;
        width: 100%;
        overflow: hidden;
    }

    .hero-stats>div {
        flex: 0 0 45%;
        text-align: center;
    }

    .hero-stat-num {
        font-size: 1.6rem;
    }

    .hero-stat-label {
        font-size: 0.6rem;
    }

    .hero-right {
        height: 100%;
        min-height: 0;
    }

    .hero-badge {
        bottom: 0.8rem;
        left: 0.8rem;
        padding: 0.7rem 0.9rem;
        border-radius: 12px;
    }

    .hero-badge-val {
        font-size: 1.2rem;
    }

    .services {
        padding: 4.5rem 0;
    }

    .section-title {
        margin-bottom: 2.5rem;
    }

    .svc-row,
    .svc-row.flip,
    .svc-cta-row {
        grid-template-columns: 1fr;
    }

    .svc-row.flip .svc-img-col {
        order: -1;
    }

    .svc-row.flip .svc-text-col {
        order: 1;
    }

    .svc-img-col {
        min-height: 160px;
    }

    .svc-img-overlay {
        background: linear-gradient(to bottom,
                transparent 40%,
                rgba(46, 44, 47, 0.5) 100%) !important;
    }

    .svc-text-col {
        padding: 1.5rem 1.6rem;
    }

    .svc-desc {
        max-width: 100%;
    }

    .svc-cta-content {
        padding: 2rem 1.8rem;
    }

    .svc-cta-img {
        min-height: 140px;
    }

    .services-grid {
        border-radius: 16px;
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .testi-grid {
        grid-template-columns: 1fr;
    }

    .blog-right-col {
        grid-template-columns: 1fr;
    }

    .contact-map iframe {
        height: 300px;
    }

    .cta-inner {
        padding: 3.5rem 5%;
        border-radius: 20px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        text-align: center;
    }

    .footer-brand {
        grid-column: span 2;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-socials {
        justify-content: center;
    }

    .footer-links {
        align-items: center;
    }

    .footer-bottom {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        gap: 0.75rem;
    }

    .about-img-bg {
        right: 0;
    }

    .about-accent-card {
        right: 0;
    }
}

@media (max-width: 640px) {
    body {
        padding-top: 90px;
    }

    section {
        padding: 3.5rem 0;
    }

    .drawer-panel {
        width: 78%;
    }

    .hero {
        height: calc(100svh - 90px);
        min-height: calc(100svh - 90px);
        grid-template-rows: auto 1fr;
    }

    .hero-left {
        padding: 0.8rem 5% 0.5rem;
    }

    .hero-tag {
        margin-bottom: 0.35rem;
        font-size: 0.62rem;
    }

    .hero-h1 br {
        display: none;
    }

    .hero-h1 {
        font-size: clamp(1.5rem, 7vw, 2.2rem);
        margin-bottom: 0.35rem;
        line-height: 1.05;
    }

    .hero-sub {
        font-size: 0.75rem;
        margin-bottom: 0.55rem;
        line-height: 1.5;
    }

    .hero-actions {
        gap: 0.6rem;
    }

    .btn-primary {
        padding: 0.65rem 1.4rem;
        font-size: 0.78rem;
    }

    .hero-stats {
        margin-top: 0.5rem;
        padding-top: 0.5rem;
        gap: 1rem;
    }

    .hero-stat-num {
        font-size: 1.5rem;
    }

    .hero-stat-label {
        font-size: 0.58rem;
    }

    .hero-right {
        height: 100%;
        min-height: 0;
    }

    .hero-badge {
        bottom: 0.7rem;
        left: 0.7rem;
        padding: 0.6rem 0.8rem;
        border-radius: 10px;
    }

    .hero-badge-val {
        font-size: 1.1rem;
    }

    .hero-badge-title {
        font-size: 0.55rem;
    }

    .hero-badge-sub {
        font-size: 0.58rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        margin-top: 2.5rem;
    }

    .service-card {
        min-height: 300px;
    }

    .why {
        padding: 60px 0 70px;
    }

    .why-header {
        margin-bottom: 48px;
    }

    .why-spoke-main {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .why-center {
        grid-column: 1;
        grid-row: 1;
    }

    .why-col {
        grid-column: 1;
        grid-row: 2;
    }

    .why-col-right {
        grid-column: 1;
        grid-row: 3;
        align-items: flex-start;
    }

    .why-col-right .why-pillar {
        flex-direction: row;
        text-align: left;
    }

    .why-pillar {
        max-width: 100%;
        padding: 16px 16px;
    }

    .why-pillar-bottom {
        padding: 18px 20px;
    }

    .transforms-grid {
        grid-template-columns: 1fr;
    }

    .testi-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .ps-num {
        width: 4rem;
        height: 4rem;
        font-size: 1.5rem;
        margin-bottom: 1.2rem;
    }

    .about-img {
        aspect-ratio: 3/4;
    }

    .about-img-bg {
        right: 0;
        left: 1rem;
        top: 1rem;
    }

    .about-accent-card {
        right: 0;
        top: 1rem;
        padding: 1rem 1.2rem;
    }

    .about-accent-num {
        font-size: 2rem;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-right-col {
        grid-template-columns: 1fr;
    }

    .cta-inner {
        padding: 3rem 5%;
        border-radius: 16px;
    }

    .cta-sub {
        font-size: 0.9rem;
    }

    .contact-grid {
        gap: 2rem;
    }

    .contact-items {
        gap: 0.9rem;
    }

    .contact-map iframe {
        height: 260px;
    }

    .wa-btn {
        right: 1rem;
        bottom: 1.2rem;
        width: 3.6rem;
        height: 3.6rem;
    }

    .wa-btn i {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {

    .drawer-panel {
        width: 65%;
    }

    .drawer-nav a {
        font-size: 0.95rem;
        padding: 1rem 1.6rem;
    }

    .hero {
        height: calc(100svh - 90px);
        min-height: calc(100svh - 90px);
        grid-template-rows: auto 1fr;
    }

    .hero-left {
        padding: 0.7rem 5% 0.4rem;
    }

    .hero-h1 {
        font-size: clamp(1.4rem, 7.5vw, 2rem);
        margin-bottom: 0.3rem;
    }

    .hero-sub {
        font-size: 0.72rem;
        margin-bottom: 0.5rem;
    }

    .hero-stats {
        gap: 0.9rem;
    }

    .hero-stat-num {
        font-size: 1.4rem;
    }

    .hero-right {
        height: 100% !important;
        min-height: 0 !important;
    }

    .hero-badge {
        left: 0.75rem;
        bottom: 0.75rem;
        padding: 0.6rem 0.85rem;
        border-radius: 8px;
    }

    .hero-badge-title {
        font-size: 0.55rem;
        margin-bottom: 0.15rem;
    }

    .hero-badge-val {
        font-size: 1.05rem;
    }

    .hero-badge-sub {
        font-size: 0.58rem;
        margin-top: 0.1rem;
    }

    .hero-badge-sub i {
        font-size: 0.55rem;
    }

    .svc-text-col {
        padding: 1.8rem 1.4rem;
    }

    .svc-pill {
        font-size: 0.7rem;
    }

    .svc-cta-content {
        padding: 2rem 1.4rem;
    }

    .why-title {
        font-size: 2.2rem;
    }

    .why-center-ring-outer {
        width: 130px;
        height: 130px;
    }

    .why-center-ring-mid {
        width: 102px;
        height: 102px;
    }

    .why-center-ring-inner {
        width: 76px;
        height: 76px;
    }

    .why-center-num {
        font-size: 1.45rem;
    }

    .why-center-label {
        font-size: 0.55rem;
    }

    .why-pillar-title {
        font-size: 1.1rem;
    }

    .why-pillar-desc {
        font-size: 0.73rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-brand {
        grid-column: span 1;
    }
}

@media (max-width: 400px) {
    .hero {
        height: calc(100svh - 90px);
        min-height: calc(100svh - 90px);
        grid-template-rows: auto 1fr;
    }

    .hero-h1 {
        font-size: clamp(1.3rem, 8vw, 1.8rem);
    }

    .hero-right {
        height: 100% !important;
        min-height: 0 !important;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .why-card:last-child {
        grid-column: span 1;
        max-width: 100%;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        border: none !important;
        border-top: none !important;
        padding-top: 0 !important;

        display: flex;
        flex-wrap: wrap !important;
        justify-content: center;
        gap: 1rem;
        width: 100%;
        overflow: hidden;
    }

    .hero-stats>div {
        flex: 0 0 45%;
        text-align: center;
    }

    .hero-stat-num {
        font-size: clamp(1.2rem, 3vw, 2rem);
    }

    .hero-stat-label {
        font-size: clamp(0.65rem, 1.5vw, 0.82rem);
        line-height: 1.4;
    }
}