:root {
    --bg: #080d19;
    --ink: #11151c;
    --paper: #f4f1ea;
    --white: #fff;
    --muted: #9da7b5;
    --pink: #d5005c;
    --lime: #c4ff4d;
    --line: rgba(255, 255, 255, .14);
    --radius: 28px;
    --pad: clamp(24px, 5vw, 80px)
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: auto
}

.brand-logo-full{
    width:180px;
    height:auto;
    display:block;
    object-fit:contain;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--white);
    font-family: Manrope, Arial, sans-serif;
    overflow-x: hidden
}

a {
    color: inherit;
    text-decoration: none
}

button {
    font: inherit
}

.section-pad {
    padding: 120px var(--pad)
}

.eyebrow {
    font-size: 11px;
    letter-spacing: .22em;
    font-weight: 800;
    margin: 0 0 24px;
    color: var(--pink)
}

.cursor-dot,
.cursor-ring {
    position: fixed;
    left: 0;
    top: 0;
    pointer-events: none;
    z-index: 9999;
    border-radius: 50%;
    transform: translate(-50%, -50%)
}

.cursor-dot {
    width: 6px;
    height: 6px;
    background: #fff
}

.cursor-ring {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, .55);
    transition: width .2s, height .2s, border-color .2s
}

.site-header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 82px;
    padding: 0 5%;
    
    display: flex;
    align-items: center;
    justify-content: space-between;

    background: #ffffff;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 4px 25px rgba(0,0,0,0.05);

    z-index: 9999;
}

.site-header.scrolled {
    background: rgba(6, 11, 20, .72);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--line);
    padding-top: 14px;
    padding-bottom: 14px
}

.brand {
    display: flex;
    gap: 12px;
    align-items: center
}

.brand-mark {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, .45);
    border-radius: 50%;
    position: relative;
    display: block;
    overflow: hidden
}

.brand-mark span {
    position: absolute;
    height: 4px;
    background: var(--pink);
    right: 6px;
    border-radius: 8px
}

.brand-mark span:nth-child(1) {
    width: 24px;
    top: 11px
}

.brand-mark span:nth-child(2) {
    width: 30px;
    top: 19px
}

.brand-mark span:nth-child(3) {
    width: 18px;
    top: 27px
}

.brand-copy {
    display: grid;
    line-height: .9
}

.brand-copy strong {
    font-size: 15px;
    letter-spacing: .12em
}

.brand-copy small {
    font-size: 9px;
    letter-spacing: .38em;
    margin-top: 5px;
    color: #bac2cf
}

.main-nav{
    display: flex;
    align-items: center;
    gap: 35px;
}

.main-nav a{
    color: #111827;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all .3s ease;
}

.main-nav a:hover{
    color: #0b7a45;
}

.nav-cta{
    display: flex;
    align-items: center;
    gap: 10px;

    background: #c62e7a;
    color: #ffffff;

    padding: 12px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;

    transition: all .3s ease;
}

.nav-cta:hover{
    background: #095f37;
    transform: translateY(-2px);
}

.menu-btn {
    display: none;
    background: none;
    border: 0;
    width: 44px
}

.menu-btn span {
    display: block;
    height: 1px;
    background: #fff;
    margin: 8px 0
}

.hero {
    height: 100svh;
    min-height: 720px;
    position: relative;
    overflow: hidden;
    background: #08111c
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.03)
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(2, 7, 13, .86) 0%, rgba(4, 8, 16, .56) 48%, rgba(5, 10, 14, .2) 100%), linear-gradient(0deg, rgba(4, 9, 16, .78), transparent 45%)
}

#heroParticles {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: .35
}

.hero-orbit {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 50%;
    width: 720px;
    height: 720px;
    right: -190px;
    top: -210px
}

.orbit-b {
    width: 520px;
    height: 520px;
    right: -40px;
    top: -80px;
    border-color: rgba(213, 0, 92, .19);
    animation: spin 18s linear infinite
}

@keyframes spin {
    to {
        transform: rotate(360deg)
    }
}

.hero-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 115px var(--pad) 70px
}

.hero-kicker {
    font-size: 12px;
    letter-spacing: .15em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #d8dee8
}

.hero-kicker span {
    width: 40px;
    height: 1px;
    background: var(--pink)
}

.hero-title {
    font-size: clamp(64px, 8.6vw, 150px);
    line-height: .83;
    letter-spacing: -.065em;
    margin: 42px 0 58px;
    max-width: 1350px;
    font-weight: 800
}

.hero-title .line {
    display: block;
    overflow: hidden;
    padding-bottom: .09em
}

.hero-title em {
    font-family: "DM Serif Display", serif;
    font-weight: 400
}

.accent-line {
    color: var(--pink);
    padding-left: 11vw
}

.hero-bottom {
    display: flex;
    align-items: end;
    justify-content: space-between;
    max-width: 980px
}

.hero-bottom p {
    max-width: 540px;
    font-size: 17px;
    line-height: 1.65;
    color: #c3cad4;
    margin: 0
}

.circle-link {
    width: 108px;
    height: 108px;
    border: 1px solid rgba(255, 255, 255, .34);
    border-radius: 50%;
    display: grid;
    place-content: center;
    text-align: center;
    font-size: 12px;
    position: relative;
    overflow: hidden
}

