

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --brown: #52381e;
    --brown-dark: #3a2712;
    --brown-deeper: #1e1208;
    --brown-light: #6b4a28;
    --orange: #ffd2b1;
    --orange-deep: #e8a876;
    --orange-warm: #c8875a;
    --title: #232323;
    --grey: #6b7280;
    --white: #ffffff;
    --cream: #fdf8f4;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Manrope', sans-serif;
    background: #fff;
    color: var(--title);
    overflow-x: hidden;
    cursor: none;
}

/* CURSOR */
.cursor {
    width: 10px;
    height: 10px;
    background: var(--brown);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    transition: transform 0.15s ease, background 0.3s;
}

.cursor-ring {
    width: 38px;
    height: 38px;
    border: 1.5px solid var(--brown);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 99998;
    transform: translate(-50%, -50%);
    transition: all 0.2s ease;
    opacity: 0.5;
}

.cursor.big {
    transform: translate(-50%, -50%) scale(3);
    background: var(--orange-warm);
    opacity: 0.4;
}

.cursor-ring.big {
    transform: translate(-50%, -50%) scale(0.5);
    opacity: 0;
}

/* HEADER */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 30px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.4s ease;
}

header.scrolled {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    padding: 18px 60px;
    box-shadow: 0 2px 40px rgba(82, 56, 30, 0.08);
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-mark {
    width: 40px;
    height: 40px;
    background: var(--brown);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 900;
    color: var(--orange);
    letter-spacing: -1px;
}

.logo-text span {
    display: block;
    line-height: 1.1;
}

.logo-text .sub {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.5px;
    color: var(--orange);
    text-transform: uppercase;
}

.logo-text .main {
    font-size: 15px;
    font-weight: 900;
    color: #fff;
}

header.scrolled .logo-text .main {
    color: var(--title);
}

header.scrolled .logo-text .sub {
    color: var(--brown);
}

header.scrolled .logo-mark {
    background: var(--brown);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.btn-join {
    padding: 13px 32px;
    background: var(--orange);
    color: var(--brown);
    border: none;
    border-radius: 100px;
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
}

.btn-join:hover {
    background: var(--orange-deep);
    transform: translateY(-2px);
}

header.scrolled .btn-join {
    background: var(--brown);
    color: #fff;
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
}

.hamburger span {
    display: block;
    height: 2px;
    border-radius: 2px;
    background: #fff;
    transition: all 0.3s ease;
}

.hamburger span:nth-child(1) {
    width: 26px;
}

.hamburger span:nth-child(2) {
    width: 18px;
}

.hamburger span:nth-child(3) {
    width: 22px;
}

.hamburger:hover span {
    width: 26px !important;
}

header.scrolled .hamburger span {
    background: var(--brown);
}

/* FULLSCREEN MENU */
.fs-menu {
    position: fixed;
    inset: 0;
    background: var(--brown-deeper);
    z-index: 5000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    display: flex;
}

.fs-menu.open {
    opacity: 1;
    pointer-events: all;
}

.fs-left {
    width: 42%;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-right: 1px solid rgba(255, 210, 177, 0.08);
}

.fs-brand-desc {
    margin-top: 80px;
}

.fs-brand-desc p {
    font-size: 14px;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.45);
    font-weight: 400;
    max-width: 300px;
    margin: 16px 0 28px;
}

.fs-website-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 28px;
    background: var(--orange);
    color: var(--brown);
    border: none;
    border-radius: 100px;
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-bottom: 28px;
}

.fs-website-btn:hover {
    background: var(--orange-deep);
}

.fs-socials {
    display: flex;
    gap: 12px;
    margin-bottom: 40px;
}

.fs-social {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 210, 177, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.fs-social:hover {
    background: var(--orange);
    color: var(--brown);
    border-color: var(--orange);
}

.fs-events-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 16px;
}

