/* ============================================================
   COLLABERA INTERNATIONAL — Super Modern Rebuild
   Layout: Fixed left sidebar nav (260px) + main scrollable
   Palette: Near-Black #08090D, Electric Lime #CAFF33, White
   Fonts: Syne (headings) + DM Mono (accents) + Inter (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Lato:wght@300;400;700&display=swap');

/* ── Tokens ── */
:root {
    --black: #08090D;
    --black-2: #111318;
    --black-3: #1A1C23;
    --black-4: #252830;
    --lime: #CAFF33;
    --lime-dim: #A8D925;
    --white: #FFFFFF;
    --off-white: #F2F2EF;
    --grey: #8A8D96;
    --grey-lt: #C4C6CC;
    --border: rgba(255, 255, 255, 0.08);
    --border-lime: rgba(202, 255, 51, 0.25);
    --sidebar-w: 260px;
    --radius: 12px;
    --radius-lg: 20px;
    --t: 0.28s ease;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
    --glow: 0 0 40px rgba(202, 255, 51, 0.12);
}

/* ── Reset ── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    line-height: 1.75;
    color: var(--off-white);
    background: var(--black);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--t);
}

ul {
    list-style: none;
}

p {
    color: var(--grey-lt);
    line-height: 1.8;
    margin-bottom: 1.1rem;
}

p:last-child {
    margin-bottom: 0;
}

/* ── Typography ── */
h1,
h2,
h3,
h4,
h5 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--white);
    line-height: 1.1;
    font-weight: 600;
    line-height: 1.15;
}

h1 {
    font-size: clamp(2.4rem, 5vw, 5rem);
    letter-spacing: -0.01em;
}

h2 {
    font-size: clamp(2rem, 3.5vw, 3.4rem);
    letter-spacing: -0.01em;
}

h3 {
    font-size: clamp(1.4rem, 2.2vw, 2rem);
    letter-spacing: 0em;
}

h4 {
    font-size: 1.15rem;
    font-weight: 700;
}

h5 {
    font-size: 0.95rem;
    font-weight: 700;
}

.tag {
    font-family: 'Lato', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    color: var(--lime);
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 16px;
}

.tag::before {
    content: '';
}

.tag::after {
    content: '';
}

.lead {
    font-size: 1.05rem;
    color: var(--grey-lt);
    line-height: 1.8;
}

/* ── Layout ── */
.wrapper {
    margin-left: var(--sidebar-w);
    min-height: 100vh;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 48px;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 48px;
}

.section {
    padding: 96px 0;
}

.section-lg {
    padding: 130px 0;
}

.mt-16 {
    margin-top: 16px;
}

.mt-24 {
    margin-top: 24px;
}

.mt-32 {
    margin-top: 32px;
}

.mt-48 {
    margin-top: 48px;
}

.mb-16 {
    margin-bottom: 16px;
}

.mb-24 {
    margin-bottom: 24px;
}

.mb-48 {
    margin-bottom: 48px;
}

.text-center {
    text-align: center;
}

.text-lime {
    color: var(--lime);
}

.text-grey {
    color: var(--grey);
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    font-family: 'Lato', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    cursor: pointer;
    border: 1.5px solid transparent;
    border-radius: 50px;
    transition: all var(--t);
}

.btn-lime {
    background: var(--lime);
    color: var(--black);
    border-color: var(--lime);
}

.btn-lime:hover {
    background: transparent;
    color: var(--lime);
    transform: translateY(-2px);
    box-shadow: var(--glow);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--border);
}

.btn-outline:hover {
    border-color: var(--lime);
    color: var(--lime);
    transform: translateY(-2px);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    border-color: var(--border);
}

.btn-ghost:hover {
    background: var(--lime);
    color: var(--black);
    border-color: var(--lime);
}

.btn-icon {
    width: 18px;
    height: 18px;
}

/* ── SIDEBAR ── */
.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: var(--sidebar-w);
    height: 100vh;
    z-index: 100;
    background: var(--black-2);
    border-right: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    padding: 36px 28px;
    overflow: hidden;
}

.sb-brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    display: block;
    margin-bottom: 48px;
    letter-spacing: 0em;
}

.sb-brand .sb-int {
    display: block;
    font-family: 'Lato', sans-serif;
    font-size: 0.62rem;
    font-weight: 400;
    color: var(--lime);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-top: 2px;
}

.sb-nav {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sb-nav a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 14px;
    font-family: 'Lato', sans-serif;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--grey);
    border-radius: var(--radius);
    transition: all var(--t);
    position: relative;
}

.sb-nav a .sb-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--border);
    flex-shrink: 0;
    transition: background var(--t);
}

.sb-nav a:hover,
.sb-nav a.active {
    color: var(--white);
    background: rgba(255, 255, 255, 0.05);
}