.circle-link:before {
    content: "";
    position: absolute;
    inset: 100% 0 0;
    background: var(--pink);
    transition: .35s
}

.circle-link:hover:before {
    inset: 0
}

.circle-link span,
.circle-link i {
    position: relative;
    z-index: 1
}

.circle-link i {
    font-style: normal;
    font-size: 20px
}

.hero-side-label {
    position: absolute;
    right: 24px;
    top: 50%;
    z-index: 3;
    writing-mode: vertical-rl;
    font-size: 9px;
    letter-spacing: .34em;
    color: #aeb7c4
}

.hero-scroll {
    position: absolute;
    bottom: 26px;
    right: var(--pad);
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 9px;
    letter-spacing: .2em;
    color: #aab3bf
}

.hero-scroll i {
    display: block;
    width: 44px;
    height: 1px;
    background: #fff;
    animation: pulse 1.6s infinite
}

@keyframes pulse {
    50% {
        opacity: .2;
        transform: scaleX(.5)
    }
}

.intro {
    background: var(--paper);
    color: var(--ink);
    position: relative
}

.section-number {
    position: absolute;
    right: var(--pad);
    top: 80px;
    font-size: 12px;
    color: #9299a2
}

.intro-grid {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 8vw
}

.sticky-label {
    display: flex;
    gap: 18px;
    align-items: flex-start
}

.vertical-line {
    height: 120px;
    width: 1px;
    background: #c9c4bb
}

.intro-copy h2,
.business-head h2,
.future h2 {
    font-size: clamp(46px, 6.6vw, 104px);
    line-height: .96;
    letter-spacing: -.05em;
    margin: 0
}

.intro-copy {
    max-width: 1180px
}

.intro-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6vw;
    margin: 65px 0 90px;
    padding-left: 22vw
}

.intro-body p {
    font-size: 18px;
    line-height: 1.75;
    color: #62666d
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: #d9d5ce;
    border: 1px solid #d9d5ce
}

.stat-card {
    background: var(--paper);
    min-height: 260px;
    padding: 30px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end
}

.stat-index {
    position: absolute;
    top: 24px;
    right: 24px;
    color: #9d9c98
}

.stat-card strong {
    font-size: clamp(48px, 5vw, 78px);
    line-height: 1;
    color: var(--pink);
    letter-spacing: -.06em
}

.stat-card p {
    font-size: 13px;
    color: #696b70;
    max-width: 170px
}

.tilt-card {
    transform-style: preserve-3d;
    will-change: transform
}

.business-section {
    background: #090e17
}

.business-head {
    display: grid;
    grid-template-columns: 1.4fr .6fr;
    align-items: end;
    gap: 8vw
}

.business-head h2 i {
    font-family: "DM Serif Display", serif;
    font-weight: 400;
    color: var(--pink)
}

.business-head>p {
    color: #929cab;
    line-height: 1.8;
    max-width: 480px
}

.business-list {
    border-top: 1px solid var(--line)
}

.business-row {
    position: relative;
    display: grid;
    grid-template-columns: 70px 150px 1.2fr 1fr 72px;
    align-items: center;
    gap: 30px;
    padding: 42px var(--pad);
    min-height: 180px;
    border-bottom: 1px solid var(--line);
    overflow: hidden;
    isolation: isolate
}

.business-bg {
    position: absolute;
    inset: 100% 0 0;
    background: linear-gradient(90deg, #171f2d, #0d2730);
    z-index: -1;
    transition: .5s cubic-bezier(.22, 1, .36, 1)
}

.business-row:hover .business-bg {
    inset: 0
}

.business-number {
    font-size: 12px;
    color: #677080
}

.business-logo-wrap {
    height: 70px;
    display: flex;
    align-items: center
}

.business-logo-wrap img {
    max-width: 120px;
    max-height: 68px;
    filter: brightness(0) invert(1);
    opacity: .75;
    transition: .3s
}

.business-row:hover img {
    filter: none;
    opacity: 1;
    transform: scale(1.04)
}

.business-title span {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .18em;
    color: #8792a0
}

.business-title h3 {
    font-size: clamp(28px, 3vw, 48px);
    letter-spacing: -.04em;
    margin: 6px 0 0
}

.business-meta strong {
    font-size: 12px;
    color: #d5dbe4
}

.business-meta p {
    font-size: 12px;
    line-height: 1.6;
    color: #7f8997;
    max-width: 450px
}

.business-arrow {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .2);
    background: transparent;
    color: #fff;
    font-size: 18px;
    transition: .3s
}

.business-row:hover .business-arrow {
    background: var(--pink);
    border-color: var(--pink);
    transform: rotate(45deg)
}

.manifesto {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: #101722
}

.manifesto-sticky {
    min-height: 180vh
}