.fs-event-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.fs-event-card {
    display: flex;
    gap: 14px;
    align-items: center;
    padding: 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 210, 177, 0.08);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.fs-event-card:hover {
    background: rgba(255, 210, 177, 0.08);
    border-color: rgba(255, 210, 177, 0.2);
}

.fs-event-img {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}

.fs-event-info {}

.fs-event-cat {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 4px;
}

.fs-event-title {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
}

.fs-event-date {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.35);
    margin-top: 3px;
    font-weight: 500;
}

.fs-right {
    width: 58%;
    padding: 60px 60px 60px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.fs-close {
    position: absolute;
    top: 36px;
    right: 48px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s;
}

.fs-close:hover {
    color: var(--orange);
}

.fs-close::before {
    content: '✕';
    font-size: 15px;
}

.fs-nav {
    display: flex;
    flex-direction: column;
}

.fs-nav-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 210, 177, 0.08);
    text-decoration: none;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateX(30px);
}

.fs-menu.open .fs-nav-item {
    opacity: 1;
    transform: translateX(0);
}

.fs-menu.open .fs-nav-item:nth-child(1) {
    transition: opacity 0.4s 0.1s ease, transform 0.4s 0.1s ease, color 0.3s;
}

.fs-menu.open .fs-nav-item:nth-child(2) {
    transition: opacity 0.4s 0.15s ease, transform 0.4s 0.15s ease, color 0.3s;
}

.fs-menu.open .fs-nav-item:nth-child(3) {
    transition: opacity 0.4s 0.2s ease, transform 0.4s 0.2s ease, color 0.3s;
}

.fs-menu.open .fs-nav-item:nth-child(4) {
    transition: opacity 0.4s 0.25s ease, transform 0.4s 0.25s ease, color 0.3s;
}

.fs-menu.open .fs-nav-item:nth-child(5) {
    transition: opacity 0.4s 0.3s ease, transform 0.4s 0.3s ease, color 0.3s;
}

.fs-menu.open .fs-nav-item:nth-child(6) {
    transition: opacity 0.4s 0.35s ease, transform 0.4s 0.35s ease, color 0.3s;
}

.fs-nav-item:first-child {
    border-top: 1px solid rgba(255, 210, 177, 0.08);
}

.fs-nav-item:hover .fs-nav-name {
    color: var(--orange);
}

.fs-nav-item:hover .fs-nav-arrow {
    opacity: 1;
    transform: translateX(4px);
}

.fs-nav-name {
    font-size: 20px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: -0.5px;
}

.fs-nav-num {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 210, 177, 0.3);
    letter-spacing: 1px;
}

.fs-nav-arrow {
    font-size: 16px;
    color: var(--orange);
    opacity: 0;
    transform: translateX(-4px);
    transition: all 0.3s ease;
}

/* HERO */
.hero {
    height: 100vh;
    min-height: 700px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-slides {
    position: absolute;
    inset: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(30, 18, 8, 0.92) 0%, rgba(58, 39, 18, 0.65) 55%, rgba(20, 12, 5, 0.7) 100%);
}

.hero-grain {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 80px;
    max-width: 860px;
}


@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

.hero h1 {
    font-size: clamp(44px, 6.5vw, 90px);
    font-weight: 900;
    color: #fff;
    line-height: 1.15;
    letter-spacing: -3px;
    margin-bottom: 32px;
    animation: fadeUp 0.8s 0.15s ease both;
}

.hero h1 em {
    font-style: normal;
    color: var(--orange);
}

.hero-desc {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.65);
    max-width: 540px;
    margin-bottom: 48px;
    animation: fadeUp 0.8s 0.3s ease both;
}

.hero-btns {
    display: flex;
    gap: 16px;
    animation: fadeUp 0.8s 0.45s ease both;
}