.sb-nav a:hover .sb-dot,
.sb-nav a.active .sb-dot {
    background: var(--lime);
}

.sb-nav a.active {
    font-weight: 600;
}

.sb-divider {
    height: 1px;
    background: var(--border);
    margin: 20px 0;
}

.sb-label {
    font-family: 'Lato', sans-serif;
    font-size: 0.62rem;
    color: var(--grey);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0 14px;
    margin-bottom: 6px;
}

.sb-cta {
    margin-top: 24px;
}

.sb-contact {
    font-family: 'Lato', sans-serif;
    font-size: 0.6rem;
    color: var(--grey);
    letter-spacing: 0.06em;
    margin-top: 20px;
    line-height: 1.8;
}

/* ── Mobile menu button ── */
.menu-btn {
    display: none;
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 200;
    width: 44px;
    height: 44px;
    background: var(--black-2);
    border: 1px solid var(--border);
    border-radius: 50%;
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.menu-btn span {
    display: block;
    width: 20px;
    height: 1.5px;
    background: var(--white);
    border-radius: 2px;
    transition: all var(--t);
}

.menu-btn.open span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}

.menu-btn.open span:nth-child(2) {
    opacity: 0;
}

.menu-btn.open span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}

/* ── Mobile overlay nav ── */
.mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 150;
    background: var(--black);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 60px 40px;
    gap: 8px;
}

.mobile-overlay.open {
    display: flex;
}

.mobile-overlay a {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.4rem;
    font-weight: 600;
    letter-spacing: 0em;
    color: var(--white);
}

.mobile-overlay a:hover {
    color: var(--lime);
}

.mobile-overlay .mo-tag {
    font-family: 'Lato', sans-serif;
    font-size: 0.7rem;
    color: var(--grey);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 20px;
    margin-top: 0;
}

.mobile-overlay .mo-sep {
    width: 40px;
    height: 1px;
    background: var(--border);
    margin: 16px 0;
}

.mobile-overlay .mo-contact {
    font-family: 'Lato', sans-serif;
    font-size: 0.75rem;
    color: var(--grey);
    margin-top: 24px;
}

/* ── HOMEPAGE HERO ── */
.hero-home {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    overflow: hidden;
}

.hero-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px 80px 48px;
    position: relative;
    z-index: 2;
}

.hero-text h1 {
    margin-bottom: 24px;
}

.hero-text h1 .lime {
    color: var(--lime);
}

.hero-text h1 .outline {
    -webkit-text-stroke: 2px var(--white);
    color: transparent;
}

.hero-text p {
    max-width: 420px;
    font-size: 1rem;
    margin-bottom: 36px;
}

.hero-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    filter: saturate(0.6);
    transition: transform 8s ease;
}

.hero-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, var(--black) 0%, transparent 30%);
    pointer-events: none;
}

.hero-scroll-hint {
    position: absolute;
    bottom: 40px;
    left: 48px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Lato', sans-serif;
    font-size: 0.68rem;
    color: var(--grey);
    letter-spacing: 0.1em;
}

.hero-scroll-line {
    width: 40px;
    height: 1px;
    background: var(--grey);
}

/* ── BENTO GRID ── */
.bento {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 200px;
    gap: 12px;
}

.bento-item {
    background: var(--black-2);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    overflow: hidden;
    position: relative;
    transition: border-color var(--t), transform var(--t);
}

.bento-item:hover {
    border-color: var(--border-lime);
    transform: translateY(-3px);
}

/* Spans */
.col-8 {
    grid-column: span 8;
}

.col-7 {
    grid-column: span 7;
}

.col-6 {
    grid-column: span 6;
}

.col-5 {
    grid-column: span 5;
}

.col-4 {
    grid-column: span 4;
}

.col-12 {
    grid-column: span 12;
}

.row-2 {
    grid-row: span 2;
}

.row-3 {
    grid-row: span 3;
}

/* Special bento cells */
.bento-hero-text {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.bento-hero-text h3 {
    font-size: clamp(1.3rem, 2vw, 1.8rem);
    margin-bottom: 8px;
}

.bento-hero-text p {
    font-size: 0.9rem;
    margin: 0;
}

.bento-img {
    padding: 0;
}

.bento-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.75;
    filter: saturate(0.5);
}

.bento-img:hover img {
    opacity: 0.9;
    filter: saturate(0.7);
}

.bento-stat {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.bento-stat .big {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    font-weight: 700;
    color: var(--lime);
    line-height: 1;
    letter-spacing: -0.04em;
}

.bento-stat .lbl {
    font-family: 'Lato', sans-serif;
    font-size: 0.68rem;
    color: var(--grey);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 8px;
}

.bento-lime {
    background: var(--lime);
    border-color: var(--lime);
}

.bento-lime h3,
.bento-lime p,
.bento-lime .tag {
    color: var(--black);
}



.bento-dark3 {
    background: var(--black-3);
}

.bento-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
}

