/* ============================================================
   FRENCH CLIFF — PREMIUM REDESIGN v3.0
   Clean Light Theme | Gold Accent #A57649
   ============================================================ */

:root {
    --gold: #A57649;
    --gold-light: #c8956c;
    --gold-dark: #7a5535;
    --black: #111111;
    --dark: #1e1e1e;
    --cream: #faf7f2;
    --light: #f4f0ea;
    --white: #ffffff;
    --text: #2c2c2c;
    --text-light: #777777;
    --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ============================================================
   PRELOADER — Light premium
   ============================================================ */
#fc-preloader {
    position: fixed; inset: 0;
    background: var(--white);
    z-index: 99999;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center; gap: 18px;
    transition: opacity 0.7s var(--ease), visibility 0.7s ease;
}
#fc-preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.fc-loader-ring {
    width: 44px; height: 44px;
    border: 2px solid rgba(165,118,73,0.15);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: fc-spin 0.9s linear infinite;
}
@keyframes fc-spin { to { transform: rotate(360deg); } }

/* Scroll progress */
#fc-progress-bar {
    position: fixed; top: 0; left: 0; height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    width: 0%; z-index: 9999; transition: width 0.1s linear;
}

/* ============================================================
   HEADER
   ============================================================ */
.main-header { transition: all 0.4s ease; }
.main-header.scrolled .header-upper {
    background: rgba(255,255,255,0.97) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 2px 30px rgba(0,0,0,0.08) !important;
}
.navigation > li > a {
    letter-spacing: 0.06em !important;
    font-weight: 500 !important;
    transition: color 0.3s ease !important;
    font-size: 0.88rem !important;
    text-transform: uppercase !important;
}
.navigation > li > a:hover,
.navigation > li.current > a { color: var(--gold) !important; }

/* ============================================================
   HERO BANNER — FULL SCREEN
   ============================================================ */
.banner-section .swiper-slide {
    height: max(93vh, 620px) !important;
    min-height: max(93vh, 620px) !important;
    background-size: cover !important;
    background-position: center !important;
    position: relative;
}
.banner-section .swiper-slide > div[style*="rgba(0,0,0"],
.fc-slide-overlay {
    background: linear-gradient(
        170deg,
        rgba(0,0,0,0.05) 0%,
        rgba(0,0,0,0.0) 30%,
        rgba(0,0,0,0.5) 75%,
        rgba(0,0,0,0.78) 100%
    ) !important;
}
.fc-hero-overlay {
    position: absolute !important;
    bottom: 9% !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    text-align: center;
    z-index: 10;
    width: 88%;
    animation: fc-hero-rise 1.4s var(--ease) forwards;
    opacity: 0;
}
@keyframes fc-hero-rise {
    from { opacity: 0; transform: translateX(-50%) translateY(40px); }
    to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}
.fc-hero-overlay h1 {
    font-family: 'Crimson Text', serif !important;
    font-size: clamp(3rem, 7.5vw, 7.5rem) !important;
    color: #fff !important;
    text-shadow: 0 4px 50px rgba(0,0,0,0.4) !important;
    letter-spacing: -0.02em !important;
    line-height: 1.0 !important;
    margin-bottom: 18px !important;
    font-weight: 700 !important;
}
.fc-hero-overlay .fc-hero-sub {
    font-size: clamp(0.6rem, 0.9vw, 0.85rem) !important;
    color: rgba(255,255,255,0.85) !important;
    letter-spacing: 0.38em !important;
    text-transform: uppercase !important;
    margin-bottom: 34px !important;
    font-family: 'DM Sans', sans-serif !important;
    font-weight: 400 !important;
}
.fc-hero-cta {
    display: inline-block;
    padding: 16px 52px;
    background: var(--gold);
    color: #fff !important;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 700;
    border: 1px solid var(--gold);
    transition: all 0.4s var(--ease);
    position: relative;
    overflow: hidden;
    text-decoration: none !important;
}
.fc-hero-cta::after {
    content: '';
    position: absolute; inset: 0;
    background: #fff;
    transform: scaleX(0); transform-origin: right;
    transition: transform 0.4s var(--ease);
}
.fc-hero-cta:hover { color: var(--gold) !important; }
.fc-hero-cta:hover::after { transform: scaleX(1); transform-origin: left; }