.btn-hero-primary {
    padding: 18px 42px;
    background: var(--orange);
    color: var(--brown);
    border: none;
    border-radius: 100px;
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-hero-primary:hover {
    background: var(--orange-deep);
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(255, 210, 177, 0.25);
}

.btn-hero-outline {
    padding: 18px 42px;
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    border-radius: 100px;
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-hero-outline:hover {
    border-color: var(--orange);
    color: var(--orange);
    transform: translateY(-3px);
}

.hero-scroll {
    position: absolute;
    bottom: 44px;
    left: 80px;
    display: flex;
    align-items: center;
    gap: 14px;
    z-index: 3;
    animation: fadeUp 1s 0.7s ease both;
}

.scroll-line {
    width: 50px;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--orange);
    animation: slide 2s infinite ease;
}

@keyframes slide {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

.scroll-txt {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.5px;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
}

.hero-dots {
    position: absolute;
    bottom: 44px;
    right: 80px;
    display: flex;
    gap: 10px;
    z-index: 3;
    animation: fadeUp 1s 0.6s ease both;
}

.hdot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    cursor: pointer;
    transition: all 0.3s ease;
}

.hdot.on {
    background: var(--orange);
    width: 26px;
    border-radius: 4px;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* MARQUEE */
.marquee-wrap {
    background: var(--brown);
    padding: 16px 0;
    overflow: hidden;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: mq 28s linear infinite;
}

.mq-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 0 36px;
    font-size: 11px;
    font-weight: 700;
    color: var(--orange);
    letter-spacing: 2.5px;
    text-transform: uppercase;
    white-space: nowrap;
}

.mq-item::after {
    content: '◆';
    font-size: 7px;
    color: rgba(255, 210, 177, 0.35);
}

@keyframes mq {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* ABOUT */
.about {
    padding: 0;
    overflow: hidden;
    background: #fff;
}

.about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 90vh;
}

.about-img-side {
    position: relative;
    overflow: hidden;
}

.about-img-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.about-img-side:hover img {
    transform: scale(1.04);
}

/* .about-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, transparent 60%, #fff 100%);
} */

.about-badge {
    position: absolute;
    bottom: 48px;
    left: 40px;
    background: var(--brown);
    color: var(--orange);
    padding: 20px 28px;
    border-radius: 16px;
}

.about-badge strong {
    display: block;
    font-size: 36px;
    font-weight: 900;
    letter-spacing: -2px;
}

.about-badge span {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.8;
}

.about-content {
    padding: 100px 80px 100px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 10px;
    font-weight: 700;
    color: var(--brown);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.eyebrow::before {
    content: '';
    width: 28px;
    height: 2px;
    background: var(--orange-warm);
    border-radius: 2px;
}

.sec-title {
    font-size: clamp(34px, 4vw, 56px);
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -2px;
    color: var(--title);
    margin-bottom: 24px;
}

.sec-desc {
    font-size: 16px;
    line-height: 1.85;
    color: var(--grey);
    font-weight: 400;
    margin-bottom: 40px;
}

.about-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}

.pill {
    padding: 11px 20px;
    background: var(--cream);
    border: 1px solid rgba(82, 56, 30, 0.12);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    color: var(--title);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pill:hover {
    background: var(--brown);
    color: var(--orange);
    border-color: var(--brown);
    transform: translateY(-2px);
}

.pill::before {
    content: '✓';
    width: 20px;
    height: 20px;
    background: var(--brown);
    color: var(--orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 900;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.pill:hover::before {
    background: var(--orange);
    color: var(--brown);
}

.btn-main {
    padding: 18px 44px;
    background: var(--brown);
    color: #fff;
    border: none;
    border-radius: 100px;
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-main:hover {
    background: var(--brown-light);
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(82, 56, 30, 0.2);
}

/* PARTNER */
.partner-sec {
    background: var(--cream);
    padding: 120px 80px;
}

.partner-head {
    margin-bottom: 60px;
}

.partner-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.p-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 3/4;
    cursor: pointer;
}

.p-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    filter: brightness(0.72);
}

.p-card:hover img {
    transform: scale(1.08);
    filter: brightness(0.5);
}

.p-card-ov {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(30, 18, 8, 0.95) 0%, transparent 55%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 26px 22px;
}

.p-cat {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 6px;
}

.p-name {
    font-size: 17px;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    letter-spacing: -0.3px;
}

/* HOW CONNECTX WORKS */
.how-works {
    position: relative;
    padding: 100px 60px 120px;
    background: linear-gradient(135deg, #f8f5f0 0%, #faf8f4 50%, #f3ede4 100%);
    overflow: hidden;
}
.container-how {
    max-width: 1200px;
    margin: 0 auto;
}
.how-header {
    text-align: center;
    margin-bottom: 72px;
}
.how-label {
    color: #9b8574;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.how-title {
    font-size: clamp(34px, 4vw, 56px);
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -2px;
    color: #1a1a1a;
    margin-bottom: 24px;
}
.how-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 52px 40px;
}
.how-card {
    position: relative;
    text-align: center;
    padding: 40px 28px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(211, 195, 176, 0.4);
    transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}
.how-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 20px 50px rgba(26, 26, 26, 0.08);
}
.how-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    transition: transform 0.3s ease;
}
.how-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.how-card:hover .how-icon {
    transform: scale(1.1);
}
.how-card svg {
    width: 100%;
    height: 100%;
}
.how-step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #d3c3b0;
    color: #8b7355;
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}
.how-card:hover .how-step-num {
    border-color: #c9a876;
    color: #c9a876;
}
.how-card h3 {
    font-size: 20px;
    margin-bottom: 14px;
    color: #1a1a1a;
    font-weight: 700;
}
.how-card p {
    color: #5a5a5a;
    line-height: 1.8;
    font-size: 15px;
}