.bento-link h4 {
    color: var(--white);
    font-size: 1.1rem;
}

.bento-arrow {
    font-size: 1.6rem;
    color: var(--lime);
    transition: transform var(--t);
}

.bento-item:hover .bento-arrow {
    transform: translateX(4px);
}

/* ── MARQUEE ── */
.marquee-wrap {
    overflow: hidden;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 20px 0;
    background: var(--black-2);
    white-space: nowrap;
}

.marquee-track {
    display: inline-flex;
    gap: 0;
    animation: marquee 22s linear infinite;
}

.marquee-item {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--grey);
    padding: 0 36px;
}

.marquee-item span {
    color: var(--lime);
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* ── FULL-SCREEN SECTION HEADER ── */
.page-intro {
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 64px;
    background: var(--black);
    border-bottom: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.page-intro::before {
    content: attr(data-bg-text);
    position: absolute;
    bottom: -20px;
    left: -10px;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(8rem, 18vw, 18rem);
    font-weight: 700;
    letter-spacing: -0.05em;
    color: rgba(255, 255, 255, 0.025);
    white-space: nowrap;
    line-height: 1;
    user-select: none;
    pointer-events: none;
}

.page-intro .container {
    position: relative;
    z-index: 2;
}

.page-intro h1 {
    margin-bottom: 20px;
    max-width: 800px;
}

.page-intro p {
    max-width: 560px;
}

/* ── SERVICE LIST (horizontal scroll cards) ── */
.service-scroll {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.srv-card {
    background: var(--black-2);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    transition: all var(--t);
    position: relative;
    overflow: hidden;
}

.srv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--lime);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--t);
}

.srv-card:hover::before {
    transform: scaleX(1);
}

.srv-card:hover {
    border-color: var(--border-lime);
    background: var(--black-3);
}

.srv-num {
    font-family: 'Lato', sans-serif;
    font-size: 0.72rem;
    color: var(--lime);
    letter-spacing: 0.08em;
    margin-bottom: 20px;
    display: block;
}

.srv-card h4 {
    color: var(--white);
    margin-bottom: 12px;
    font-size: 1.05rem;
}

.srv-card p {
    font-size: 0.88rem;
    color: var(--grey);
    margin: 0;
}

.srv-img {
    height: 160px;
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 20px;
}

.srv-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.5) brightness(0.75);
    transition: filter var(--t);
}

.srv-card:hover .srv-img img {
    filter: saturate(0.7) brightness(0.9);
}

/* ── TESTIMONIALS ── */
.testimonials-list {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.testi-row {
    display: grid;
    grid-template-columns: 220px 1fr 180px;
    gap: 32px;
    padding: 36px 0;
    border-bottom: 1px solid var(--border);
    align-items: start;
    transition: background var(--t);
}

.testi-row:hover {
    background: rgba(255, 255, 255, 0.02);
}

.testi-meta {}

.testi-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--lime), rgba(202, 255, 51, 0.3));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 800;
    font-size: 0.95rem;
    color: var(--black);
    margin-bottom: 12px;
}

.testi-name {
    font-weight: 600;
    color: var(--white);
    font-size: 0.9rem;
}

.testi-role {
    font-family: 'Lato', sans-serif;
    font-size: 0.65rem;
    color: var(--grey);
    letter-spacing: 0.06em;
    margin-top: 2px;
}

.testi-text {
    font-size: 0.95rem;
    color: var(--grey-lt);
    line-height: 1.8;
    font-style: italic;
}

.testi-stars {
    font-size: 0.8rem;
    color: var(--lime);
    text-align: right;
    padding-top: 8px;
}

.testi-division {
    font-family: 'Lato', sans-serif;
    font-size: 0.62rem;
    color: var(--grey);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-align: right;
    margin-top: 4px;
}

/* ── CONTACT LAYOUT ── */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
}

.contact-detail {
    border-bottom: 1px solid var(--border);
    padding: 24px 0;
}

