/* Fresh Market 2026 - Main Stylesheet */

:root {
    /* Colors */
    --background: hsl(0, 0%, 100%);
    --background-muted: hsl(45, 15%, 92%);
    --foreground: hsl(200, 25%, 15%);
    --text-muted: hsl(200, 10%, 45%);
    
    /* Deep Teal Green - Primary Brand */
    --primary: hsl(168, 45%, 28%);
    --primary-rgb: 43, 109, 98;
    --primary-foreground: hsl(0, 0%, 100%);
    --primary-dark: hsl(168, 50%, 22%);
    --primary-light: hsl(168, 40%, 38%);
    
    /* Warm Orange - Action Color */
    --accent: hsl(24, 95%, 53%);
    --accent-foreground: hsl(0, 0%, 100%);
    --accent-hover: hsl(24, 95%, 45%);
    
    --card: hsl(0, 0%, 100%);
    --card-foreground: hsl(200, 25%, 15%);
    
    --muted: hsl(45, 15%, 92%);
    --muted-foreground: hsl(200, 10%, 45%);
    --border: hsl(45, 20%, 88%);
    
    /* Gradients */
    --gradient-hero: linear-gradient(135deg, hsl(168, 50%, 22%) 0%, hsl(168, 40%, 32%) 50%, hsl(160, 35%, 25%) 100%);
    
    /* Shadows */
    --shadow-sm: 0 2px 8px -2px hsla(200, 25%, 15%, 0.08);
    --shadow-md: 0 8px 24px -8px hsla(200, 25%, 15%, 0.12);
    --shadow-lg: 0 16px 48px -12px hsla(200, 25%, 15%, 0.15);
    --shadow-card: 0 4px 20px -4px hsla(200, 25%, 15%, 0.1);
    --shadow-card-hover: 0 12px 40px -8px hsla(200, 25%, 15%, 0.18);
    
    /* Typography */
    --font-serif: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    --font-sans: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background: #fff;
    color: var(--foreground);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 600;
    letter-spacing: -0.02em;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header */
.header {
    width: 100%;
}

/* Top Bar - Gradient Background */
.gradient-hero {
    background: var(--gradient-hero);
    color: var(--primary-foreground);
}

.top-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

/* Logo Section */
.logo-section {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-year {
    font-family: var(--font-serif);
    font-size: 1.875rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.logo-year .opacity-80 {
    opacity: 0.8;
}

.logo-text {
    font-family: var(--font-serif);
    font-size: 1.875rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.logo-diamond {
    color: var(--accent);
    margin: 0 0.25rem;
}

/* Event Info */
.event-info {
    text-align: right;
}

.event-info .edition {
    font-size: 0.875rem;
    opacity: 0.8;
    margin-bottom: 0.25rem;
}

.event-info .date {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.event-info .location {
    font-size: 1.125rem;
}

.event-info .bold {
    font-weight: 700;
}

/* Navigation */
.navbar {
    background: white;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.lang-link {
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    color: var(--foreground);
    border: 1px solid hsl(0, 0%, 85%);
    border-radius: 6px;
    padding: 4px 8px;
    background: white;
    transition: opacity 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.lang-link.muted {
    color: var(--muted-foreground);
    opacity: 0.7;
}

.lang-link:hover {
    opacity: 1;
    border-color: hsl(0, 0%, 70%);
    background: hsl(0, 0%, 98%);
}

/* Desktop Navigation */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--foreground);
    text-decoration: none;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: var(--primary);
}

/* Dropdown Menu */
.has-dropdown {
    position: relative;
}

.dropdown-menu {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    min-width: 220px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    list-style: none;
    margin: 0;
    padding: 0.5rem 0;
    z-index: 1000;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    pointer-events: none;
}

/* Hover area - makes it easier to move mouse to dropdown */
.has-dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: -10px;
    right: -10px;
    height: 20px;
    display: none;
}

.has-dropdown:hover::after {
    display: block;
}

.has-dropdown:hover .dropdown-menu,
.has-dropdown .dropdown-menu:hover {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.25rem;
    color: var(--foreground);
    text-decoration: none;
    font-size: 0.875rem;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.dropdown-menu a:hover {
    background-color: hsl(168, 45%, 95%);
    color: var(--primary);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    color: var(--foreground);
}

.menu-icon {
    width: 1.5rem;
    height: 1.5rem;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    z-index: 999;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-btn.active .menu-icon {
    transform: rotate(90deg);
}

.mobile-menu-content {
    padding: 1rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-menu-item {
    display: block;
    color: var(--foreground);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.mobile-menu-item:hover {
    color: var(--primary);
}

.mobile-menu-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border);
}

.mobile-menu-subitem {
    display: block;
    color: var(--muted-foreground);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 400;
    padding-left: 0.5rem;
    transition: color 0.2s ease;
}

.mobile-menu-subitem:hover {
    color: var(--primary);
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 700px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, 
        hsla(168, 50%, 22%, 0.9) 0%, 
        hsla(168, 45%, 28%, 0.8) 50%, 
        transparent 100%
    );
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 42rem;
    padding: 4rem 0;
}

.hero-title {
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--primary-foreground);
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    color: var(--primary-foreground);
    opacity: 0.9;
    margin-bottom: 1rem;
}

.hero-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.hero-date {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    font-weight: 700;
    color: var(--accent);
}

.hero-separator {
    color: var(--primary-foreground);
    opacity: 0.8;
}

.hero-location {
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: var(--primary-foreground);
    opacity: 0.9;
}

.hero-info {
    color: var(--primary-foreground);
    opacity: 0.8;
    margin-bottom: 2rem;
}

.hero-btn {
    display: inline-block;
    background: var(--accent);
    color: var(--accent-foreground);
    font-weight: 600;
    font-size: 1.125rem;
    padding: 1.5rem 2rem;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.3);
}

.hero-btn:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 15px 50px -10px rgba(0, 0, 0, 0.4);
}

/* Sponsors Section */
.sponsors-section {
    padding: 3rem 0;
    background: hsl(0, 0%, 98%);
}

.sponsors-line {
    height: 4px;
    background: linear-gradient(to right, #1a5c38, #2d8659, #1a5c38);
    border-radius: 9999px;
    margin-bottom: 2rem;
}

.section-title-center {
    text-align: center;
    font-size: 1.5rem;
    font-family: var(--font-serif);
    font-weight: 700;
    margin-bottom: 2.5rem;
}

.sponsors-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    align-items: center;
    justify-items: center;
}

@media (min-width: 768px) {
    .sponsors-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.sponsor-box {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background: white;
    border-radius: 8px;
    border: 1px solid hsl(0, 0%, 90%);
    width: 100%;
    max-width: 200px;
    height: 96px;
    transition: all 0.3s;
}

.sponsor-box:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.sponsor-box span {
    font-size: 1.125rem;
    font-weight: 700;
    letter-spacing: -0.025em;
}

.sponsor-logo {
    max-width: 100%;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* Meet The Market Section */
.meet-market-section {
    padding: 4rem 0;
    background: white;
}

@media (min-width: 1024px) {
    .meet-market-section {
        padding: 6rem 0;
    }
}

.two-col-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .two-col-grid {
        grid-template-columns: 30% 70%;
    }
}

.meet-market-image img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.section-heading {
    font-size: 1.875rem;
    font-family: var(--font-serif);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

@media (min-width: 1024px) {
    .section-heading {
        font-size: 2.25rem;
    }
}

.accent-line {
    width: 64px;
    height: 4px;
    background: #FFD700;
    border-radius: 9999px;
    margin-bottom: 1.5rem;
}

.border-line {
    width: 64px;
    height: 4px;
    background: hsl(0, 0%, 90%);
    border-radius: 9999px;
    margin-bottom: 1.5rem;
}

.content-text {
    color: hsl(0, 0%, 45%);
    line-height: 1.7;
}

.content-text p {
    margin-bottom: 1rem;
}

.content-text strong {
    color: hsl(0, 0%, 9%);
}

.text-primary {
    color: #1a5c38;
    font-weight: 600;
}

/* Countdown Section */
.countdown-section {
    padding: 3rem 0;
    background: linear-gradient(135deg, #1a5c38, #2d8659);
}

@media (min-width: 1024px) {
    .countdown-section {
        padding: 4rem 0;
    }
}

.countdown-flex {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .countdown-flex {
        flex-direction: row;
    }
}

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

@media (min-width: 1024px) {
    .countdown-left {
        text-align: left;
    }
}

.countdown-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.countdown-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
}

@media (min-width: 1024px) {
    .countdown-title {
        font-size: 1.5rem;
    }
}

.countdown-timer {
    display: flex;
    gap: 1rem;
}

.countdown-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    min-width: 70px;
}

.countdown-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    display: block;
}

@media (min-width: 1024px) {
    .countdown-value {
        font-size: 1.875rem;
    }
}

.countdown-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.5rem;
    display: block;
}

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

@media (min-width: 1024px) {
    .countdown-right {
        text-align: right;
    }
}

.cta-title {
    font-size: 1.5rem;
    font-family: var(--font-serif);
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

@media (min-width: 1024px) {
    .cta-title {
        font-size: 1.875rem;
    }
}

.btn-white {
    display: inline-block;
    padding: 0.875rem 2rem;
    background: white;
    color: #1a5c38;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-white:hover {
    background: rgba(255, 255, 255, 0.9);
}

/* Connect Section */
.connect-section {
    padding: 4rem 0;
    background: white;
}

@media (min-width: 1024px) {
    .connect-section {
        padding: 6rem 0;
    }
}

.video-title {
    font-size: 1.5rem;
    font-family: var(--font-serif);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.video-placeholder {
    position: relative;
    aspect-ratio: 16 / 9;
    border-radius: 1rem;
    overflow: hidden;
    background: linear-gradient(135deg, #1a5c38, #2d8659);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.video-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
}

.play-button {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.play-button::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 24px solid white;
    border-top: 16px solid transparent;
    border-bottom: 16px solid transparent;
    margin-left: 8px;
}

.video-text-main {
    font-weight: 600;
}

.video-text-sub {
    font-size: 0.875rem;
    opacity: 0.8;
}

.video-caption {
    font-size: 0.875rem;
    color: hsl(0, 0%, 45%);
    margin-top: 0.75rem;
    text-align: center;
}

/* Retail Chains Section */
.retail-chains-section {
    padding: 4rem 0;
    background: hsl(0, 0%, 98%);
}

@media (min-width: 1024px) {
    .retail-chains-section {
        padding: 5rem 0;
    }
}

.retail-slider {
    position: relative;
    margin-top: 2rem;
}

.retail-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(200px, 1fr);
    grid-template-rows: repeat(3, 120px);
    gap: 1rem 1rem;
    overflow: hidden;
    scroll-behavior: smooth;
    padding: 0.25rem 0.5rem;
}

.retail-card {
    background: white;
    border-radius: 10px;
    border: 1px solid hsl(0, 0%, 90%);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 1rem 0.75rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.retail-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
    border-color: rgba(26, 92, 56, 0.25);
}

.retail-card img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
}

.retail-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: none;
    background: white;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    color: #1a5c38;
    font-size: 1.5rem;
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.retail-nav:hover {
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    background: #f7f7f7;
}

.retail-nav.prev {
    left: -20px;
}

.retail-nav.next {
    right: -20px;
}

@media (max-width: 767px) {
    .retail-track {
        grid-auto-columns: minmax(180px, 80%);
        grid-template-rows: repeat(3, 110px);
        gap: 0.75rem;
    }

    .retail-nav.prev {
        left: -10px;
    }

    .retail-nav.next {
        right: -10px;
    }
}

/* Logo slider (Page Builder block) */
.fm-logo-slider {
    padding: 2rem 0;
    background: hsl(0, 0%, 98%);
}

.fm-logo-track {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 1200px) {
    .fm-logo-track {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .fm-logo-track {
        grid-template-columns: repeat(2, 1fr);
    }
}

.fm-logo-item {
    background: #fff;
    border: 1px solid hsl(0, 0%, 90%);
    border-radius: 10px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 0.75rem;
    box-shadow: var(--shadow-sm);
}

.fm-logo-item img {
    display: block;
    max-height: 60px;
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.participants-section {
    padding: 4rem 0 2rem;
}

@media (min-width: 1024px) {
    .participants-section {
        padding: 5rem 0 3rem;
    }
}

.participants-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(2, minmax(140px, 1fr));
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 640px) {
    .participants-grid {
        grid-template-columns: repeat(3, minmax(160px, 1fr));
    }
}

@media (min-width: 1024px) {
    .participants-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 1.25rem;
    }
}

.participant-card {
    background: white;
    border: 1px solid hsl(0, 0%, 92%);
    border-radius: 10px;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.participant-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
    border-color: rgba(26, 92, 56, 0.25);
}

.participant-card img {
    max-width: 100%;
    max-height: 70px;
    object-fit: contain;
}

.why-attend-section {
    padding: 4rem 0;
}

@media (min-width: 1024px) {
    .why-attend-section {
        padding: 5rem 0;
    }
}

.why-grid {
    display: grid;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 992px) {
    .why-grid {
        grid-template-columns: 1fr 1.1fr;
        gap: 2.5rem;
    }
}

.why-text {
    background: white;
    border: 1px solid hsl(0, 0%, 92%);
    border-radius: 12px;
    padding: 1.75rem;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

.why-text ul {
    margin: 1.25rem 0 0;
    padding-left: 1.1rem;
    display: grid;
    gap: 0.6rem;
}

.why-text li {
    line-height: 1.5;
}

.why-image img {
    width: 100%;
    height: 100%;
    max-height: 520px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.reviews-section {
    padding: 4rem 0;
}

@media (min-width: 1024px) {
    .reviews-section {
        padding: 5rem 0;
    }
}

.reviews-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .reviews-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.review-card {
    background: white;
    border: 1px solid hsl(0, 0%, 92%);
    border-radius: 12px;
    padding: 1.25rem;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    min-height: 240px;
}

.review-text {
    font-size: 0.98rem;
    line-height: 1.5;
    color: #222;
    flex: 1;
}

.review-logo {
    max-width: 160px;
    max-height: 60px;
    object-fit: contain;
}

.review-logo-placeholder {
    width: 120px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 0.5rem;
    letter-spacing: 0.05em;
}

.review-author {
    font-weight: 700;
}

.review-company {
    font-size: 0.95rem;
    color: #444;
}

.reviews-cta {
    margin-top: 2rem;
    text-align: center;
}

.latest-news-section {
    padding: 4rem 0;
}

@media (min-width: 1024px) {
    .latest-news-section {
        padding: 5rem 0;
    }
}

.news-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 900px) {
    .news-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.news-card {
    background: white;
    border: 1px solid hsl(0, 0%, 90%);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
    display: grid;
    grid-template-rows: auto auto 1fr;
    gap: 0.75rem;
}

.news-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.news-meta {
    padding: 0 1rem;
    font-size: 0.9rem;
    color: #666;
}

.news-title {
    padding: 0 1rem;
    font-size: 1.05rem;
    line-height: 1.4;
    font-weight: 700;
}

.news-excerpt {
    padding: 0 1rem 1.25rem;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #333;
}

@media (min-width: 768px) {
    .retail-box span {
        font-size: 1rem;
    }
}

/* Areas Section */
.areas-section {
    padding: 4rem 0;
    background: white;
}

@media (min-width: 1024px) {
    .areas-section {
        padding: 6rem 0;
    }
}

.section-header-line {
    margin-bottom: 3rem;
}

.section-header-line h2 {
    margin-bottom: 1.5rem;
}

.section-header-line::after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background: hsl(0, 0%, 90%);
}

.areas-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .areas-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.area-card {
    display: flex;
    flex-direction: column;
}

.area-image-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.area-image-wrapper img {
    width: 100%;
    height: 192px;
    object-fit: cover;
    transition: transform 0.5s;
}

.area-card:hover .area-image-wrapper img {
    transform: scale(1.05);
}

.area-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3));
}