.manifesto-media {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
    background: radial-gradient(circle at 70% 30%, #294c51 0, #0b1823 36%, #060b12 70%)
}

.media-grid {
    position: absolute;
    inset: 42% -20% -20% -25%;
    transform: perspective(700px) rotateX(64deg) rotateZ(-9deg);
    background-image: linear-gradient(rgba(105, 198, 209, .18) 1px, transparent 1px), linear-gradient(90deg, rgba(105, 198, 209, .18) 1px, transparent 1px);
    background-size: 48px 48px
}

.media-grid:after {
    content: "";
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(90deg, rgba(33, 89, 119, .75) 0 80px, rgba(10, 27, 39, .2) 80px 90px);
    opacity: .6
}

.media-sun {
    width: 210px;
    height: 210px;
    border-radius: 50%;
    background: #ffb35c;
    box-shadow: 0 0 130px rgba(255, 167, 73, .4);
    position: absolute;
    right: 14%;
    top: 18%
}

.media-copy {
    position: absolute;
    left: 8%;
    bottom: 8%;
    display: grid;
    gap: 10px
}

.media-copy span {
    font-size: 10px;
    letter-spacing: .25em;
    color: #a9b6c3
}

.media-copy strong {
    font-size: clamp(26px, 3vw, 50px);
    max-width: 520px
}

.manifesto-content {
    padding: 10vh var(--pad)
}

.manifesto-content article {
    min-height: 58vh;
    padding: 12vh 0;
    border-bottom: 1px solid var(--line)
}

.manifesto-content article span {
    font-size: 10px;
    letter-spacing: .2em;
    color: var(--pink)
}

.manifesto-content h3 {
    font-size: clamp(34px, 4vw, 64px);
    line-height: 1.04;
    letter-spacing: -.05em;
    margin: 28px 0
}

.manifesto-content p {
    color: #909aa8;
    line-height: 1.8;
    max-width: 540px
}

.future {
    background: #eef0eb;
    color: #0c1118;
    position: relative;
    overflow: hidden
}

.future-bg-word {
    position: absolute;
    top: -10px;
    right: -30px;
    font-size: 24vw;
    line-height: .8;
    font-weight: 800;
    letter-spacing: -.08em;
    color: rgba(10, 20, 25, .035);
    pointer-events: none
}

.future-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.35fr .65fr;
    gap: 8vw;
    align-items: end
}

.future-copy p {
    font-size: 17px;
    line-height: 1.8;
    color: #626970
}

.text-link {
    display: inline-flex;
    gap: 24px;
    border-bottom: 1px solid #222;
    padding: 0 0 8px;
    margin-top: 25px;
    font-size: 13px
}

.solar-feature {
    margin-top: 90px;
    border-radius: 36px;
    overflow: hidden;
    background: #07131b;
    color: #fff;
    display: grid;
    grid-template-columns: 1.25fr .75fr;
    min-height: 560px
}

.solar-visual {
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 70% 18%, #ffc069 0 7%, rgba(255, 177, 83, .26) 10%, transparent 28%), linear-gradient(#173448, #071018)
}

.solar-panel {
    position: absolute;
    width: 80%;
    height: 55%;
    background: repeating-linear-gradient(90deg, rgba(54, 133, 163, .8) 0 78px, #8bd0dd 79px 81px), repeating-linear-gradient(0deg, transparent 0 58px, rgba(143, 217, 227, .55) 59px 61px);
    border: 7px solid #728793;
    transform: perspective(900px) rotateX(63deg) rotateZ(-13deg);
    box-shadow: 0 30px 80px rgba(0, 0, 0, .4)
}

.p1 {
    left: -18%;
    bottom: 5%
}

.p2 {
    right: -27%;
    bottom: 18%;
    transform: perspective(900px) rotateX(63deg) rotateZ(8deg)
}

.solar-flare {
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    right: 8%;
    top: 4%;
    box-shadow: 0 0 130px #ffad5f
}

.solar-info {
    padding: 70px 55px;
    display: flex;
    flex-direction: column;
    justify-content: center
}

.solar-info img {
    width: 155px;
    filter: brightness(0) invert(1);
    margin-bottom: 45px
}

.solar-info>p {
    font-size: 24px;
    line-height: 1.45;
    color: #c4ced7
}

.mini-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 40px;
    border-top: 1px solid var(--line);
    padding-top: 26px
}

.mini-stats span {
    font-size: 10px;
    color: #81909d
}

.mini-stats strong {
    display: block;
    font-size: 26px;
    color: #fff
}

.marquee-section {
    overflow: hidden;
    background: var(--pink);
    color: #fff;
    padding: 20px 0
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee 24s linear infinite
}

.marquee-track span {
    font-size: 18px;
    font-weight: 800;
    letter-spacing: .12em;
    white-space: nowrap;
    padding-right: 20px
}

@keyframes marquee {
    to {
        transform: translateX(-50%)
    }
}

.footer {
    position: relative;
    background: #060a10;
    padding: 120px var(--pad) 30px;
    overflow: hidden
}

.footer-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(213, 0, 92, .17);
    filter: blur(100px);
    right: -100px;
    top: -130px
}

.footer-top {
    position: relative;
    max-width: 1200px
}

.footer-top h2 {
    font-size: clamp(50px, 7vw, 112px);
    line-height: .98;
    letter-spacing: -.06em;
    margin: 0 0 55px;
    max-width: 1100px
}

.footer-mail {
    font-size: clamp(20px, 2.5vw, 36px);
    border-bottom: 1px solid rgba(255, 255, 255, .35);
    padding-bottom: 10px;
    display: inline-flex;
    gap: 30px
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.4fr;
    gap: 50px;
    border-top: 1px solid var(--line);
    margin-top: 100px;
    padding: 42px 0
}

.footer-grid span {
    display: block;
    font-size: 9px;
    letter-spacing: .2em;
    color: #747e8c;
    margin-bottom: 14px
}