.experiences-sec {
    padding: 120px 80px;
    background: linear-gradient(180deg, #fff 0%, #f9f3ec 100%);
}
.experience-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(240px, 1fr));
    gap: 24px;
    margin-top: 40px;
}
.exp-card {
    background: #fff;
    border-radius: 24px;
    padding: 32px 28px;
    border: 1px solid rgba(82, 56, 30, 0.08);
    box-shadow: 0 20px 50px rgba(82, 56, 30, 0.04);
    transition: transform 0.3s ease, border-color 0.3s ease;
}
.exp-card:hover {
    transform: translateY(-6px);
    border-color: rgba(82, 56, 30, 0.18);
}
.exp-icon {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    font-size: 24px;
    background: rgba(255, 210, 177, 0.16);
    margin-bottom: 20px;
}
.exp-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}
.exp-card p {
    color: var(--grey);
    line-height: 1.8;
}

.events-sec {
    padding: 120px 80px;
    background: #fff;
}
.event-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 40px;
}
.event-card {
    display: grid;
    gap: 18px;
    border-radius: 24px;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(82, 56, 30, 0.08);
    box-shadow: 0 24px 50px rgba(82, 56, 30, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.event-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 32px 70px rgba(82, 56, 30, 0.1);
}
.event-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}
.event-card .event-cat {
    display: inline-flex;
    margin-bottom: 10px;
    font-size: 10px;
    letter-spacing: 2px;
    color: var(--orange);
    text-transform: uppercase;
}
.event-card h3 {
    font-size: 20px;
    color: var(--title);
}