.area-title {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-family: var(--font-serif);
    font-weight: 700;
    color: white;
    text-align: center;
    padding: 1rem;
}

.area-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.area-content h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: hsl(0, 0%, 9%);
}

.area-content p {
    color: hsl(0, 0%, 45%);
    font-size: 0.875rem;
    line-height: 1.7;
}

.btn-accent {
    display: inline-block;
    padding: 0.625rem 1.25rem;
    background: #FFD700;
    color: hsl(0, 0%, 9%);
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 0.875rem;
    text-align: center;
}

.btn-accent:hover {
    background: #FFC700;
}

/* How To Join Section */
.how-to-join-section {
    padding: 4rem 0;
    background: hsl(0, 0%, 98%);
}

@media (min-width: 1024px) {
    .how-to-join-section {
        padding: 6rem 0;
    }
}

.join-grid {
    display: grid;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .join-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.join-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s;
}

.join-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.join-card > img {
    width: 100%;
    height: 256px;
    object-fit: cover;
}

.join-card-content {
    padding: 2rem;
}

.join-card-content h3 {
    font-size: 1.5rem;
    font-family: var(--font-serif);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.join-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.join-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: hsl(0, 0%, 45%);
    font-size: 0.875rem;
    line-height: 1.7;
}

.join-list li::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #FFD700;
    border-radius: 50%;
    margin-top: 8px;
    flex-shrink: 0;
}