.footer-grid p,
.footer-grid a {
    font-size: 12px;
    line-height: 1.8;
    color: #a5afba;
    display: block
}

.footer-bottom {
    border-top: 1px solid var(--line);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    color: #68727f;
    font-size: 10px
}

@media(max-width:900px) {

    .cursor-dot,
    .cursor-ring,
    .main-nav,
    .nav-cta {
        display: none
    }

    .menu-btn {
        display: block
    }

    .site-header {
        padding: 18px 20px
    }

    .section-pad {
        padding: 85px 22px
    }

    .hero-content {
        padding: 110px 22px 58px
    }

    .hero-title {
        font-size: clamp(55px, 17vw, 90px);
        margin: 35px 0
    }

    .accent-line {
        padding-left: 0
    }

    .hero-bottom {
        display: block
    }

    .hero-bottom p {
        font-size: 14px
    }

    .circle-link {
        margin-top: 28px;
        width: 84px;
        height: 84px
    }

    .hero-side-label {
        display: none
    }

    .intro-grid,
    .business-head,
    .future-grid {
        grid-template-columns: 1fr
    }

    .sticky-label {
        display: none
    }

    .intro-body {
        grid-template-columns: 1fr;
        padding-left: 0;
        margin: 45px 0 60px
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr
    }

    .stat-card {
        min-height: 210px
    }

    .business-row {
        grid-template-columns: 38px 1fr 48px;
        gap: 12px;
        padding: 30px 22px
    }

    .business-logo-wrap,
    .business-meta {
        display: none
    }

    .business-arrow {
        grid-column: 3
    }

    .manifesto {
        grid-template-columns: 1fr
    }

    .manifesto-sticky {
        min-height: auto
    }

    .manifesto-media {
        height: 72vh;
        position: relative
    }

    .manifesto-content {
        padding: 0 22px
    }

    .manifesto-content article {
        min-height: auto;
        padding: 80px 0
    }

    .solar-feature {
        grid-template-columns: 1fr;
        min-height: 0
    }

    .solar-visual {
        min-height: 400px
    }

    .solar-info {
        padding: 45px 28px
    }

    .mini-stats {
        grid-template-columns: 1fr
    }

    .footer {
        padding: 85px 22px 25px
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr
    }

    .footer-bottom {
        display: block
    }

    .hero-scroll {
        display: none
    }
}

@media(prefers-reduced-motion:reduce) {
    * {
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important
    }

    .hero-video {
        display: none
    }
}

.site-header,
.site-header.scrolled,
.site-header.active,
.site-header.is-scrolled {
    background: #ffffff !important;
    color: #111827 !important;
    border-bottom: 1px solid rgba(0,0,0,0.08) !important;
    box-shadow: 0 4px 25px rgba(0,0,0,0.06) !important;
}

/* Navigation */
.site-header .main-nav a,
.site-header.scrolled .main-nav a {
    color: #111827 !important;
}

.site-header .main-nav a:hover,
.site-header.scrolled .main-nav a:hover {
    color: #0b7a45 !important;
}

/* Brand */
.site-header .brand-copy strong,
.site-header.scrolled .brand-copy strong {
    color: #111827 !important;
}

.site-header .brand-copy small,
.site-header.scrolled .brand-copy small {
    color: #667085 !important;
}

/* Mobile menu lines */
.site-header .menu-btn span,
.site-header.scrolled .menu-btn span {
    background: #111827 !important;
}

/* Contact Button */
.site-header .nav-cta,
.site-header.scrolled .nav-cta {
    background: #a72b61 !important;
    color: #ffffff !important;
}
/* =====================================================
   CINEMATIC HERO BUSINESS SLIDER
===================================================== */

.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 720px;
    overflow: hidden;
    background: #05090e;
}


/* Slides */

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    z-index: 1;

    transform: scale(1.04);

    transition:
        opacity 1.3s cubic-bezier(.22,1,.36,1),
        transform 1.8s cubic-bezier(.22,1,.36,1),
        visibility 1.3s;
}

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


/* Video */

.hero-video {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transform: scale(1.08);

    transition: transform 8s ease;
}

.hero-slide.active .hero-video {
    transform: scale(1);
}


/* cinematic overlay */

.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(3,8,15,.88) 0%,
            rgba(3,8,15,.68) 34%,
            rgba(3,8,15,.28) 66%,
            rgba(3,8,15,.20) 100%
        ),
        linear-gradient(
            0deg,
            rgba(3,8,15,.55),
            transparent 60%
        );

    z-index: 1;
}


/* CONTENT */

.hero-content {
    position: absolute;

    left: 7%;
    top: 53%;

    transform: translateY(-50%);

    width: min(760px, 82%);

    z-index: 5;
}


/* small heading */

.hero-kicker {
    display: inline-flex;
    align-items: center;

    color: rgba(255,255,255,.72);

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 4px;
    text-transform: uppercase;

    margin-bottom: 25px;

    opacity: 0;
    transform: translateY(20px);
}


/* Main title */

.hero-content h1 {
    margin: 0;

    color: #ffffff;

    font-family: "Manrope", sans-serif;

    font-size: clamp(60px, 7.7vw, 130px);

    font-weight: 700;

    letter-spacing: -5px;

    line-height: .88;

    opacity: 0;

    transform: translateY(70px);
}