/* Slider controls */
.banner-slider-control {
    background: rgba(255,255,255,0.15) !important;
    border: 1px solid rgba(255,255,255,0.35) !important;
    backdrop-filter: blur(8px) !important;
    transition: all 0.3s ease !important;
    border-radius: 50% !important;
}
.banner-slider-control:hover {
    background: var(--gold) !important;
    border-color: var(--gold) !important;
    transform: scale(1.08) !important;
}

/* ============================================================
   BRAND TICKER — Warm cream background
   ============================================================ */
.fc-ticker {
    background: var(--cream) !important;
    padding: 14px 0 !important;
    border-top: 1px solid rgba(165,118,73,0.18);
    border-bottom: 1px solid rgba(165,118,73,0.18);
}
.fc-ticker-inner {
    color: var(--gold) !important;
    font-size: 0.68rem !important;
    letter-spacing: 0.32em !important;
    animation: fc-ticker-scroll 22s linear infinite;
}
.fc-ticker-inner span { margin: 0 50px !important; }
.fc-ticker-inner span::before { content: '◆  '; opacity: 0.4; }
@keyframes fc-ticker-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ============================================================
   SECTION TITLES
   ============================================================ */
.sec-title {
    font-size: clamp(2.2rem, 4.5vw, 4rem) !important;
    line-height: 1.08 !important;
    letter-spacing: -0.025em !important;
    font-weight: 700 !important;
}
.sub-title {
    font-size: 0.68rem !important;
    letter-spacing: 0.32em !important;
    text-transform: uppercase !important;
    color: var(--gold) !important;
    font-family: 'DM Sans', sans-serif !important;
    font-weight: 600 !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
}
.sub-title::before { content: ''; width: 28px; height: 1px; background: var(--gold); display: inline-block; }

/* ============================================================
   WELCOME SECTION
   ============================================================ */
.welcome-section { padding: 100px 0 !important; }
.image-one, .image-two { overflow: hidden; }
.image-one img, .image-two img { transition: transform 0.8s var(--ease); }
.image-one:hover img, .image-two:hover img { transform: scale(1.05); }
.experience-year {
    background: var(--gold) !important;
    border-radius: 0 !important;
}
.experience-year h3 { color: #fff !important; font-family: 'Crimson Text', serif !important; font-size: 3.5rem !important; line-height: 1 !important; }
.welcome-section .text { font-size: 1.05rem; line-height: 1.9; color: var(--text-light); margin-bottom: 24px; }
.welcome-section .list li {
    font-size: 0.9rem; padding: 8px 0; letter-spacing: 0.02em; color: var(--text-light);
    display: flex; align-items: center; gap: 10px;
}

/* ============================================================
   SERVICES CAROUSEL
   ============================================================ */
.services-section { padding: 80px 0 !important; background: var(--white) !important; }
.service-block-one .inner-box {
    background: var(--white);
    border: 1px solid #f0ebe4;
    border-bottom: 3px solid transparent;
    border-radius: 0 !important;
    overflow: hidden;
    transition: all 0.45s var(--ease);
    box-shadow: 0 2px 16px rgba(0,0,0,0.05);
}
.service-block-one .inner-box:hover {
    border-bottom-color: var(--gold) !important;
    transform: translateY(-8px) !important;
    box-shadow: 0 24px 55px rgba(0,0,0,0.12) !important;
}
.service-block-one .image {
    overflow: hidden; position: relative;
    height: 280px;
}
.service-block-one .image img {
    width: 100%; height: 100%;
    object-fit: cover; border-radius: 0 !important;
    transition: transform 0.7s var(--ease);
}
.service-block-one .inner-box:hover .image img { transform: scale(1.08); }
.service-block-one h4 {
    font-family: 'Crimson Text', serif !important;
    font-size: 1.3rem !important;
    padding: 20px 20px 6px !important;
    margin: 0 !important;
}
.service-block-one h4 a { color: var(--dark) !important; text-decoration: none !important; }
.service-block-one h4 a:hover { color: var(--gold) !important; }
.service-block-one .text { padding: 0 20px 22px !important; font-size: 0.88rem; color: var(--text-light); line-height: 1.7; }

/* ============================================================
   FUNFACTS / STATS — Light cream background
   ============================================================ */
.funfacts-section {
    background: var(--cream) !important;
    padding: 90px 0 !important;
}
.funfacts-block {
    background: var(--white) !important;
    border: 1px solid #ede7dd !important;
    border-top: 3px solid transparent !important;
    border-radius: 0 !important;
    transition: all 0.4s var(--ease) !important;
    box-shadow: 0 2px 20px rgba(0,0,0,0.04) !important;
}
.funfacts-block:hover {
    border-top-color: var(--gold) !important;
    transform: translateY(-8px) !important;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1) !important;
}
.funfacts-block_number,
.count-outer { color: var(--gold) !important; }
.count-text { color: var(--gold) !important; font-family: 'Crimson Text', serif !important; font-size: 4rem !important; font-weight: 700 !important; line-height: 1 !important; }
.plus { color: var(--gold) !important; font-size: 2rem !important; font-family: 'Crimson Text', serif !important; }
.funfacts-block_title { color: var(--text) !important; font-size: 0.85rem !important; letter-spacing: 0.06em !important; margin-top: 10px !important; }
.funfacts-block_icon i { color: var(--gold) !important; font-size: 2.4rem !important; }