.contact-detail .cd-label {
    font-family: 'Lato', sans-serif;
    font-size: 0.65rem;
    color: var(--grey);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.contact-detail .cd-value {
    color: var(--white);
    font-weight: 500;
    line-height: 1.7;
}

.contact-detail a {
    color: var(--lime);
}

.contact-detail a:hover {
    text-decoration: underline;
}

/* Form */
.cform {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cform-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.cform-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cform-group label {
    font-family: 'Lato', sans-serif;
    font-size: 0.65rem;
    color: var(--grey);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.cform-group input,
.cform-group textarea,
.cform-group select {
    background: var(--black-3);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 14px 16px;
    font-family: 'Lato', sans-serif;
    font-size: 0.93rem;
    color: var(--white);
    outline: none;
    transition: border-color var(--t);
}

.cform-group input::placeholder,
.cform-group textarea::placeholder {
    color: var(--grey);
}

.cform-group input:focus,
.cform-group textarea:focus,
.cform-group select:focus {
    border-color: var(--lime);
}

.cform-group select option {
    background: var(--black-3);
}

.cform-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* ── CTA SECTION ── */
.cta-block {
    background: var(--black-2);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 72px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.big-cta h2 {
    font-size: clamp(1.8rem, 3vw, 3rem);
    margin-bottom: 12px;
}

.big-cta p {
    color: var(--grey);
    margin: 0;
    font-size: 0.95rem;
}

/* ── FOOTER ── */
.site-footer {
    background: var(--black-2);
    border-top: 1px solid var(--border);
    padding: 48px 0;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-brand-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--white);
}

.footer-brand-text span {
    font-family: 'Lato', sans-serif;
    font-size: 0.6rem;
    font-weight: 400;
    color: var(--grey);
    letter-spacing: 0.1em;
    display: block;
    margin-top: 2px;
}

.footer-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-links a {
    font-size: 0.82rem;
    color: var(--grey);
}

.footer-links a:hover {
    color: var(--lime);
}

.footer-legal {
    font-family: 'Lato', sans-serif;
    font-size: 0.62rem;
    color: var(--grey);
    letter-spacing: 0.04em;
}

/* ── LEGAL ── */
.legal-wrap {
    max-width: 800px;
}

.legal-date {
    font-family: 'Lato', sans-serif;
    font-size: 0.68rem;
    color: var(--lime);
    letter-spacing: 0.08em;
    display: inline-block;
    border: 1px solid var(--border-lime);
    border-radius: 50px;
    padding: 4px 14px;
    margin-bottom: 40px;
}

.legal-wrap h2 {
    font-size: 1.1rem;
    margin: 44px 0 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
    color: var(--white);
}

.legal-wrap h2:first-of-type {
    margin-top: 0;
}

.legal-wrap p,
.legal-wrap li {
    font-size: 0.9rem;
    color: var(--grey-lt);
    line-height: 1.85;
}

.legal-wrap ul,
.legal-wrap ol {
    padding-left: 20px;
    margin-bottom: 16px;
}

.legal-wrap ul {
    list-style: disc;
}

.legal-wrap ol {
    list-style: decimal;
}

.legal-wrap li {
    margin-bottom: 8px;
}

.legal-wrap a {
    color: var(--lime);
}

/* ── PRELOADER ── */
.preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--black);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.pl-brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 0em;
    margin-bottom: 6px;
}

.pl-brand span {
    color: var(--lime);
}

.pl-sub {
    font-family: 'Lato', sans-serif;
    font-size: 0.62rem;
    color: var(--grey);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 32px;
}

.pl-bar {
    width: 80px;
    height: 1px;
    background: var(--border);
    overflow: hidden;
}

.pl-bar-fill {
    height: 100%;
    background: var(--lime);
    animation: plbar 1.2s ease forwards;
}

@keyframes plbar {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

/* ── ANIMATIONS ── */
.fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in {
    opacity: 0;
    transition: opacity 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
    :root {
        --sidebar-w: 220px;
    }

    .container,
    .container-wide {
        padding: 0 32px;
    }

    .bento {
        grid-auto-rows: 160px;
    }

    .hero-home {
        grid-template-columns: 1fr;
    }

    .hero-image {
        min-height: 320px;
    }
}

@media (max-width: 900px) {
    .sidebar {
        display: none;
    }

    .wrapper {
        margin-left: 0;
    }

    .menu-btn {
        display: flex;
    }

    .hero-home {
        grid-template-columns: 1fr;
    }

    .bento {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: auto;
    }

    .col-8,
    .col-7,
    .col-6,
    .col-5,
    .col-4,
    .col-12 {
        grid-column: span 2;
    }

    .row-2,
    .row-3 {
        grid-row: span 1;
    }

    .bento-item {
        min-height: 180px;
    }

    .service-scroll {
        grid-template-columns: 1fr;
    }

    .testi-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .testi-stars {
        text-align: left;
    }

    .contact-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .cta-block {
        flex-direction: column;
        padding: 48px 36px;
    }

    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .page-intro {
        min-height: 40vh;
    }

    .cform-row {
        grid-template-columns: 1fr;
    }

    .hero-text {
        padding: 80px 32px;
    }
}

@media (max-width: 600px) {

    .section,
    .section-lg {
        padding: 64px 0;
    }

    .bento {
        grid-template-columns: 1fr;
    }

    .col-8,
    .col-7,
    .col-6,
    .col-5,
    .col-4,
    .col-12 {
        grid-column: span 1;
    }

    .container,
    .container-wide {
        padding: 0 20px;
    }
}