/* Footer */
.footer-section {
    color: white;
}

.footer-content {
    padding: 4rem 0;
}

.footer-grid {
    display: grid;
    gap: 3rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-brand {
    grid-column: span 1;
}

@media (min-width: 1024px) {
    .footer-brand {
        grid-column: span 2;
    }
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.footer-logo img {
    height: 60px;
    width: auto;
}

.footer-logo-text {
    font-size: 1.875rem;
    font-family: var(--font-serif);
    font-weight: 700;
}

.footer-year {
    font-size: 1.5rem;
    opacity: 0.8;
}

.footer-year-small {
    font-size: 1.5rem;
    opacity: 0.8;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    max-width: 28rem;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transition: background 0.3s;
    text-decoration: none;
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.2);
}

.footer-heading {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 0.75rem;
}

.footer-menu a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-menu a:hover {
    color: white;
}

.footer-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-info-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
}

.footer-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-info-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-info-item a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
    padding: 1.5rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

@media (min-width: 768px) {
    .footer-bottom-content {
        flex-direction: row;
    }
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-legal a:hover {
    color: white;
}

/* Responsive */
@media (max-width: 1024px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .mobile-menu {
        display: block;
    }
    
    .mobile-menu.active {
        display: block;
    }
    
    .event-info {
        display: none;
    }
    
    .hero-section {
        min-height: 600px;
    }
}

@media (max-width: 768px) {
    .top-bar {
        justify-content: center;
    }
    
    .logo-section {
        flex-direction: column;
        gap: 0.25rem;
        text-align: center;
    }
    
    .hero-section {
        min-height: 500px;
    }
    
    .hero-content {
        padding: 2rem 0;
    }
    
    .hero-btn {
        width: 100%;
        text-align: center;
    }
}

/* Animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-up {
    animation: fadeUp 0.8s ease-out forwards;
}

/* Utility Classes */
.alert {
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-danger {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.alert-warning {
    background: #fff3cd;
    color: #856404;
    border: 1px solid #ffeaa7;
}

.alert-info {
    background: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

/* Page Utilities */
.page-title {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-section {
    position: relative;
    padding: 5rem 0;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 1rem;
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
}

.card:hover {
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-2px);
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 9999px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-family: var(--font-sans);
}

.btn-primary {
    background: var(--primary);
    color: var(--primary-foreground);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-secondary {
    background: white;
    color: var(--primary);
}

.btn-secondary:hover {
    background: hsl(0, 0%, 95%);
    transform: translateY(-2px);
}

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

.bg-muted {
    background: var(--background-muted);
}

/* Animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.animate-fade-up {
    animation: fadeUp 0.6s ease-out forwards;
}

.animate-fade-in {
    animation: fadeIn 0.5s ease-out forwards;
}

/* =========================================
   NATIVE GRAPESJS PAGES (fm-* classes)
   ========================================= */

/* --- Design tokens --- */
:root {
    --fm-green: hsl(140,40%,30%);
    --fm-green-dark: hsl(140,40%,22%);
    --fm-orange: #f97316;
    --fm-orange-dark: #ea580c;
    --fm-navy: hsl(220,15%,15%);
    --fm-bg-gray: hsl(0,0%,97%);
    --fm-bg-gray2: hsl(0,0%,96%);
    --fm-text: #0f172a;
    --fm-muted: #64748b;
    --fm-border: #e2e8f0;
}

/* --- Container --- */
.fm-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.fm-wrap { max-width: 1280px; margin: 0 auto; padding: 0 64px; }
@media (max-width: 768px) { .fm-wrap { padding: 0 24px; } }

/* --- Fade-up animation --- */
.fm-fade-up { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fm-fade-up.fm-visible { opacity: 1; transform: translateY(0); }

/* --- Top Banner Header --- */
.fm-top-banner {
    position: relative;
    background: linear-gradient(105deg, #162e1a 0%, #1e4a24 35%, #265c2e 60%, #1a3d1f 100%);
    overflow: hidden;
    width: 100%;
}
.fm-top-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 8% 50%, rgba(255,255,255,0.04) 0%, transparent 40%),
        radial-gradient(circle at 92% 50%, rgba(255,255,255,0.04) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(255,255,255,0.025) 0%, transparent 55%);
    pointer-events: none;
}
.fm-top-banner-inner {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.fm-top-banner-logo img {
    height: 64px;
    width: auto;
    display: block;
}
.fm-top-banner-event {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
    text-align: right;
}
.fm-top-banner-edition {
    display: block;
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    color: rgba(255,255,255,0.55);
    text-transform: uppercase;
    font-weight: 600;
}
.fm-top-banner-date {
    display: block;
    font-size: 1.3rem;
    font-weight: 800;
    color: #f5c842;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    line-height: 1.1;
}
.fm-top-banner-venue {
    display: block;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.9);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 500;
}
@media (max-width: 640px) {
    .fm-top-banner-inner { padding: 14px 20px; }
    .fm-top-banner-logo img { height: 44px; }
    .fm-top-banner-date { font-size: 1rem; }
    .fm-top-banner-venue { font-size: 0.75rem; }
}

/* --- Hero --- */
.fm-hero { position: relative; min-height: 520px; display: flex; align-items: center; background: var(--gradient-hero); overflow: hidden; }
.fm-hero-overlay { position: absolute; inset: 0; background: url('/wp-content/uploads/hero-bg.jpg') center/cover no-repeat; opacity: 0.2; }
.fm-hero-content { position: relative; z-index: 1; text-align: center; color: white; padding: 80px 24px; }
.fm-hero-title { font-family: var(--font-serif); font-size: clamp(2.2rem, 5vw, 3.5rem); font-weight: 800; line-height: 1.15; margin-bottom: 1.2rem; }
.fm-hero-subtitle { font-size: clamp(1rem, 2vw, 1.25rem); opacity: 0.9; max-width: 640px; margin: 0 auto 1.5rem; line-height: 1.6; }
.fm-hero-meta { display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; margin-bottom: 2rem; font-size: 0.95rem; opacity: 0.85; }
.fm-hero-meta i { margin-right: 6px; }
.fm-hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* --- Page Hero (subpages) --- */
.fm-page-hero { background: var(--gradient-hero); color: white; padding: 80px 24px 60px; text-align: center; }
.fm-page-hero-title { font-family: var(--font-serif); font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; margin-bottom: 1rem; }
.fm-page-hero-subtitle { font-size: 1.1rem; opacity: 0.9; max-width: 700px; margin: 0 auto; line-height: 1.6; }

/* --- Sections --- */
.fm-section { padding: 80px 0; }
.fm-section-light { background: var(--background-muted); }
.fm-section-dark { background: var(--primary-dark); color: white; }
.fm-section-dark .fm-section-title { color: white; }
.fm-section-dark .fm-section-subtitle { color: rgba(255,255,255,0.85); }
.fm-section-cta { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); color: white; }
.fm-section-cta .fm-section-title { color: white; }
.fm-section-cta .fm-section-subtitle { color: rgba(255,255,255,0.85); }
.fm-section-title { font-family: var(--font-serif); font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 700; color: var(--foreground); text-align: center; margin-bottom: 0.8rem; }
.fm-section-subtitle { font-size: 1.1rem; color: var(--text-muted); text-align: center; max-width: 640px; margin: 0 auto 2.5rem; line-height: 1.6; }
.fm-text-center { text-align: center; }

/* --- Grid --- */
.fm-grid { display: grid; gap: 24px; }
.fm-grid-2 { grid-template-columns: repeat(2, 1fr); }
.fm-grid-3 { grid-template-columns: repeat(3, 1fr); }
.fm-grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .fm-grid-3, .fm-grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .fm-grid-2, .fm-grid-3, .fm-grid-4 { grid-template-columns: 1fr; } }

/* --- Buttons --- */
.fm-btn { display: inline-block; padding: 14px 32px; border-radius: 8px; font-weight: 700; font-size: 1rem; text-decoration: none; transition: all 0.2s; cursor: pointer; border: none; font-family: var(--font-sans); }
.fm-btn-primary { background: var(--accent); color: white; }
.fm-btn-primary:hover { background: var(--accent-hover); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.fm-btn-accent { background: #FFD700; color: var(--foreground); }
.fm-btn-accent:hover { background: #e6c200; transform: translateY(-2px); }
.fm-btn-outline { background: transparent; color: white; border: 2px solid rgba(255,255,255,0.5); }
.fm-btn-outline:hover { background: rgba(255,255,255,0.1); border-color: white; }
.fm-btn-lg { padding: 18px 48px; font-size: 1.1rem; }

/* --- Cards --- */
.fm-feature-card { background: var(--card); border: 1px solid var(--border); border-radius: 12px; padding: 32px; text-align: center; transition: transform 0.2s, box-shadow 0.2s; }
.fm-feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); }
.fm-feature-card h3 { font-family: var(--font-serif); font-size: 1.2rem; color: var(--foreground); margin-bottom: 8px; }
.fm-feature-card p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; }
.fm-feature-icon { width: 56px; height: 56px; border-radius: 14px; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; font-size: 1.3rem; color: white; background: linear-gradient(135deg, var(--primary), var(--primary-dark)); }

.fm-stat-card { background: var(--card); border-radius: 12px; padding: 32px; text-align: center; box-shadow: var(--shadow-card); }
.fm-stat-num { font-family: var(--font-serif); font-size: 2.8rem; font-weight: 800; color: var(--primary); }
.fm-stat-label { font-size: 0.95rem; color: var(--text-muted); margin-top: 4px; }

/* --- Countdown --- */
.fm-countdown { display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; }
.fm-cd-unit { display: flex; flex-direction: column; align-items: center; min-width: 80px; }
.fm-cd-num { font-family: var(--font-serif); font-size: 3rem; font-weight: 800; color: #FFD700; }
.fm-cd-label { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; opacity: 0.7; margin-top: 4px; }
.fm-section-dark .fm-cd-label { color: rgba(255,255,255,0.7); }

/* --- Steps --- */
.fm-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; counter-reset: step; }
.fm-step { background: var(--card); border: 1px solid var(--border); border-radius: 12px; padding: 32px; text-align: center; }
.fm-step-num { width: 48px; height: 48px; border-radius: 50%; background: var(--primary); color: white; font-size: 1.2rem; font-weight: 700; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.fm-step h3 { font-family: var(--font-serif); margin-bottom: 8px; }
.fm-step p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; }

/* --- Agenda --- */
.fm-agenda { max-width: 800px; margin: 0 auto; }
.fm-agenda-item { display: flex; gap: 24px; padding: 20px 0; border-bottom: 1px solid var(--border); }
.fm-agenda-item:last-child { border-bottom: none; }
.fm-agenda-time { min-width: 140px; font-weight: 700; color: var(--primary); font-size: 0.95rem; padding-top: 2px; }
.fm-agenda-desc h4 { font-family: var(--font-serif); margin-bottom: 4px; color: var(--foreground); }
.fm-agenda-desc p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.5; }
@media (max-width: 600px) { .fm-agenda-item { flex-direction: column; gap: 4px; } .fm-agenda-time { min-width: auto; } }

/* --- Content blocks --- */
.fm-content-block { }
.fm-content-block h3 { font-family: var(--font-serif); font-size: 1.4rem; margin-bottom: 12px; color: var(--foreground); }
.fm-content-block p { color: var(--text-muted); line-height: 1.7; margin-bottom: 12px; }
.fm-content-block a { color: var(--primary); }
.fm-list { list-style: none; padding: 0; margin: 0 0 16px; }
.fm-list li { padding: 8px 0; padding-left: 24px; position: relative; color: var(--text-muted); line-height: 1.5; }
.fm-list li::before { content: '✓'; position: absolute; left: 0; color: var(--primary); font-weight: 700; }
.fm-img-rounded { width: 100%; border-radius: 12px; box-shadow: var(--shadow-card); }

/* --- Pricing --- */
.fm-price-card { background: var(--card); border: 2px solid var(--border); border-radius: 16px; padding: 36px; position: relative; }
.fm-price-card h4 { font-family: var(--font-serif); font-size: 1.3rem; margin-bottom: 12px; }
.fm-price { font-size: 2.5rem; font-weight: 800; color: var(--primary); margin-bottom: 16px; font-family: var(--font-serif); }
.fm-price-featured { box-shadow: var(--shadow-card); }
.fm-price-premium { border-color: var(--accent); }
.fm-price-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--accent); color: white; padding: 4px 20px; border-radius: 99px; font-size: 0.75rem; font-weight: 700; }