.community-sec {
    padding: 120px 80px 160px;
    background: linear-gradient(180deg, #fdf8f4 0%, #fff 100%);
}
.community-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 40px;
}
.com-card {
    background: #fff;
    border-radius: 28px;
    padding: 36px;
    border: 1px solid rgba(82, 56, 30, 0.08);
    box-shadow: 0 24px 60px rgba(82, 56, 30, 0.05);
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.com-card h3 {
    font-size: 24px;
}
.com-card p {
    color: var(--grey);
    line-height: 1.9;
}
.com-card .btn-main {
    max-width: fit-content;
}

@media (max-width: 1180px) {
    .partner-grid,
    .experience-grid,
    .event-grid,
    .community-grid,
    .how-grid {
        grid-template-columns: repeat(2, minmax(220px, 1fr));
    }
}

@media (max-width: 760px) {
    header,
    .how-grid,
    .experience-grid,
    .event-grid,
    .community-grid,
    .about-inner,
    .partner-grid {
        grid-template-columns: 1fr;
        padding: 28px;
    }
    header {
        padding: 18px 28px;
    }
}

.p-arrow {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 34px;
    height: 34px;
    background: rgba(255, 210, 177, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    font-size: 14px;
    opacity: 0;
    transform: translateY(-6px);
    transition: all 0.3s ease;
}

.p-card:hover .p-arrow {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE DESIGN - TABLET & MOBILE
   ============================================ */

/* Extra Large Screens (1921px and up) */
@media (min-width: 1921px) {
    .hero, .about, .how-works, .experiences-sec, .events-sec, .community-sec {
        padding-left: 120px;
        padding-right: 120px;
    }
}

/* Large Screens (1201px - 1920px) */
@media (max-width: 1920px) {
    body {
        font-size: 16px;
    }
}

/* Medium Screens (1025px - 1200px) - Tablet Landscape */
@media (max-width: 1200px) {
    .hero {
        padding: 60px 50px;
    }
    
    .hero-content h1 {
        font-size: clamp(32px, 4vw, 48px);
    }
    
    .hero-btns {
        gap: 12px;
    }
    
    .how-works {
        padding: 80px 50px 100px;
    }
    
    .how-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 32px;
    }
    
    .experiences-sec {
        padding: 80px 50px;
    }
    
    .experience-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .events-sec, .community-sec {
        padding: 80px 50px;
    }
    
    .container-how {
        max-width: 100%;
    }
}

/* Tablet (768px - 1024px) */
@media (max-width: 1024px) {
    html {
        font-size: 15px;
    }
    
    body {
        font-size: 15px;
    }
    
    /* HERO */
    .hero {
        padding: 50px 40px;
        min-height: 600px;
    }
    
    .hero-content {
        padding: 0;
    }
    
    .hero-content h1 {
        font-size: clamp(28px, 3.5vw, 40px);
        line-height: 1.15;
    }
    
    .hero-desc {
        font-size: 14px;
        line-height: 1.7;
    }
    
    .hero-btns {
        flex-direction: column;
        gap: 10px;
    }
    
    .btn-hero-primary, .btn-hero-outline {
        font-size: 14px;
        padding: 12px 24px;
    }
    
    .hero-scroll {
        display: none;
    }
    
    /* MARQUEE */
    .marquee-wrap {
        padding: 30px 0;
    }
    
    .mq-item {
        font-size: 16px;
    }
    
    /* ABOUT */
    .about {
        padding: 60px 40px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-content h2 {
        font-size: clamp(24px, 3.5vw, 36px);
    }
    
    .about-pills {
        flex-direction: column;
        gap: 12px;
    }
    
    /* HOW CONNECTX WORKS */
    .how-works {
        padding: 60px 40px 80px;
    }
    
    .how-header {
        margin-bottom: 50px;
    }
    
    .how-label {
        font-size: 12px;
    }
    
    .how-title {
        font-size: clamp(24px, 3.5vw, 36px);
    }
    
    .how-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px 24px;
    }
    
    .how-card {
        padding: 32px 20px;
        border-radius: 16px;
    }
    
    .how-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 16px;
    }
    
    .how-step-num {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
    
    .how-card h3 {
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    .how-card p {
        font-size: 14px;
        line-height: 1.7;
    }
    
    /* EXPERIENCES */
    .experiences-sec {
        padding: 60px 40px;
    }
    
    .section-head {
        margin-bottom: 40px;
    }
    
    .section-head .sec-title {
        font-size: clamp(24px, 3.5vw, 36px);
    }
    
    .experience-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-top: 30px;
    }
    
    .exp-card {
        padding: 24px 20px;
        border-radius: 16px;
    }
    
    .exp-card h3 {
        font-size: 16px;
    }
    
    /* EVENTS */
    .events-sec {
        padding: 60px 40px;
    }
    
    .event-grid {
        grid-template-columns: 1fr;
    }
    
    /* COMMUNITY */
    .community-sec {
        padding: 60px 40px;
    }
}

/* Small Tablets & Large Phones (640px - 767px) */
@media (max-width: 767px) {
    html {
        font-size: 14px;
    }
    
    body {
        font-size: 14px;
    }
    
    /* HERO */
    .hero {
        padding: 40px 20px;
        min-height: 500px;
    }
    
    .hero-content h1 {
        font-size: clamp(24px, 3vw, 32px);
        line-height: 1.2;
    }
    
    .hero-desc {
        font-size: 13px;
        line-height: 1.6;
        margin-bottom: 20px;
    }
    
    .hero-btns {
        flex-direction: column;
        gap: 8px;
    }
    
    .btn-hero-primary, .btn-hero-outline {
        font-size: 13px;
        padding: 10px 20px;
        width: 100%;
    }
    
    .hero-dots {
        display: none;
    }
    
    /* MARQUEE */
    .marquee-wrap {
        padding: 20px 0;
    }
    
    .mq-item {
        font-size: 14px;
    }
    
    /* ABOUT */
    .about {
        padding: 50px 20px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-content h2 {
        font-size: clamp(20px, 3vw, 28px);
        margin-bottom: 14px;
    }
    
    .about-content p {
        font-size: 13px;
        line-height: 1.7;
    }
    
    .about-pills {
        flex-direction: column;
        gap: 10px;
    }
    
    .about-pill {
        font-size: 13px;
        padding: 8px 14px;
    }
    
    /* HOW CONNECTX WORKS */
    .how-works {
        padding: 50px 20px 60px;
    }
    
    .how-header {
        margin-bottom: 40px;
    }
    
    .how-label {
        font-size: 11px;
        margin-bottom: 12px;
    }
    
    .how-title {
        font-size: clamp(20px, 3vw, 28px);
        letter-spacing: -0.3px;
    }
    
    .how-grid {
        grid-template-columns: 1fr;
        gap: 24px 0;
    }
    
    .how-card {
        padding: 28px 18px;
        border-radius: 14px;
    }
    
    .how-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 14px;
    }
    
    .how-step-num {
        width: 40px;
        height: 40px;
        font-size: 16px;
        margin-bottom: 16px;
    }
    
    .how-card h3 {
        font-size: 16px;
        margin-bottom: 10px;
    }
    
    .how-card p {
        font-size: 13px;
        line-height: 1.6;
    }
    
    /* EXPERIENCES */
    .experiences-sec {
        padding: 50px 20px;
    }
    
    .section-head {
        text-align: center;
        margin-bottom: 30px;
    }
    
    .section-head .eyebrow {
        font-size: 11px;
    }
    
    .section-head .sec-title {
        font-size: clamp(20px, 3vw, 28px);
        margin-bottom: 12px;
    }
    
    .section-head .sec-desc {
        font-size: 13px;
    }
    
    .experience-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 20px;
    }
    
    .exp-card {
        padding: 20px 16px;
        border-radius: 14px;
    }
    
    .exp-card h3 {
        font-size: 15px;
        margin-bottom: 10px;
    }
    
    .exp-card p {
        font-size: 13px;
        line-height: 1.6;
    }
    
    /* EVENTS */
    .events-sec {
        padding: 50px 20px;
    }
    
    .event-grid {
        grid-template-columns: 1fr;
    }
    
    .event-card {
        padding: 20px 16px;
    }
    
    /* COMMUNITY */
    .community-sec {
        padding: 50px 20px;
    }
}

/* Mobile Phones (480px - 639px) */
@media (max-width: 639px) {
    html {
        font-size: 13px;
    }
    
    body {
        font-size: 13px;
    }
    
    /* HERO */
    .hero {
        padding: 35px 15px;
        min-height: 450px;
    }
    
    .hero-content h1 {
        font-size: clamp(20px, 2.8vw, 28px);
        line-height: 1.25;
    }
    
    .hero-desc {
        font-size: 12px;
        line-height: 1.6;
        margin-bottom: 16px;
    }
    
    .btn-hero-primary, .btn-hero-outline {
        font-size: 12px;
        padding: 9px 16px;
    }
    
    /* MARQUEE */
    .mq-item {
        font-size: 12px;
    }
    
    /* ABOUT */
    .about {
        padding: 40px 15px;
    }
    
    .about-content h2 {
        font-size: clamp(18px, 2.8vw, 24px);
        margin-bottom: 12px;
    }
    
    .about-content p {
        font-size: 12px;
    }
    
    .about-pill {
        font-size: 12px;
        padding: 6px 12px;
    }
    
    /* HOW CONNECTX WORKS */
    .how-works {
        padding: 40px 15px 50px;
    }
    
    .how-header {
        margin-bottom: 32px;
    }
    
    .how-label {
        font-size: 10px;
    }
    
    .how-title {
        font-size: clamp(18px, 2.8vw, 24px);
    }
    
    .how-grid {
        gap: 20px 0;
    }
    
    .how-card {
        padding: 24px 14px;
    }
    
    .how-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 12px;
    }
    
    .how-step-num {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
    
    .how-card h3 {
        font-size: 14px;
    }
    
    .how-card p {
        font-size: 12px;
    }
    
    /* EXPERIENCES */
    .experiences-sec {
        padding: 40px 15px;
    }
    
    .section-head .sec-title {
        font-size: clamp(18px, 2.8vw, 24px);
    }
    
    .exp-card {
        padding: 16px 12px;
    }
    
    .exp-card h3 {
        font-size: 14px;
    }
    
    .exp-card p {
        font-size: 12px;
    }
    
    /* EVENTS & COMMUNITY */
    .events-sec, .community-sec {
        padding: 40px 15px;
    }
}

/* Extra Small Phones (up to 479px) */
@media (max-width: 479px) {
    html {
        font-size: 12px;
    }
    
    body {
        font-size: 12px;
    }
    
    /* HERO */
    .hero {
        padding: 30px 12px;
        min-height: 400px;
    }
    
    .hero-content h1 {
        font-size: clamp(18px, 2.5vw, 24px);
        line-height: 1.3;
    }
    
    .hero-desc {
        font-size: 11px;
        line-height: 1.5;
        margin-bottom: 14px;
    }
    
    .btn-hero-primary, .btn-hero-outline {
        font-size: 11px;
        padding: 8px 14px;
    }
    
    /* MARQUEE */
    .mq-item {
        font-size: 11px;
    }
    
    /* ABOUT */
    .about {
        padding: 35px 12px;
    }
    
    .about-content h2 {
        font-size: clamp(16px, 2.5vw, 20px);
    }
    
    .about-content p {
        font-size: 11px;
    }
    
    .about-pill {
        font-size: 11px;
        padding: 5px 10px;
    }
    
    /* HOW CONNECTX WORKS */
    .how-works {
        padding: 35px 12px 45px;
    }
    
    .how-header {
        margin-bottom: 28px;
    }
    
    .how-label {
        font-size: 9px;
    }
    
    .how-title {
        font-size: clamp(16px, 2.5vw, 20px);
    }
    
    .how-card {
        padding: 20px 12px;
    }
    
    .how-icon {
        width: 45px;
        height: 45px;
        margin-bottom: 10px;
    }
    
    .how-step-num {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }
    
    .how-card h3 {
        font-size: 13px;
    }
    
    .how-card p {
        font-size: 11px;
        line-height: 1.5;
    }
    
    /* EXPERIENCES */
    .exp-card {
        padding: 14px 10px;
    }
    
    .exp-card h3 {
        font-size: 13px;
    }
    
    .exp-card p {
        font-size: 11px;
    }
    
    /* EVENTS & COMMUNITY */
    .events-sec, .community-sec {
        padding: 35px 12px;
    }
}