/* ============================================================
   SERVICES TWO — Light split layout
   ============================================================ */
.services-two-section .inner-container {
    padding: 70px 60px !important;
    background: var(--cream) !important;
}
.service-block-two {
    padding: 28px 20px;
    background: var(--white);
    border-top: 1px solid #f0ebe4;
    border-bottom: 3px solid transparent;
    transition: all 0.38s var(--ease);
    height: 100%;
}
.service-block-two:hover {
    border-bottom-color: var(--gold) !important;
    transform: translateY(-6px) !important;
    box-shadow: 0 16px 40px rgba(0,0,0,0.08) !important;
}
.service-block-two_icon i {
    color: var(--gold) !important;
    font-size: 2.2rem !important;
    transition: transform 0.35s var(--bounce) !important;
}
.service-block-two:hover .service-block-two_icon i { transform: scale(1.2) rotate(-6deg) !important; }
.service-block-two_title {
    font-family: 'Crimson Text', serif !important;
    font-size: 1.3rem !important;
    color: var(--dark) !important;
    margin: 14px 0 10px !important;
}
.service-block-two_text { color: var(--text-light) !important; font-size: 0.88rem !important; line-height: 1.75 !important; }
.services-two-section .btn-style-one {
    display: inline-block; padding: 16px 48px;
    background: var(--gold); color: #fff !important;
    font-family: 'DM Sans', sans-serif; font-size: 0.72rem;
    letter-spacing: 0.22em; text-transform: uppercase; font-weight: 700;
    border: 1px solid var(--gold); transition: all 0.35s var(--ease);
    text-decoration: none !important;
}
.services-two-section .btn-style-one:hover { background: transparent !important; color: var(--gold) !important; }

/* ============================================================
   TESTIMONIALS — Cream background
   ============================================================ */
.testimonials-section { background: var(--light) !important; }
.testimonial-block { padding: 60px !important; }
.testimonial-block_text {
    font-family: 'Crimson Text', serif !important;
    font-size: 1.45rem !important;
    line-height: 1.75 !important;
    font-style: italic !important;
    color: var(--dark) !important;
}
.testimonial-block_name { color: var(--gold) !important; letter-spacing: 0.15em !important; font-size: 0.78rem !important; text-transform: uppercase !important; margin-top: 16px !important; }

/* ============================================================
   GALLERY SECTION — hide social overlay
   ============================================================ */