/* --- Logo track (carousel) --- */
.fm-logo-track { display: flex; gap: 32px; align-items: center; overflow: hidden; white-space: nowrap; }
.fm-logo-track img { height: 48px; width: auto; object-fit: contain; filter: grayscale(0.3); transition: filter 0.2s; }
.fm-logo-track img:hover { filter: grayscale(0); }

/* --- Accordion --- */
.fm-accordion-item { border: 1px solid var(--border); border-radius: 8px; margin-bottom: 8px; overflow: hidden; }
.fm-accordion-btn { width: 100%; padding: 16px 20px; background: var(--card); border: none; text-align: left; font-size: 1rem; font-weight: 600; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-family: var(--font-sans); }
.fm-accordion-btn::after { content: '+'; font-size: 1.2rem; transition: transform 0.2s; }
.fm-accordion-item.open .fm-accordion-btn::after { content: '−'; }
.fm-accordion-body { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; padding: 0 20px; }
.fm-accordion-item.open .fm-accordion-body { max-height: 500px; padding: 0 20px 16px; }

/* --- Footer --- */
.fm-footer { }
.fm-footer-main { background: var(--primary-dark); color: white; padding: 60px 0 40px; }
.fm-footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
.fm-footer-logo { height: 36px; margin-bottom: 16px; }
.fm-footer-desc { opacity: 0.8; font-size: 0.9rem; line-height: 1.6; }
.fm-footer-col h4 { font-size: 1rem; margin-bottom: 16px; font-weight: 700; }
.fm-footer-col ul { list-style: none; padding: 0; margin: 0; }
.fm-footer-col ul li { margin-bottom: 8px; }
.fm-footer-col ul li a { color: rgba(255,255,255,0.7); text-decoration: none; font-size: 0.9rem; transition: color 0.2s; }
.fm-footer-col ul li a:hover { color: white; }
.fm-footer-col p { font-size: 0.9rem; opacity: 0.8; margin-bottom: 8px; }
.fm-footer-col p i { width: 20px; margin-right: 8px; }
.fm-footer-bottom { background: hsl(168, 55%, 16%); color: rgba(255,255,255,0.6); padding: 16px 0; font-size: 0.85rem; text-align: center; }
.fm-footer-bottom a { color: rgba(255,255,255,0.7); text-decoration: none; }
.fm-footer-bottom a:hover { color: white; }