.hero-content h1 span {
    display: block;

    font-family: "DM Serif Display", serif;

    font-weight: 400;

    letter-spacing: -3px;

    color: #83c891;
}


/* Paragraph */

.hero-content p {
    max-width: 600px;

    margin: 32px 0;

    color: rgba(255,255,255,.8);

    font-size: 17px;

    line-height: 1.8;

    opacity: 0;

    transform: translateY(40px);
}


/* button */

.hero-btn {
    display: inline-flex;

    align-items: center;

    gap: 20px;

    padding: 15px 23px;

    color: #fff;

    border: 1px solid rgba(255,255,255,.35);

    border-radius: 100px;

    text-decoration: none;

    font-size: 14px;

    font-weight: 600;

    backdrop-filter: blur(10px);

    background: rgba(255,255,255,.06);

    opacity: 0;

    transform: translateY(35px);

    transition: .4s ease;
}

.hero-btn i {
    width: 38px;
    height: 38px;

    display: grid;
    place-items: center;

    background: #fff;

    color: #111;

    border-radius: 50%;

    font-style: normal;

    transition: .4s ease;
}

.hero-btn:hover {
    background: #fff;
    color: #111;
}

.hero-btn:hover i {
    transform: rotate(45deg);
    background: #0b7a45;
    color: #fff;
}


/* =========================================
   ACTIVE TEXT ANIMATION
========================================= */

.hero-slide.active .hero-kicker {
    animation: heroTextUp .8s .3s forwards;
}

.hero-slide.active h1 {
    animation: heroTextUp 1s .45s forwards;
}

.hero-slide.active p {
    animation: heroTextUp .9s .7s forwards;
}

.hero-slide.active .hero-btn {
    animation: heroTextUp .9s .9s forwards;
}


@keyframes heroTextUp {

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


/* =========================================
   NAVIGATION
========================================= */

.hero-navigation {

    position: absolute;

    right: 6%;
    bottom: 55px;

    z-index: 20;

    display: flex;

    align-items: center;

    gap: 18px;
}


.hero-arrow {

    width: 48px;
    height: 48px;

    border: 1px solid rgba(255,255,255,.28);

    border-radius: 50%;

    color: #fff;

    background: rgba(255,255,255,.07);

    backdrop-filter: blur(12px);

    cursor: pointer;

    font-size: 18px;

    transition: .3s ease;
}


.hero-arrow:hover {

    background: #fff;
    color: #111;

}


.hero-dots {
    display: flex;
    gap: 8px;
}


.hero-dot {

    position: relative;

    width: 47px;
    height: 47px;

    border: none;

    background: transparent;

    color: rgba(255,255,255,.45);

    cursor: pointer;

    font-size: 11px;

    font-weight: 700;

    transition: .4s ease;
}


.hero-dot::before {

    content: "";

    position: absolute;

    left: 0;
    right: 0;

    bottom: 0;

    height: 2px;

    background: rgba(255,255,255,.25);

}


.hero-dot::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: 0;

    width: 0;
    height: 2px;

    background: #fff;

}


.hero-dot.active {

    color: #fff;

}


/* 7 second progress bar */

.hero-dot.active::after {

    animation: sliderProgress 7s linear forwards;

}


@keyframes sliderProgress {

    from {
        width: 0;
    }

    to {
        width: 100%;
    }

}


/* =========================================
   BUSINESS LABEL
========================================= */

.hero-business-name {

    position: absolute;

    left: 7%;

    bottom: 60px;

    z-index: 15;

    color: rgba(255,255,255,.6);

    font-size: 12px;

    font-weight: 600;

    letter-spacing: 2px;

    text-transform: uppercase;

}


/* =========================================
   MOBILE
========================================= */

@media(max-width: 768px) {

    .hero-slider {
        min-height: 680px;
    }


    .hero-content {

        left: 25px;
        top: 48%;

        width: calc(100% - 50px);

    }


    .hero-content h1 {

        font-size: clamp(48px, 16vw, 72px);

        letter-spacing: -3px;

    }


    .hero-content p {

        font-size: 15px;
        line-height: 1.65;

    }


    .hero-navigation {

        left: 25px;
        right: 25px;
        bottom: 30px;

        justify-content: space-between;

    }


    .hero-business-name {

        display: none;

    }


    .hero-dot {

        width: 31px;

    }


    .hero-arrow {

        width: 42px;
        height: 42px;

    }

}
/* =====================================================
   BUSINESS SHOWCASE
===================================================== */

.business-showcase {
    position: relative;
    padding: 130px 6%;
    background: #f5f5f2;
    overflow: hidden;
    color: #111;
}

.business-showcase-inner {
    max-width: 1450px;
    margin: 0 auto;
}


/* =====================================================
   HEADING
===================================================== */

.business-showcase-head {
    max-width: 960px;
    margin-bottom: 75px;
}

.section-label {
    display: inline-block;

    margin-bottom: 20px;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 4px;

    color: #147540;
}

.business-showcase-head h2 {
    margin: 0;

    font-family: "Manrope", sans-serif;

    font-size: clamp(48px, 6vw, 95px);

    font-weight: 600;

    line-height: .98;

    letter-spacing: -4px;

    color: #111;
}

.business-showcase-head h2 span {
    font-family: "DM Serif Display", serif;
    font-weight: 400;
    color: #137540;
}