.gallery-section-two { background: var(--white); padding: 80px 0; }
.gallery-section-two .card { border-radius: 0 !important; overflow: hidden; box-shadow: none !important; background: transparent !important; }
.gallery-section-two .card-img { transition: transform 0.6s var(--ease) !important; }
.gallery-section-two .card:hover .card-img { transform: scale(1.06) !important; }
.gallery-section-two .card-content,
.gallery-section-two .card-social { display: none !important; }
.gallery-section-two .member-info { display: none !important; }

/* ============================================================
   CTA SECTION — Gold accent, light
   ============================================================ */
.cta-section {
    background: var(--cream) !important;
    padding: 80px 0 !important;
    border-top: 1px solid #ede7dd;
    border-bottom: 1px solid #ede7dd;
}
.cta-block-one_icon i { color: var(--gold) !important; font-size: 2.5rem !important; }
.cta-block-one_text-two { color: var(--text-light) !important; font-size: 0.7rem !important; letter-spacing: 0.25em !important; text-transform: uppercase !important; margin: 10px 0 6px !important; }
.cta-block-one_phone { color: var(--gold) !important; font-family: 'Crimson Text', serif !important; font-size: 1.8rem !important; font-weight: 600 !important; text-decoration: none !important; transition: opacity 0.3s ease !important; }
.cta-block-one_phone:hover { opacity: 0.8 !important; }
.cta-block-one_inner-box { border-left: 1px solid #e0d9ce; padding-left: 50px; }
.cta-block-one_text { color: var(--text-light) !important; font-size: 1.05rem !important; line-height: 1.8 !important; margin-bottom: 28px !important; }

/* ============================================================
   WHATSAPP BUTTON
   ============================================================ */
.fc-whatsapp-btn {
    position: fixed; bottom: 88px; right: 22px; z-index: 1000;
    width: 56px; height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 24px rgba(37,211,102,0.4);
    animation: fc-wa-pulse 2.5s ease infinite;
    transition: transform 0.3s var(--bounce);
    text-decoration: none !important;
}
.fc-whatsapp-btn:hover { transform: scale(1.18) !important; }
.fc-whatsapp-btn img { width: 32px; height: 32px; border-radius: 0 !important; }
@keyframes fc-wa-pulse {
    0%,100% { box-shadow: 0 4px 24px rgba(37,211,102,0.4), 0 0 0 0 rgba(37,211,102,0.3); }
    50% { box-shadow: 0 4px 24px rgba(37,211,102,0.4), 0 0 0 14px rgba(37,211,102,0); }
}

/* ============================================================
   FOOTER — Dark (footer stays dark — industry standard)
   ============================================================ */
.main-footer {
    background: #111 !important;
    background-image: none !important;
    border-top: 1px solid rgba(165,118,73,0.2) !important;
}
.main-footer .about-widget_text { color: rgba(255,255,255,0.4) !important; line-height: 1.85 !important; font-size: 0.88rem !important; }
.main-footer .widget-title {
    color: #fff !important;
    font-family: 'Crimson Text', serif !important;
    font-size: 1.1rem !important;
    letter-spacing: 0.06em !important;
    margin-bottom: 20px !important;
    padding-bottom: 12px !important;
    border-bottom: 1px solid rgba(165,118,73,0.18) !important;
}
.main-footer .widget-content ul li { margin-bottom: 8px !important; }
.main-footer .widget-content ul li a {
    color: rgba(255,255,255,0.4) !important; font-size: 0.88rem !important;
    transition: color 0.3s ease, padding-left 0.3s ease !important;
    letter-spacing: 0.02em !important; text-decoration: none !important;
}
.main-footer .widget-content ul li a:hover { color: var(--gold) !important; padding-left: 6px !important; }
.main-footer .about-widget_social-links {
    display: flex !important; flex-wrap: wrap !important;
    gap: 10px !important; list-style: none !important;
    padding: 0 !important; margin-top: 22px !important;
}
.main-footer .about-widget_social-links li a {
    color: rgba(255,255,255,0.4) !important;
    width: 38px; height: 38px;
    border: 1px solid rgba(255,255,255,0.12) !important;
    border-radius: 50% !important;
    display: flex !important; align-items: center !important; justify-content: center !important;
    transition: all 0.3s var(--ease) !important;
    font-size: 0.88rem !important;
}
.main-footer .about-widget_social-links li a:hover {
    background: var(--gold) !important; border-color: var(--gold) !important;
    color: #fff !important; transform: translateY(-3px) !important;
}
.contact-widget_mail-title { color: rgba(255,255,255,0.3) !important; font-size: 0.65rem !important; letter-spacing: 0.25em !important; text-transform: uppercase !important; margin-bottom: 8px !important; }
.contact-widget_mail a { color: rgba(255,255,255,0.55) !important; font-size: 0.95rem !important; transition: color 0.3s ease !important; text-decoration: none !important; }
.contact-widget_mail a:hover { color: var(--gold) !important; }
.footer-bottom { background: #0a0a0a !important; border-top: 1px solid rgba(255,255,255,0.05) !important; padding: 20px 0 !important; }
.footer-bottom .copyright { color: rgba(255,255,255,0.22) !important; font-size: 0.75rem !important; letter-spacing: 0.1em !important; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.fc-reveal {
    animation: fcRevealUp 0.9s var(--ease) both;
}
.fc-reveal.fc-visible { opacity: 1; transform: translateY(0); }
.fc-reveal-left {
    animation: fcRevealLeft 0.9s var(--ease) both;
}
.fc-reveal-left.fc-visible { opacity: 1; transform: translateX(0); }
.fc-reveal-right {
    animation: fcRevealRight 0.9s var(--ease) both;
}
.fc-reveal-right.fc-visible { opacity: 1; transform: translateX(0); }

@keyframes fcRevealUp   { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fcRevealLeft  { from { opacity: 0; transform: translateX(-45px); } to { opacity: 1; transform: translateX(0); } }
@keyframes fcRevealRight { from { opacity: 0; transform: translateX(45px);  } to { opacity: 1; transform: translateX(0); } }

/* ============================================================
   BUTTONS
   ============================================================ */
.theme-btn, .btn-style-one, .btn-style-two {
    letter-spacing: 0.14em !important;
    font-weight: 700 !important;
    transition: all 0.38s var(--ease) !important;
    border-radius: 0 !important;
}
.theme-btn:hover, .btn-style-one:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 12px 32px rgba(165,118,73,0.32) !important;
}
.btn-style-two {
    background: transparent !important;
    border: 2px solid var(--gold) !important;
    color: var(--gold) !important;
}
.btn-style-two:hover { background: var(--gold) !important; color: #fff !important; }
.btn-style-two span { color: inherit !important; }

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-form .form-control {
    border: none !important;
    border-bottom: 1px solid #ddd !important;
    border-radius: 0 !important;
    padding: 14px 4px !important;
    background: transparent !important;
    font-size: 0.95rem !important;
    transition: border-color 0.3s ease !important;
    box-shadow: none !important;
}
.contact-form .form-control:focus {
    border-bottom-color: var(--gold) !important;
    box-shadow: 0 1px 0 var(--gold) !important;
    outline: none !important;
}
.contact-form .form-control::placeholder { color: #bbb !important; font-size: 0.88rem !important; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.bar { background: #e8e2da !important; border-radius: 0 !important; height: 3px !important; }
.bar-fill { background: var(--gold) !important; border-radius: 0 !important; transition: width 2s var(--ease) !important; }

/* ============================================================
   CATALOGUE PAGE — Clean editorial grid
   ============================================================ */
.fc-catalogue-section { padding: 80px 0; background: var(--white); }
.fc-cat-header { margin-bottom: 50px; }
.fc-cat-header .sub-title { margin-bottom: 14px; }
.fc-cat-header .sec-title { font-family: 'Crimson Text', serif; color: var(--dark); }

/* Filter buttons */
.fc-cat-filters {
    display: flex; justify-content: center;
    gap: 8px; flex-wrap: wrap; margin-bottom: 50px;
}
.fc-filter-btn {
    padding: 10px 28px;
    border: 1px solid #ddd;
    background: transparent;
    color: var(--text-light);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 600;
    cursor: pointer;
    border-radius: 0;
    transition: all 0.3s var(--ease);
}
.fc-filter-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
}
.fc-filter-btn.active {
    background: var(--gold);
    border-color: var(--gold);
    color: #fff;
}

/* Grid — 4 column, uniform height cards */
.fc-masonry-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}
.fc-masonry-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background: var(--cream);
    aspect-ratio: 3/4;
}
.fc-masonry-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.65s var(--ease);
}
.fc-masonry-item:hover img { transform: scale(1.08); }

/* Hover overlay */
.fc-img-overlay {
    position: absolute; inset: 0;
    background: rgba(17,17,17,0);
    opacity: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.4s var(--ease);
    color: #fff;
}
.fc-img-overlay i {
    font-size: 1.6rem;
    transform: translateY(14px);
    transition: transform 0.4s var(--ease);
}
.fc-img-overlay span {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    transform: translateY(14px);
    transition: transform 0.4s var(--ease) 0.05s;
}
.fc-masonry-item:hover .fc-img-overlay {
    background: rgba(17,17,17,0.45);
    opacity: 1;
}
.fc-masonry-item:hover .fc-img-overlay i,
.fc-masonry-item:hover .fc-img-overlay span { transform: translateY(0); }

/* Load more button */
.fc-load-more { min-width: 220px; margin-top: 28px; }

/* Lightbox */
.fc-lightbox { display: none; position: fixed; inset: 0; z-index: 999999; align-items: center; justify-content: center; }
.fc-lightbox.active { display: flex; }
.fc-lightbox-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.95); cursor: pointer; }
.fc-lightbox-content { position: relative; z-index: 2; max-width: 90vw; max-height: 90vh; display: flex; align-items: center; justify-content: center; }
.fc-lb-img { max-width: 88vw; max-height: 88vh; object-fit: contain; box-shadow: 0 30px 100px rgba(0,0,0,0.9); animation: fc-lb-appear 0.35s var(--ease); }
@keyframes fc-lb-appear { from { opacity: 0; transform: scale(0.92); } to { opacity: 1; transform: scale(1); } }
.fc-lb-close { position: fixed; top: 22px; right: 26px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); color: #fff; width: 44px; height: 44px; border-radius: 50%; font-size: 1rem; cursor: pointer; transition: all 0.3s ease; display: flex; align-items: center; justify-content: center; }
.fc-lb-close:hover { background: var(--gold); border-color: var(--gold); transform: rotate(90deg); }
.fc-lb-prev, .fc-lb-next { position: fixed; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.25); color: #fff; width: 50px; height: 50px; border-radius: 50%; font-size: 1rem; cursor: pointer; transition: all 0.3s ease; display: flex; align-items: center; justify-content: center; z-index: 3; }
.fc-lb-prev { left: 22px; } .fc-lb-next { right: 22px; }
.fc-lb-prev:hover, .fc-lb-next:hover { background: var(--gold); border-color: var(--gold); transform: translateY(-50%) scale(1.1); }
.fc-lb-counter { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,0.35); font-family: 'DM Sans', sans-serif; font-size: 0.78rem; letter-spacing: 0.18em; }