@media (max-width: 900px) { .fm-footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .fm-footer-grid { grid-template-columns: 1fr; } }

/* --- Main content wrapper --- */
.fm-main { min-height: 50vh; }

/* --- Mobile nav toggle --- */
.fm-nav-menu.open { display: flex !important; }

/* =========================================
   NEW DESIGN COMPONENTS (React → GrapesJS)
   ========================================= */

/* Navigation bar */
.fm-nav-bar { background: white; border-bottom: 1px solid var(--fm-border); }
.fm-nav-bar-inner { max-width: 1280px; margin: 0 auto; padding: 0 40px; display: flex; align-items: center; justify-content: center; gap: 8px; flex-wrap: wrap; min-height: 52px; }
.fm-nav-flags { display: flex; align-items: center; gap: 8px; margin-right: 24px; }
.fm-flag { height: 20px; width: 28px; object-fit: cover; border-radius: 2px; cursor: pointer; }
.fm-nav-list { list-style: none; margin: 0; padding: 0; display: flex; align-items: center; gap: 2px; flex-wrap: wrap; justify-content: center; }
.fm-nav-item { position: relative; }
.fm-nav-item > a { display: flex; align-items: center; gap: 4px; padding: 10px 12px; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.03em; color: var(--fm-text); text-decoration: none; white-space: nowrap; transition: color 0.2s; }
.fm-nav-item > a:hover { color: var(--fm-green); }
.fm-nav-dropdown { display: none; position: absolute; top: 100%; left: 0; background: white; border: 1px solid var(--fm-border); box-shadow: 0 4px 16px rgba(0,0,0,0.1); border-radius: 4px; min-width: 200px; z-index: 100; list-style: none; margin: 0; padding: 6px 0; }
.fm-has-dropdown:hover .fm-nav-dropdown { display: block; }
.fm-nav-dropdown li a { display: block; padding: 8px 16px; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.03em; color: var(--fm-text); text-decoration: none; }
.fm-nav-dropdown li a:hover { color: var(--fm-green); background: var(--fm-bg-gray); }
.fm-nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid var(--fm-border);
    border-radius: 8px;
    background: #fff;
    color: var(--fm-text);
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin-left: auto;
}
.fm-nav-toggle i { font-size: 1rem; }
@media (max-width: 900px) {
    .fm-nav-bar-inner {
        padding: 8px 16px;
        justify-content: space-between;
        gap: 10px;
        position: relative;
    }
    .fm-nav-flags {
        margin-right: 0;
        order: 1;
    }
    .fm-nav-toggle {
        display: inline-flex;
        order: 2;
    }
    .fm-nav-list {
        order: 3;
        flex: 1 0 100%;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 10px 0 12px;
        border-top: 1px solid var(--fm-border);
    }
    .fm-nav-bar-inner.fm-nav-open .fm-nav-list {
        display: flex;
    }
    .fm-nav-item > a {
        width: 100%;
        justify-content: space-between;
        padding: 11px 4px;
        font-size: 0.85rem;
    }
    .fm-nav-dropdown {
        position: static;
        display: none;
        border: 0;
        box-shadow: none;
        min-width: 0;
        border-radius: 0;
        padding: 0 0 8px 10px;
        background: transparent;
    }
    .fm-has-dropdown:hover .fm-nav-dropdown {
        display: none;
    }
    .fm-nav-item.fm-has-dropdown.open > .fm-nav-dropdown {
        display: block;
    }
    .fm-nav-dropdown li a {
        padding: 8px 10px;
        font-size: 0.81rem;
        font-weight: 600;
    }
}