.business-showcase-head p {
    max-width: 720px;

    margin-top: 30px;

    color: #636363;

    font-size: 17px;

    line-height: 1.8;
}


/* =====================================================
   TAB NAVIGATION
===================================================== */

.business-tabs {
    width: 100%;

    display: grid;
    grid-template-columns: repeat(4, 1fr);

    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;

    margin-bottom: 65px;
}

.business-tab {
    position: relative;

    min-height: 95px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 12px;

    border: none;
    border-right: 1px solid #ccc;

    background: transparent;

    color: #898989;

    font-family: "Manrope", sans-serif;

    font-size: 15px;

    font-weight: 600;

    cursor: pointer;

    transition: all .45s cubic-bezier(.22,1,.36,1);
}

.business-tab:last-child {
    border-right: none;
}

.business-tab-number {
    font-size: 10px;
    opacity: .6;
}


/* active line */

.business-tab::after {
    content: "";

    position: absolute;

    left: 50%;
    bottom: -1px;

    width: 0;
    height: 3px;

    background: #137540;

    transform: translateX(-50%);

    transition: width .45s cubic-bezier(.22,1,.36,1);
}

.business-tab:hover {
    color: #111;
}

.business-tab.active {
    color: #111;
}

.business-tab.active::after {
    width: 100%;
}


/* =====================================================
   BUSINESS CONTENT
===================================================== */

.business-panel {

    display: none;

    grid-template-columns:
        minmax(0, 1.08fr)
        minmax(380px, .92fr);

    align-items: center;

    gap: clamp(50px, 7vw, 120px);
}

.business-panel.active {
    display: grid;

    animation:
        businessPanelReveal
        .8s cubic-bezier(.22,1,.36,1)
        both;
}