/* About page custom sections */
.fc-brand-story {
    background: var(--cream);
    padding: 100px 0;
}
.fc-stats-strip {
    background: var(--gold);
    padding: 50px 0;
}
.fc-stats-strip .stat-number {
    font-family: 'Crimson Text', serif;
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}
.fc-stats-strip .stat-label {
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.8);
    margin-top: 8px;
    font-family: 'DM Sans', sans-serif;
}
.fc-dna-section { background: var(--white); padding: 90px 0; }
.fc-dna-card {
    text-align: center;
    padding: 40px 28px;
    border: 1px solid #f0ebe4;
    transition: all 0.4s var(--ease);
}
.fc-dna-card:hover {
    border-color: var(--gold);
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.08);
}
.fc-dna-card i {
    font-size: 2.4rem;
    color: var(--gold);
    margin-bottom: 18px;
    display: block;
}
.fc-dna-card h5 {
    font-family: 'Crimson Text', serif;
    font-size: 1.3rem;
    color: var(--dark);
    margin-bottom: 10px;
}
.fc-dna-card p { font-size: 0.88rem; color: var(--text-light); line-height: 1.75; }
.fc-b2b-cta {
    background: var(--cream);
    padding: 90px 0;
    text-align: center;
    border-top: 1px solid #e8e2da;
}