/* Top banner date image */
.fm-date-img { height: 72px; width: auto; }
@media (max-width: 640px) { .fm-date-img { height: 48px; } }

/* Sections */
.fm-section-white { padding: 80px 0; background: white; }
.fm-section-gray { padding: 80px 0; background: var(--fm-bg-gray); }
@media (max-width: 768px) { .fm-section-white, .fm-section-gray { padding: 48px 0; } }

/* Two column layout */
.fm-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
@media (max-width: 900px) { .fm-two-col { grid-template-columns: 1fr; gap: 32px; } }
.fm-img-full { width: 100%; height: auto; border-radius: 8px; }

/* Text column */
.fm-text-col { display: flex; flex-direction: column; gap: 20px; }
.fm-text-col h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 700; color: var(--fm-text); line-height: 1.25; margin: 0; }
.fm-text-col p { font-size: 1rem; color: var(--fm-muted); line-height: 1.7; margin: 0; }
.fm-green { color: var(--fm-green); }
.fm-hr-green { width: 64px; border: none; border-top: 2px solid var(--fm-green); margin: 0; }
.fm-hr-green-sm { width: 48px; border: none; border-top: 2px solid var(--fm-green); margin: 0 0 16px; }
.fm-link-green { color: var(--fm-green); font-weight: 700; text-decoration: underline; }