@keyframes businessPanelReveal {

    from {
        opacity: 0;
        transform: translateY(35px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


/* =====================================================
   LEFT CONTENT
===================================================== */

.business-copy {
    max-width: 720px;
}

.business-mini-title {
    display: block;

    margin-bottom: 18px;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 3px;

    text-transform: uppercase;

    color: #137540;
}


.business-copy h3 {

    margin: 0 0 32px;

    font-size: clamp(44px, 5vw, 78px);

    line-height: 1;

    letter-spacing: -3px;

    font-weight: 600;
}


.business-copy h3 span {
    display: block;

    font-family: "DM Serif Display", serif;

    font-weight: 400;

    color: #137540;
}


.business-copy p {

    margin: 0 0 17px;

    max-width: 650px;

    color: #555;

    font-size: 16px;

    line-height: 1.85;
}


/* =====================================================
   STATS
===================================================== */

.business-stats {

    display: flex;

    gap: 55px;

    margin: 38px 0;
}

.business-stats div {

    padding-left: 18px;

    border-left: 2px solid #137540;
}


.business-stats strong {

    display: block;

    font-size: 38px;

    line-height: 1;

    font-weight: 600;

    color: #111;
}


.business-stats span {

    display: block;

    margin-top: 8px;

    font-size: 11px;

    color: #747474;

    letter-spacing: 1px;

    text-transform: uppercase;
}


/* =====================================================
   BUTTON
===================================================== */

.business-explore {

    display: inline-flex;

    align-items: center;

    gap: 22px;

    margin-top: 14px;

    padding: 7px 8px 7px 23px;

    border: 1px solid #1a1a1a;

    border-radius: 100px;

    color: #111;

    text-decoration: none;

    font-size: 13px;

    font-weight: 700;

    transition: .4s ease;
}


.business-explore i {

    width: 44px;
    height: 44px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    background: #137540;

    color: #fff;

    font-style: normal;

    transition: transform .4s ease;
}


.business-explore:hover {

    background: #111;

    color: #fff;
}


.business-explore:hover i {

    transform: rotate(45deg);
}


/* =====================================================
   IMAGE
===================================================== */

.business-media {
    position: relative;
}


.business-image-wrap {

    position: relative;

    overflow: hidden;

    min-height: 510px;

    border-radius: 3px;

    background: #ddd;
}


.business-image-wrap::after {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            transparent 60%,
            rgba(0,0,0,.32)
        );

    pointer-events: none;
}


.business-image-wrap img {

    width: 100%;
    height: 100%;

    min-height: 510px;

    position: absolute;

    inset: 0;

    object-fit: cover;

    transition:
        transform
        1.4s cubic-bezier(.22,1,.36,1);
}


.business-panel.active .business-image-wrap img {

    animation:
        businessImageReveal
        1.2s cubic-bezier(.22,1,.36,1)
        forwards;
}


@keyframes businessImageReveal {

    from {
        transform: scale(1.12);
    }

    to {
        transform: scale(1);
    }

}


.business-image-wrap:hover img {

    transform: scale(1.045);
}


/* BIG NUMBER */

.image-number {

    position: absolute;

    right: 25px;

    bottom: 15px;

    z-index: 5;

    font-family: "DM Serif Display", serif;

    font-size: 75px;

    color: rgba(255,255,255,.85);

    line-height: 1;
}


/* =====================================================
   MOBILE
===================================================== */

@media(max-width: 900px) {

    .business-showcase {

        padding: 85px 24px;

    }


    .business-showcase-head h2 {

        letter-spacing: -2px;

    }


    .business-tabs {

        grid-template-columns: 1fr 1fr;

    }


    .business-tab {

        min-height: 70px;

        border-bottom: 1px solid #ccc;

    }


    .business-panel {

        grid-template-columns: 1fr;

        gap: 45px;

    }


    .business-image-wrap,
    .business-image-wrap img {

        min-height: 420px;

    }

}


@media(max-width: 600px) {

    .business-tabs {

        display: flex;

        overflow-x: auto;

        scrollbar-width: none;

    }


    .business-tabs::-webkit-scrollbar {

        display: none;

    }


    .business-tab {

        min-width: 190px;

    }


    .business-copy h3 {

        font-size: 46px;

    }


    .business-stats {

        gap: 25px;

        flex-wrap: wrap;

    }


    .business-stats strong {

        font-size: 30px;

    }


    .business-image-wrap,
    .business-image-wrap img {

        min-height: 340px;

    }

}

/* =========================================================
   DHANUKA CONTACT
   ORIGINAL WEBSITE THEME
========================================================= */

:root {
    --pink: #b9004f;
    --pink-dark: #9f0045;
    --black: #111111;
    --grey: #626262;
    --light: #f7f7f5;
    --border: #dedede;
}


/* =========================================================
   HERO
========================================================= */

.contact-hero {
    background: #fff;
    padding: 150px 0 120px;
}

.contact-hero-inner {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 80px;
    align-items: end;
}

.contact-eyebrow,
.small-title,
.cta-label {
    color: var(--pink);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 5px;
}

.contact-hero h1 {
    margin: 22px 0 0;

    font-family: Manrope, sans-serif;

    font-size: clamp(75px, 9vw, 145px);

    line-height: .88;

    letter-spacing: -7px;

    color: var(--black);
}

.contact-hero h1 span {
    display: block;
    color: var(--pink);
    font-family: Georgia, serif;
    font-weight: 500;
    letter-spacing: -8px;
}

.contact-hero-right {
    padding-bottom: 12px;
}

.contact-hero-right p {
    max-width: 520px;

    color: var(--grey);

    font-size: 17px;

    line-height: 1.8;

    margin-bottom: 30px;
}


/* =========================================================
   BUTTONS
========================================================= */

.outline-button,
.magenta-button,
.white-button {

    display: inline-flex;

    align-items: center;

    justify-content: space-between;

    gap: 25px;

    min-width: 210px;

    padding: 6px 7px 6px 24px;

    border: 1px solid var(--black);

    border-radius: 50px;

    color: var(--black);

    font-size: 13px;

    font-weight: 700;

    transition: .3s;
}

.outline-button span,
.magenta-button span,
.white-button span {

    width: 48px;
    height: 48px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: var(--pink);

    color: #fff;

    font-size: 18px;
}

.outline-button:hover {
    background: var(--black);
    color: #fff;
}


/* =========================================================
   CONTACT SECTION
========================================================= */

.contact-section {
    background: var(--light);

    padding: 120px 0;
}

.contact-grid {
    display: grid;

    grid-template-columns: .8fr 1.2fr;

    gap: 100px;

    align-items: start;
}


/* LEFT */

.contact-info h2 {

    margin: 20px 0;

    font-family: Manrope, sans-serif;

    font-size: clamp(48px, 5vw, 75px);

    line-height: .95;

    letter-spacing: -4px;

    color: var(--black);
}

.contact-description {

    max-width: 450px;

    color: var(--grey);

    line-height: 1.8;

    font-size: 15px;

    margin-bottom: 50px;
}


/* =========================================================
   CONTACT ITEMS
========================================================= */

.contact-item {

    display: grid;

    grid-template-columns: 45px 1fr;

    gap: 20px;

    padding: 25px 0;

    border-top: 1px solid var(--border);
}

.contact-number {

    color: var(--pink);

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 2px;
}

.contact-item h4 {

    margin: 0 0 7px;

    font-size: 15px;

    font-weight: 800;

    color: var(--pink);
}

.contact-item p,
.contact-item a {

    display: block;

    margin: 0;

    color: var(--grey);

    font-size: 14px;

    line-height: 1.7;
}

.contact-item a:hover {
    color: var(--pink);
}


/* =========================================================
   FORM
========================================================= */

.contact-form-box {

    background: #fff;

    padding: 55px;

    border-radius: 4px;

    border: 1px solid #e4e4e4;
}

.contact-form-box h3 {

    margin: 18px 0 40px;

    font-family: Manrope, sans-serif;

    font-size: clamp(42px, 4vw, 62px);

    line-height: .98;

    letter-spacing: -3px;
}

.form-row {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 25px;
}

.field {
    margin-bottom: 25px;
}

.field label {

    display: block;

    margin-bottom: 9px;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1px;

    text-transform: uppercase;
}

.field input,
.field select,
.field textarea {

    width: 100%;

    padding: 15px 0;

    border: 0;

    border-bottom: 1px solid #cfcfcf;

    background: transparent;

    outline: none;

    border-radius: 0;

    font-family: inherit;

    font-size: 14px;

    color: var(--black);

    transition: .3s;
}

.field textarea {
    resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {

    border-bottom-color: var(--pink);
}

.field input::placeholder,
.field textarea::placeholder {
    color: #999;
}


/* =========================================================
   SUBMIT
========================================================= */

.form-submit-row {

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 30px;

    margin-top: 15px;
}

.consent {

    display: flex;

    gap: 8px;

    max-width: 280px;

    color: #777;

    font-size: 11px;

    line-height: 1.5;
}

.consent input {
    accent-color: var(--pink);
    margin-top: 2px;
}

.form-submit-row button {

    border: 0;

    background: var(--pink);

    color: #fff;

    padding: 7px 8px 7px 25px;

    border-radius: 50px;

    min-width: 190px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    font-family: inherit;

    font-size: 13px;

    font-weight: 800;

    cursor: pointer;

    transition: .3s;
}

.form-submit-row button span {

    width: 42px;
    height: 42px;

    border-radius: 50%;

    background: #fff;

    color: var(--pink);

    display: grid;

    place-items: center;

    font-size: 17px;
}

.form-submit-row button:hover {
    background: var(--black);
}


/* =========================================================
   LOCATION
========================================================= */

.contact-location {

    background: #fff;

    padding: 120px 0;
}

.location-top {

    display: flex;

    justify-content: space-between;

    align-items: end;

    margin-bottom: 45px;
}

.location-top h2 {

    margin-top: 15px;

    font-family: Manrope, sans-serif;

    font-size: clamp(50px, 6vw, 85px);

    line-height: .9;

    letter-spacing: -4px;

    color: var(--black);
}

.magenta-button {

    border-color: var(--pink);

    color: var(--pink);
}

.magenta-button span {
    background: var(--pink);
}

.magenta-button:hover {
    background: var(--pink);
    color: #fff;
}

.map-wrapper {

    height: 480px;

    overflow: hidden;

    border-radius: 3px;
}

.map-wrapper iframe {

    width: 100%;

    height: 100%;

    border: 0;
}


/* =========================================================
   CTA
========================================================= */

.contact-cta {

    background: var(--pink);

    padding: 120px 0;

    color: #fff;

    text-align: center;
}

.contact-cta .cta-label {
    color: #fff;
}

.contact-cta h2 {

    margin: 20px auto 40px;

    font-family: Manrope, sans-serif;

    font-size: clamp(55px, 7vw, 105px);

    line-height: .9;

    letter-spacing: -5px;
}

.contact-cta h2 span {

    font-family: Georgia, serif;

    font-weight: 400;

    color: #111;
}

.white-button {

    border-color: #fff;

    color: #fff;

    text-align: left;
}

.white-button span {

    background: #fff;

    color: var(--pink);
}

.white-button:hover {

    background: #fff;

    color: var(--pink);
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width: 900px) {

    .contact-hero-inner,
    .contact-grid {

        grid-template-columns: 1fr;

        gap: 50px;
    }

    .contact-hero {

        padding: 110px 0 80px;
    }

    .contact-hero h1 {

        font-size: 70px;

        letter-spacing: -4px;
    }

    .contact-grid {
        gap: 60px;
    }

}


@media(max-width: 600px) {

    .contact-hero {

        padding: 90px 20px 70px;
    }

    .contact-hero h1 {

        font-size: 58px;

        letter-spacing: -3px;
    }

    .contact-hero h1 span {
        letter-spacing: -4px;
    }

    .contact-section,
    .contact-location,
    .contact-cta {

        padding: 80px 20px;
    }

    .form-row {

        grid-template-columns: 1fr;

        gap: 0;
    }

    .contact-form-box {

        padding: 30px 22px;
    }

    .contact-form-box h3 {

        font-size: 42px;

        letter-spacing: -2px;
    }

    .form-submit-row {

        flex-direction: column;

        align-items: stretch;
    }

    .form-submit-row button {

        width: 100%;
    }

    .location-top {

        display: block;
    }

    .magenta-button {

        margin-top: 25px;
    }

    .map-wrapper {
        height: 350px;
    }

    .contact-cta h2 {

        font-size: 52px;

        letter-spacing: -3px;
    }

}
/* =====================================================
   CONTACT FORM - TEXT VISIBILITY FIX
===================================================== */

.contact-form-box,
.contact-form-box form,
.contact-form-box label,
.contact-form-box h3 {
    color: #111111 !important;
}

.contact-form-box input,
.contact-form-box select,
.contact-form-box textarea {
    color: #111111 !important;
    background-color: #ffffff !important;
    -webkit-text-fill-color: #111111 !important;
}

.contact-form-box input::placeholder,
.contact-form-box textarea::placeholder {
    color: #777777 !important;
    -webkit-text-fill-color: #777777 !important;
    opacity: 1 !important;
}

.contact-form-box select option {
    color: #111111 !important;
    background: #ffffff !important;
}

.contact-form-box input:focus,
.contact-form-box select:focus,
.contact-form-box textarea:focus {
    color: #111111 !important;
    -webkit-text-fill-color: #111111 !important;
    background-color: #ffffff !important;
    border-bottom-color: #b9004f !important;
}

/* Label */
.contact-form-box .field label {
    color: #111111 !important;
}

/* Required star */
.contact-form-box .field label span {
    color: #b9004f !important;
}

/* Checkbox text */
.contact-form-box .consent,
.contact-form-box .consent span {
    color: #555555 !important;
}

/* Button text should remain white */
.contact-form-box .form-submit-row button {
    color: #ffffff !important;
}

.contact-form-box .form-submit-row button span {
    color: #b9004f !important;
    background: #ffffff !important;
}