/* Catalogue hero */
.fc-catalogue-hero {
    background: var(--cream);
    padding: 80px 0 60px;
    text-align: center;
    border-bottom: 1px solid #e8e2da;
}
.fc-catalogue-hero h1 {
    font-family: 'Crimson Text', serif;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    color: var(--dark);
    letter-spacing: -0.02em;
    font-weight: 700;
    margin-bottom: 16px;
}
.fc-catalogue-hero p {
    color: var(--text-light);
    font-size: 1rem;
    max-width: 480px;
    margin: 0 auto 0;
    line-height: 1.7;
}
.fc-cat-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 40px;
    padding-top: 36px;
    border-top: 1px solid #e8e2da;
}
.fc-cat-stat-num {
    font-family: 'Crimson Text', serif;
    font-size: 2.2rem;
    color: var(--gold);
    font-weight: 700;
    line-height: 1;
}
.fc-cat-stat-label {
    font-size: 0.65rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-top: 6px;
    font-family: 'DM Sans', sans-serif;
}

/* Wholesale CTA */
.fc-wholesale-cta {
    background: var(--gold);
    padding: 80px 0;
    text-align: center;
}
.fc-wholesale-cta h2 {
    font-family: 'Crimson Text', serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    color: #fff;
    font-weight: 700;
    margin-bottom: 14px;
}
.fc-wholesale-cta p { color: rgba(255,255,255,0.85); font-size: 1rem; margin-bottom: 32px; }
.fc-wholesale-cta .fc-cta-btn {
    display: inline-block;
    padding: 16px 52px;
    background: #fff;
    color: var(--gold) !important;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 700;
    border: 2px solid #fff;
    transition: all 0.35s var(--ease);
    text-decoration: none !important;
}
.fc-wholesale-cta .fc-cta-btn:hover {
    background: transparent !important;
    color: #fff !important;
}