/* Buttons */
.fm-btn-orange { display: inline-block; background: var(--fm-orange-dark); color: white; padding: 12px 24px; font-size: 0.9rem; font-weight: 600; text-decoration: none; border-radius: 2px; cursor: pointer; border: none; transition: background 0.2s; }
.fm-btn-orange:hover { background: #c2410c; }
.fm-btn-orange-lg { padding: 14px 32px; font-size: 1rem; }
.fm-btn-white { display: inline-block; background: white; color: var(--fm-text); padding: 12px 24px; font-size: 0.9rem; font-weight: 600; text-decoration: none; border-radius: 2px; border: 1px solid var(--fm-border); cursor: pointer; transition: background 0.2s; }
.fm-btn-white:hover { background: #f8fafc; }

/* Countdown bar */
.fm-countdown-bar { background: linear-gradient(135deg, hsl(140,40%,28%) 0%, hsl(160,35%,25%) 100%); padding: 48px 0; }
.fm-countdown-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.fm-countdown-left { display: flex; flex-direction: column; gap: 12px; }
.fm-countdown-lets { font-size: 0.85rem; color: hsl(140,60%,70%); font-weight: 600; letter-spacing: 0.1em; margin: 0; }
.fm-countdown-title { font-size: 1.1rem; font-weight: 700; color: white; letter-spacing: 0.1em; text-transform: uppercase; margin: 0; }
.fm-countdown-boxes { display: flex; gap: 12px; flex-wrap: wrap; }
.fm-cd-box { background: hsl(220,30%,20%); color: white; border-radius: 6px; padding: 12px 16px; min-width: 72px; text-align: center; }
.fm-cd-num { display: block; font-size: 1.5rem; font-weight: 700; line-height: 1; }
.fm-cd-label { display: block; font-size: 0.72rem; margin-top: 4px; opacity: 0.7; }
.fm-countdown-right { text-align: center; display: flex; flex-direction: column; gap: 12px; align-items: center; }
.fm-countdown-interested { font-size: 1.75rem; font-weight: 700; color: white; margin: 0; }
@media (max-width: 768px) { .fm-countdown-inner { justify-content: center; text-align: center; } .fm-countdown-left { align-items: center; } .fm-countdown-boxes { justify-content: center; } }

/* Logo sliders */
@keyframes fm-scroll-left { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes fm-scroll-right { 0% { transform: translateX(-50%); } 100% { transform: translateX(0); } }
.fm-logo-group { margin-bottom: 48px; }
.fm-logo-group h3 { font-size: 1.4rem; font-weight: 700; color: var(--fm-text); margin: 0 0 8px; }
.fm-slider-wrap { overflow: hidden; padding: 8px 0; }
.fm-slider-track { display: flex; gap: 16px; animation: fm-scroll-left 28s linear infinite; width: max-content; }
.fm-slider-track-r { animation: fm-scroll-right 28s linear infinite; }
.fm-slider-wrap:hover .fm-slider-track,
.fm-slider-wrap:hover .fm-slider-track-r { animation-play-state: paused; }
.fm-logo-card { flex-shrink: 0; width: 160px; height: 80px; background: white; border-radius: 8px; box-shadow: 0 1px 4px rgba(0,0,0,0.08); border: 1px solid var(--fm-border); display: flex; align-items: center; justify-content: center; padding: 12px; }
.fm-logo-card img { max-height: 48px; max-width: 120px; object-fit: contain; }
.fm-logo-card span { font-size: 0.8rem; font-weight: 700; color: var(--fm-muted); text-align: center; }

/* Dynamic logos placeholders (FM_LOGOS:*) */
.fm-logos-section { margin-bottom: 48px; }
.fm-logos-title { font-size: 1.4rem; font-weight: 700; color: var(--fm-text); margin: 0 0 8px; }
.fm-logos-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 8px 0;
}
.fm-logos-grid-row {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 16px;
}
.fm-logos-grid .fm-logo-item,
.fm-logos-grid .fm-logo-item-inherit {
    min-width: 0;
    width: auto;
    margin: 0;
}
.fm-logos-grid .fm-logo-item img,
.fm-logos-grid .fm-logo-item-inherit img {
    max-width: 100%;
}
.fm-logos-carousel { overflow: hidden; padding: 8px 0; position: relative; }
.fm-logos-section .fm-logos-carousel + .fm-logos-carousel { margin-top: 16px; }
.fm-logos-track {
    display: flex;
    align-items: center;
    gap: 16px;
    width: max-content;
    animation: fm-logo-scroll var(--fm-logo-speed, 30s) linear infinite;
    will-change: transform;
}
.fm-logos-carousel-reverse .fm-logos-track { animation-name: fm-logo-scroll-reverse; }
.fm-logos-carousel:hover .fm-logos-track { animation-play-state: paused; }
@keyframes fm-logo-scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes fm-logo-scroll-reverse { 0% { transform: translateX(-50%); } 100% { transform: translateX(0); } }
.fm-logos-carousel .fm-logo-item {
    flex-shrink: 0;
    width: 160px;
    height: 80px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--fm-border);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
}
.fm-logos-carousel .fm-logo-item a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.fm-logos-carousel .fm-logo-item img {
    max-height: 48px;
    max-width: 120px;
    object-fit: contain;
}

/* Builder-injected logo sliders should inherit current section/container background */
.fm-logos-section.fm-logos-inherit-bg,
.fm-logos-section.fm-logos-inherit-bg .fm-logos-carousel,
.fm-logos-section.fm-logos-inherit-bg .fm-logos-track {
    background: inherit;
}
.fm-logos-section.fm-logos-inherit-bg .fm-logo-item-inherit {
    background: #fff;
    border: 1px solid var(--fm-border);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}

/* Force white logo cards on all pages/variants (also when page-level CSS overrides styles) */
.fm-logos-section .fm-logo-item,
.fm-logos-section .fm-logo-item-inherit,
.fm-logo-track .fm-logo-item,
.fm-logos-grid .fm-logo-item,
.fm-logos-grid .fm-logo-item-inherit,
.fm-slider-track .fm-logo-card {
    background: #fff !important;
    border: 1px solid var(--fm-border) !important;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08) !important;
}
@media (max-width: 1440px) {
    .fm-logos-grid-row { grid-template-columns: repeat(8, minmax(0, 1fr)); }
}
@media (max-width: 1100px) {
    .fm-logos-grid-row { grid-template-columns: repeat(6, minmax(0, 1fr)); }
}
@media (max-width: 768px) {
    .fm-logos-grid-row { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
@media (max-width: 520px) {
    .fm-logos-grid-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* How to join cards */
.fm-join-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
@media (max-width: 768px) { .fm-join-grid { grid-template-columns: 1fr; } }
.fm-join-card { background: white; border-radius: 8px; border: 1px solid var(--fm-border); box-shadow: 0 1px 6px rgba(0,0,0,0.06); overflow: hidden; display: flex; flex-direction: column; }
.fm-join-card img { width: 100%; height: 280px; object-fit: cover; }
.fm-join-card-body { padding: 32px; flex: 1; display: flex; flex-direction: column; gap: 16px; }
.fm-join-card h3 { font-size: 1.15rem; font-weight: 700; color: var(--fm-text); text-align: center; margin: 0; }
.fm-join-list { list-style: disc; padding-left: 20px; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.fm-join-list li { color: var(--fm-muted); font-size: 0.95rem; line-height: 1.5; }
.fm-join-list li strong { color: var(--fm-text); }
.fm-join-cta { margin-top: auto; text-align: center; padding-top: 8px; }

/* Areas grid */
.fm-areas-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
@media (max-width: 900px) { .fm-areas-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .fm-areas-grid { grid-template-columns: 1fr; } }

/* Legacy GrapesJS layout blocks (2/3/4 columns) used plain flex wrappers without container. */
.fm-main > div[style*="display:flex"][style*="flex-wrap:wrap"]:has(> div[style*="min-width:280px"]),
.fm-main > div[style*="display:flex"][style*="flex-wrap:wrap"]:has(> div[style*="min-width: 280px"]),
.fm-main > div[style*="display:flex"][style*="flex-wrap:wrap"]:has(> div[style*="min-width:200px"]),
.fm-main > div[style*="display:flex"][style*="flex-wrap:wrap"]:has(> div[style*="min-width: 200px"]),
.fm-main > div[style*="display:flex"][style*="flex-wrap:wrap"]:has(> div[style*="min-width:180px"]),
.fm-main > div[style*="display:flex"][style*="flex-wrap:wrap"]:has(> div[style*="min-width: 180px"]),
.fm-main > section > div[style*="display:flex"][style*="flex-wrap:wrap"]:has(> div[style*="min-width:280px"]),
.fm-main > section > div[style*="display:flex"][style*="flex-wrap:wrap"]:has(> div[style*="min-width: 280px"]),
.fm-main > section > div[style*="display:flex"][style*="flex-wrap:wrap"]:has(> div[style*="min-width:200px"]),
.fm-main > section > div[style*="display:flex"][style*="flex-wrap:wrap"]:has(> div[style*="min-width: 200px"]),
.fm-main > section > div[style*="display:flex"][style*="flex-wrap:wrap"]:has(> div[style*="min-width:180px"]),
.fm-main > section > div[style*="display:flex"][style*="flex-wrap:wrap"]:has(> div[style*="min-width: 180px"]) {
    max-width: 1200px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
}
.fm-area-card { background: white; border-radius: 8px; border: 1px solid var(--fm-border); box-shadow: 0 1px 6px rgba(0,0,0,0.06); overflow: hidden; display: flex; flex-direction: column; }
.fm-area-card-header { position: relative; height: 200px; background: #4a4a4a; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.fm-area-card-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.fm-area-card-header::after { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,0.5); z-index: 1; }
.fm-area-card-header h3 { position: relative; z-index: 2; font-size: 1.3rem; font-weight: 700; color: white; text-align: center; padding: 0 16px; line-height: 1.2; margin: 0; }
.fm-area-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; gap: 12px; }
.fm-area-card-body p.subtitle { font-weight: 700; color: var(--fm-text); text-align: center; margin: 0; }
.fm-area-card-body p { font-size: 0.88rem; color: var(--fm-muted); line-height: 1.55; margin: 0; text-align: justify; }
.fm-area-cta { margin-top: auto; text-align: center; padding-top: 8px; }

/* Participants slider */
.fm-participants-section { padding: 64px 0; background: white; }
.fm-participants-section h2 { font-size: clamp(1.6rem, 3vw, 2rem); font-weight: 700; color: var(--fm-text); text-align: center; margin: 0 0 40px; }
.fm-participant-track { display: flex; gap: 16px; animation: fm-scroll-left 30s linear infinite; width: max-content; }
.fm-participant-card { flex-shrink: 0; width: 200px; height: 90px; background: white; border-radius: 8px; box-shadow: 0 1px 4px rgba(0,0,0,0.08); border: 1px solid var(--fm-border); display: flex; align-items: center; justify-content: center; padding: 12px; }
.fm-participant-card span { font-size: 0.85rem; font-weight: 700; color: var(--fm-muted); text-align: center; }

/* Why attend */
.fm-why-section { position: relative; overflow: hidden; }
.fm-why-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.fm-why-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.35); }
.fm-why-inner { position: relative; z-index: 1; padding: 80px 0 96px; }
.fm-why-box { max-width: 640px; background: hsla(140,40%,30%,0.88); padding: 40px; border-radius: 8px; display: flex; flex-direction: column; gap: 28px; }
.fm-why-badge { display: inline-block; padding: 6px 16px; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: white; background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2); border-radius: 99px; width: fit-content; }
.fm-why-box h2 { font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 700; color: white; line-height: 1.2; margin: 0; }
.fm-why-box h2 span { color: #fb923c; }
.fm-why-list { display: flex; flex-direction: column; gap: 20px; }
.fm-why-item { display: flex; gap: 16px; align-items: flex-start; }
.fm-why-icon { flex-shrink: 0; width: 32px; height: 32px; border-radius: 50%; background: rgba(251,146,60,0.2); border: 1px solid rgba(251,146,60,0.4); display: flex; align-items: center; justify-content: center; }
.fm-why-icon::after { content: '✓'; color: #fb923c; font-size: 0.85rem; font-weight: 700; }
.fm-why-item p { color: rgba(255,255,255,0.88); font-size: 0.95rem; line-height: 1.6; margin: 0; }
.fm-why-item p strong { color: white; }
@media (max-width: 768px) { .fm-why-inner { padding: 48px 0 64px; } .fm-why-box { padding: 28px; } }

/* Reviews grid */
.fm-reviews-section { padding: 80px 0; background: var(--fm-bg-gray2); }
.fm-reviews-section h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 700; color: var(--fm-text); margin: 0 0 40px; }
.fm-reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 40px; }
@media (max-width: 900px) { .fm-reviews-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .fm-reviews-grid { grid-template-columns: 1fr; } }
.fm-review-card { background: white; border-radius: 16px; padding: 24px; box-shadow: 0 2px 8px rgba(0,0,0,0.08); border-left: 4px solid var(--fm-green); display: flex; flex-direction: column; }
.fm-review-quote-mark { font-size: 2.5rem; color: var(--fm-green); font-family: var(--font-serif); line-height: 1; margin-bottom: 8px; }
.fm-review-text { font-size: 0.92rem; font-weight: 500; color: var(--fm-text); line-height: 1.6; flex: 1; }
.fm-review-footer { display: flex; align-items: center; gap: 12px; margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--fm-border); }
.fm-review-logo { width: 100%; height: 64px; margin-top: 18px; display: flex; align-items: center; justify-content: center; }
.fm-review-logo img { max-width: 180px; max-height: 64px; width: auto; height: auto; object-fit: contain; }
.fm-review-author { margin-top: 10px; text-align: center; }
.fm-review-name { font-size: 0.9rem; font-weight: 700; color: var(--fm-text); }
.fm-review-company { font-size: 0.82rem; color: var(--fm-green); font-weight: 600; }
.fm-review-footer > .fm-review-logo { width: 40px; height: 40px; margin-top: 0; display: block; object-fit: contain; }
.fm-review-footer > .fm-review-logo img { max-width: 100%; max-height: 100%; }
.fm-review-person { font-size: 0.85rem; font-weight: 600; color: var(--fm-text); margin: 0; }
.fm-review-role { font-size: 0.75rem; color: var(--fm-muted); margin: 0; }
.fm-reviews-cta { text-align: center; }
.fm-home-reviews .fm-review-text {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
    line-clamp: 5;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: calc(1.6em * 5);
}