/* ============================================================
   MOBILE RESPONSIVE
   ============================================================ */
@media (max-width: 1200px) {
    .fc-masonry-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 991px) {
    .services-two-section .inner-container { padding: 40px 28px !important; }
    .cta-block-one_inner-box { border-left: none !important; padding-left: 0 !important; border-top: 1px solid #e0d9ce !important; padding-top: 30px !important; margin-top: 24px !important; }
    .fc-cat-stats { gap: 30px; }
}
@media (max-width: 768px) {
    .banner-section .swiper-slide { height: max(72vh, 420px) !important; min-height: 420px !important; }
    .fc-hero-overlay h1 { font-size: clamp(2.2rem, 9vw, 3.8rem) !important; }
    .fc-hero-overlay .fc-hero-sub { letter-spacing: 0.22em !important; font-size: 0.6rem !important; }
    .fc-hero-cta { padding: 13px 32px !important; font-size: 0.68rem !important; }
    .header-top { display: none !important; }
    .sec-title { font-size: clamp(1.9rem, 6vw, 2.8rem) !important; }
    .fc-masonry-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 8px !important; }
    .fc-filter-btn { padding: 8px 16px !important; font-size: 0.68rem !important; }
    .funfacts-block { margin-bottom: 16px !important; }
    .welcome-section { padding: 60px 0 !important; }
    .main-footer .column { margin-bottom: 28px !important; }
    .count-text { font-size: 2.8rem !important; }
    .fc-lb-prev { left: 8px !important; }
    .fc-lb-next { right: 8px !important; }
    .fc-cat-stats { flex-wrap: wrap; gap: 24px; }
}
@media (max-width: 480px) {
    .banner-section .swiper-slide { height: max(65vh, 360px) !important; min-height: 360px !important; }
    .fc-masonry-grid { grid-template-columns: repeat(2, 1fr) !important; }
    .fc-ticker-inner span { margin: 0 22px !important; }
    .count-text { font-size: 2.2rem !important; }
    .funfacts-section { padding: 60px 0 !important; }
}