/* Defensive compatibility rules for production mixes (old/new markup). */
.fm-review-card,
.review-card {
    overflow: hidden;
}
.fm-review-logo,
.review-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}
.fm-review-logo img,
.review-logo img,
img.fm-review-logo,
img.review-logo {
    max-width: 180px !important;
    max-height: 64px !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
}
.areas-grid .area-image-wrapper,
.fm-areas-grid .area-image-wrapper {
    overflow: hidden;
}
.areas-grid .area-image-wrapper img,
.fm-areas-grid .area-image-wrapper img {
    width: 100%;
    max-width: 100%;
    height: 192px;
    object-fit: cover;
    display: block;
}

/* News section */
.fm-news-section { padding: 80px 0; background: white; }
.fm-news-section h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 700; color: var(--fm-text); margin: 0 0 8px; }
.fm-news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
@media (max-width: 900px) { .fm-news-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .fm-news-grid { grid-template-columns: 1fr; } }
.fm-news-card { display: flex; flex-direction: column; cursor: pointer; }
.fm-news-img { width: 100%; height: 220px; background: #d4d4d4; border-radius: 8px; margin-bottom: 16px; overflow: hidden; }
.fm-news-img img { width: 100%; height: 100%; object-fit: cover; }
.fm-news-title { font-size: 1rem; font-weight: 700; color: var(--fm-green); line-height: 1.4; margin: 0 0 8px; }
.fm-news-title:hover { text-decoration: underline; }
.fm-news-date { font-size: 0.78rem; color: var(--fm-muted); margin: 0 0 10px; }
.fm-news-excerpt { font-size: 0.88rem; color: var(--fm-muted); line-height: 1.6; margin: 0; }

/* Contact section */
.fm-contact-cta { padding: 48px 0; background: white; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 16px; }
.fm-contact-cta h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 700; color: var(--fm-text); margin: 0; }
.fm-contact-form-wrap { background: linear-gradient(135deg, hsl(140,40%,22%) 0%, hsl(150,35%,18%) 100%); padding: 64px 0; }
.fm-contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
@media (max-width: 900px) { .fm-contact-inner { grid-template-columns: 1fr; } }
.fm-contact-about h3 { font-size: 1.6rem; font-weight: 700; color: white; margin: 0 0 20px; }
.fm-contact-about p { font-size: 0.88rem; color: rgba(255,255,255,0.8); line-height: 1.7; margin: 0 0 14px; }
.fm-contact-form h3 { font-size: 1.6rem; font-weight: 700; color: white; margin: 0 0 20px; }
.fm-form { display: flex; flex-direction: column; gap: 14px; }
.fm-form-input { width: 100%; padding: 11px 14px; font-size: 0.9rem; border: 1px solid var(--fm-border); border-radius: 4px; background: white; color: var(--fm-text); box-sizing: border-box; font-family: inherit; }
.fm-form-input:focus { outline: 2px solid var(--fm-green); }
.fm-form textarea.fm-form-input { min-height: 100px; resize: vertical; }
.fm-form-terms { font-size: 0.78rem; color: rgba(255,255,255,0.7); margin: 0; }
.fm-form-terms a { color: #fb923c; }

/* New footer */
.fm-footer-new { background: hsl(220,15%,15%); color: white; }
.fm-footer-new-main { padding: 56px 0; }
.fm-footer-new-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; }
@media (max-width: 768px) { .fm-footer-new-grid { grid-template-columns: 1fr; } }
.fm-footer-new-logo { height: 48px; width: auto; margin-bottom: 16px; display: block; }
.fm-footer-col-title { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin: 0 0 16px; }
.fm-footer-contact-item { display: flex; align-items: center; gap: 8px; font-size: 0.88rem; color: rgba(255,255,255,0.7); margin-bottom: 8px; }
.fm-footer-contact-item svg { width: 16px; height: 16px; color: #fb923c; flex-shrink: 0; }
.fm-footer-new-nav { display: flex; flex-direction: column; gap: 8px; }
.fm-footer-new-nav a { font-size: 0.88rem; color: rgba(255,255,255,0.7); text-decoration: none; transition: color 0.2s; }
.fm-footer-new-nav a:hover { color: #fb923c; }
.fm-footer-flags { display: flex; gap: 8px; margin-bottom: 16px; }
.fm-footer-new-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 16px 0; text-align: center; font-size: 0.75rem; color: rgba(255,255,255,0.35); }
