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

:root {
    --primary-blue: #1e3a5f;
    --secondary-blue: #2a4d7a;
    --gold: #d4af37;
    --gold-hover: #c49d2e;
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-900: #111827;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--gray-900);
    line-height: 1.6;
    overflow-x: hidden;
}

body.nav-open {
    overflow: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

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

.nav {
    background: var(--primary-blue);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 50;
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    gap: 2rem;
}

.nav-logo img {
    height: 64px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: none;
    gap: 0.25rem;
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
        margin-left: auto;
    }
}

.nav-link {
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gold);
    text-decoration: none;
    transition: all 0.2s;
}

.nav-link:hover {
    background: var(--secondary-blue);
    color: var(--white);
}

.nav-link.active {
    background: var(--gold);
    color: var(--primary-blue);
}

.nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    border-radius: 0.375rem;
    background: transparent;
    border: none;
    color: var(--gold);
    cursor: pointer;
    transition: background 0.2s;
}

.nav-toggle:hover {
    background: var(--secondary-blue);
}

@media (min-width: 768px) {
    .nav-toggle {
        display: none;
    }
}

.nav-toggle-icon {
    width: 24px;
    height: 2px;
    background: currentColor;
    position: relative;
    display: block;
}

.nav-toggle-icon::before,
.nav-toggle-icon::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: currentColor;
    left: 0;
    transition: all 0.3s;
}

.nav-toggle-icon::before {
    top: -8px;
}

.nav-toggle-icon::after {
    top: 8px;
}

.nav-toggle.active .nav-toggle-icon {
    background: transparent;
}

.nav-toggle.active .nav-toggle-icon::before {
    top: 0;
    transform: rotate(45deg);
}

.nav-toggle.active .nav-toggle-icon::after {
    top: 0;
    transform: rotate(-45deg);
}

.nav-mobile {
    display: none;
    background: var(--primary-blue);
    border-top: 1px solid var(--secondary-blue);
    padding: 0.5rem 1rem 0.75rem;
}

.nav-mobile.active {
    display: block;
}

@media (min-width: 768px) {
    .nav-mobile {
        display: none !important;
    }
}

.nav-mobile-link {
    display: block;
    padding: 0.75rem;
    border-radius: 0.375rem;
    font-size: 1rem;
    font-weight: 500;
    color: var(--gold);
    text-decoration: none;
    transition: all 0.2s;
    margin-bottom: 0.25rem;
}

.nav-mobile-link:hover {
    background: var(--secondary-blue);
    color: var(--white);
}

.nav-mobile-link.active {
    background: var(--gold);
    color: var(--primary-blue);
}

main {
    padding-top: 80px;
}

.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 50%, var(--primary-blue) 100%);
    padding: 4rem 1rem;
}

@media (min-width: 768px) {
    .hero {
        padding: 8rem 1rem;
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.2);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--white);
    max-width: 56rem;
    margin: 0 auto;
    padding: 0 1rem;
}

.hero-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--gold);
    line-height: 1.2;
}

@media (min-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

.hero-subtitle {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: var(--white);
    line-height: 1.75;
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 1.5rem;
    }
}

.hero-text {
    font-size: 1rem;
    margin-bottom: 2rem;
    color: var(--gray-200);
    line-height: 1.75;
}

@media (min-width: 768px) {
    .hero-text {
        font-size: 1.25rem;
    }
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    text-align: center;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--gold);
    color: var(--primary-blue);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.btn-primary:hover {
    background: var(--gold-hover);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-blue);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.btn-secondary:hover {
    background: var(--gray-100);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.btn-outline:hover {
    background: var(--gray-50);
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.btn-full {
    width: 100%;
}

.section {
    padding: 4rem 0;
}

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

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

.bg-gray {
    background: var(--gray-50);
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray-700);
    max-width: 48rem;
    margin: 0 auto 2rem;
    line-height: 1.75;
}

@media (min-width: 768px) {
    .section-subtitle {
        font-size: 1.25rem;
    }
}

.section-text {
    font-size: 1rem;
    color: var(--gray-600);
    max-width: 48rem;
    margin: 0 auto 1rem;
    line-height: 1.75;
}

@media (min-width: 768px) {
    .section-text {
        font-size: 1.125rem;
    }
}

.farms-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
}

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

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

.farm-card {
    background: var(--white);
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    border: 1px solid var(--gray-200);
    transition: box-shadow 0.2s;
}

.farm-card:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.farm-header {
    height: 8rem;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.farm-name {
    color: var(--gold);
    font-weight: 700;
    font-size: 1.25rem;
    text-align: center;
    padding: 0 0.5rem;
}

.farm-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.farm-description {
    font-size: 0.875rem;
    color: var(--gray-600);
    margin-bottom: 1rem;
    line-height: 1.75;
}

.farm-info {
    margin-bottom: 1rem;
}

.farm-info-item {
    display: flex;
    align-items: center;
    font-size: 0.875rem;
    color: var(--gray-700);
    margin-bottom: 0.5rem;
}

.farm-info-item .icon {
    margin-right: 0.5rem;
    flex-shrink: 0;
}

.farm-info-item a {
    color: var(--gray-700);
    text-decoration: none;
    transition: color 0.2s;
    word-break: break-all;
}

.farm-info-item a:hover {
    color: var(--gold);
}

.event-card {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    border-radius: 1rem;
    padding: 2rem;
    color: var(--white);
}

@media (min-width: 768px) {
    .event-card {
        padding: 3rem;
    }
}

.event-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

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

.event-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--gold);
    color: var(--primary-blue);
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.event-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .event-title {
        font-size: 2.5rem;
    }
}

.event-description {
    color: var(--gray-200);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.75;
}

@media (min-width: 768px) {
    .event-description {
        font-size: 1.125rem;
    }
}

.event-stats {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.stat-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(8px);
    border-radius: 0.75rem;
    padding: 1.5rem;
    border: 1px solid rgba(212,175,55,0.3);
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 0.25rem;
}

.stat-label {
    color: var(--gray-200);
}

.footer {
    background: var(--primary-blue);
    color: var(--white);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 3rem 0;
}

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

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

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

.footer-logo {
    height: 64px;
    width: auto;
    object-fit: contain;
    margin-bottom: 1rem;
}

.footer-text {
    color: var(--gray-300);
    font-size: 0.875rem;
    line-height: 1.75;
    max-width: 28rem;
}

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

.footer-nav {
    list-style: none;
}

.footer-nav li {
    margin-bottom: 0.5rem;
}

.footer-nav a {
    color: var(--gray-300);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s;
}

.footer-nav a:hover {
    color: var(--gold);
}

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

.social-link {
    width: 40px;
    height: 40px;
    background: var(--secondary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.2s;
    font-size: 1.25rem;
}

.social-link:hover {
    background: var(--gold);
    transform: scale(1.1);
}

.footer-contact {
    font-size: 0.875rem;
    color: var(--gray-300);
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.contact-item .icon {
    margin-right: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid var(--secondary-blue);
    padding: 2rem 0;
    text-align: center;
    font-size: 0.875rem;
    color: var(--gray-300);
}

.page-content {
    min-height: calc(100vh - 80px);
}

.page-hero {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: var(--white);
    padding: 4rem 0;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--gold);
}

@media (min-width: 768px) {
    .page-title {
        font-size: 3rem;
    }
}

.page-subtitle {
    font-size: 1.125rem;
    max-width: 48rem;
    margin: 0 auto;
    line-height: 1.75;
    color: var(--gray-200);
}

@media (min-width: 768px) {
    .page-subtitle {
        font-size: 1.25rem;
    }
}

.hero-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.content-box {
    max-width: 64rem;
    margin: 0 auto;
}

.content-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
}

.text-content {
    font-size: 1rem;
    color: var(--gray-700);
    line-height: 1.75;
}

@media (min-width: 768px) {
    .text-content {
        font-size: 1.125rem;
    }
}

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

.rules-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

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

.rule-card {
    background: var(--white);
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    border-left: 4px solid var(--gold);
    display: flex;
    gap: 0.75rem;
}

.rule-icon {
    width: 24px;
    height: 24px;
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 4px;
    font-weight: 700;
}

.rule-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.rule-text {
    color: var(--gray-600);
    line-height: 1.75;
}

.biosecurity-box {
    background: #dbeafe;
    border: 2px solid #3b82f6;
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin-bottom: 3rem;
    display: flex;
    gap: 1rem;
}

.biosecurity-icon {
    width: 48px;
    height: 48px;
    background: #3b82f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.5rem;
}

.biosecurity-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 0.5rem;
}

.biosecurity-text {
    color: #1e40af;
    line-height: 1.75;
}

.goals-box {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    border-radius: 0.75rem;
    padding: 2rem;
    color: var(--white);
}

.goals-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.goals-list {
    list-style: none;
}

.goals-list li {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
    line-height: 1.75;
}

.goals-list li::before {
    content: '🏆';
    flex-shrink: 0;
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 64rem;
    margin: 2rem auto 0;
}

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

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

.value-icon {
    width: 80px;
    height: 80px;
    background: rgba(212,175,55,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2.5rem;
}

.value-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0.75rem;
}

.value-text {
    color: var(--gray-600);
    line-height: 1.75;
}

.member-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.member-card {
    background: var(--white);
    border-radius: 0.75rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    border: 1px solid var(--gray-200);
    overflow: hidden;
    transition: box-shadow 0.2s;
    display: grid;
    grid-template-columns: 1fr;
}

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

.member-card:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.member-left {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.member-badge {
    width: 128px;
    height: 128px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.member-location {
    display: flex;
    align-items: center;
    font-size: 0.875rem;
    color: var(--gold);
    text-align: center;
}

.member-location .icon {
    margin-right: 0.25rem;
}

.member-right {
    padding: 2rem;
}

.member-header {
    margin-bottom: 1.5rem;
}

.member-name {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .member-name {
        font-size: 2rem;
    }
}

.member-specialty {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(212,175,55,0.2);
    color: var(--primary-blue);
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
}

.member-description {
    color: var(--gray-700);
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .member-description {
        font-size: 1.125rem;
    }
}

.member-contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.cta-box {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
}

@media (min-width: 768px) {
    .cta-box {
        padding: 3rem;
    }
}

.cta-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 1rem;
}

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

.cta-text {
    font-size: 1.125rem;
    color: var(--gray-200);
    max-width: 32rem;
    margin: 0 auto 2rem;
    line-height: 1.75;
}

@media (min-width: 768px) {
    .cta-text {
        font-size: 1.25rem;
    }
}

.show-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

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

.show-card {
    background: var(--white);
    border-radius: 0.75rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    border: 1px solid var(--gray-200);
    overflow: hidden;
    transition: all 0.2s;
    text-decoration: none;
    color: inherit;
    display: block;
}

.show-card:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    transform: translateY(-4px);
}

.show-header {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    padding: 2rem;
    text-align: center;
}

.show-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.show-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
}

@media (min-width: 768px) {
    .show-title {
        font-size: 1.75rem;
    }
}

.show-content {
    padding: 2rem;
}

.show-details {
    margin-bottom: 1.5rem;
}

.show-detail {
    display: flex;
    align-items: center;
    font-size: 1rem;
    color: var(--gray-700);
    margin-bottom: 0.75rem;
}

.show-detail .icon {
    margin-right: 0.5rem;
}

.show-description {
    color: var(--gray-600);
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.back-link {
    display: inline-flex;
    align-items: center;
    color: var(--gold);
    text-decoration: none;
    font-weight: 500;
    margin-bottom: 2rem;
    transition: color 0.2s;
}

.back-link:hover {
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

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

.stat-box {
    background: var(--white);
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    text-align: center;
}

.stat-box.stat-gold {
    border-top: 4px solid #eab308;
}

.stat-box.stat-yellow {
    border-top: 4px solid var(--gold);
}

.stat-box.stat-blue {
    border-top: 4px solid #3b82f6;
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 0.75rem;
}

.stat-gold .stat-icon {
    color: #eab308;
}

.stat-yellow .stat-icon {
    color: var(--gold);
}

.stat-blue .stat-icon {
    color: #3b82f6;
}

.results-section {
    margin-bottom: 3rem;
}

.results-category {
    background: var(--primary-blue);
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 0.75rem 0.75rem 0 0;
    font-size: 1.5rem;
    font-weight: 700;
}

.results-list {
    background: var(--white);
    border-radius: 0 0 0.75rem 0.75rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    overflow: hidden;
}

.result-card {
    border-bottom: 1px solid var(--gray-100);
    padding: 1.5rem;
    display: flex;
    gap: 1rem;
    transition: background 0.2s;
}

.result-card:last-child {
    border-bottom: none;
}

.result-card:hover {
    background: var(--gray-50);
}

.result-card.result-gold {
    background: linear-gradient(90deg, #fef9c3 0%, var(--white) 100%);
}

.result-card.result-silver {
    background: linear-gradient(90deg, #e5e7eb 0%, var(--white) 100%);
}

.result-card.result-highlight {
    background: rgba(212,175,55,0.1);
}

.result-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.result-card.result-gold .result-icon {
    color: #eab308;
}

.result-card.result-silver .result-icon {
    color: #9ca3af;
}

.result-content {
    flex: 1;
}

.result-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.result-entries {
    font-size: 0.875rem;
    color: var(--gray-500);
    font-weight: 500;
}

.result-goat {
    font-size: 1.25rem;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.result-exhibitor {
    color: var(--gray-600);
}

.result-exhibitor strong {
    font-weight: 500;
    color: var(--gray-900);
}

.info-box {
    background: #dbeafe;
    border-left: 4px solid #3b82f6;
    padding: 1rem 1.5rem;
    border-radius: 0.375rem;
    color: #1e40af;
    line-height: 1.75;
}

.info-box strong {
    font-weight: 600;
}

.marketplace-empty {
    text-align: center;
    padding: 4rem 1rem;
}

.empty-icon {
    font-size: 6rem;
    margin-bottom: 1.5rem;
}

.empty-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

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

.empty-text {
    font-size: 1rem;
    color: var(--gray-600);
    max-width: 32rem;
    margin: 0 auto 2rem;
    line-height: 1.75;
}

@media (min-width: 768px) {
    .empty-text {
        font-size: 1.125rem;
    }
}

.empty-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}

@media (min-width: 640px) {
    .empty-buttons {
        flex-direction: row;
    }
}

.marketplace-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

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

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

.goat-card {
    background: var(--white);
    border-radius: 0.75rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    border: 1px solid var(--gray-100);
    overflow: hidden;
    transition: all 0.2s;
}

.goat-card:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    transform: translateY(-4px);
}

.goat-card-image {
    height: 12rem;
    background: var(--gray-100);
    position: relative;
    overflow: hidden;
}

.goat-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.goat-card-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gold);
    color: var(--primary-blue);
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: capitalize;
}

.goat-card-content {
    padding: 1.5rem;
}

.goat-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.goat-card-farm {
    color: var(--gray-600);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.goat-card-info {
    color: var(--gray-700);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.goat-card-info strong {
    font-weight: 600;
}

.goat-card-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    margin: 1rem 0;
}

.goat-card-description {
    color: var(--gray-600);
    font-size: 0.875rem;
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.goat-card-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.btn-block {
    width: 100%;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

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

.form-box {
    background: var(--white);
    border-radius: 0.75rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    padding: 2rem;
    border: 1px solid var(--gray-100);
}

.form-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-700);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem 1rem;
    border: 1px solid var(--gray-300);
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: all 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212,175,55,0.1);
}

.form-group textarea {
    resize: none;
}

.form-success {
    background: rgba(212,175,55,0.1);
    border: 2px solid var(--gold);
    border-radius: 0.5rem;
    padding: 2rem;
    text-align: center;
}

.success-icon {
    width: 64px;
    height: 64px;
    background: var(--gold);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
    font-weight: 700;
}

.form-success h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.form-success p {
    color: var(--gray-600);
}

.info-card {
    background: var(--white);
    border-radius: 0.75rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    padding: 1.5rem;
    border: 1px solid var(--gray-100);
    margin-bottom: 1.5rem;
}

.info-card:last-child {
    margin-bottom: 0;
}

.info-card.card-dark {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: var(--white);
}

.info-card.card-accent {
    background: rgba(212,175,55,0.1);
    border: 1px solid var(--gold);
}

.info-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.card-dark .info-title {
    color: var(--gold);
}

.card-accent .info-title {
    color: var(--gray-900);
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.info-item {
    display: flex;
    gap: 0.75rem;
}

.info-item .icon {
    font-size: 1.25rem;
    color: var(--gold);
    margin-top: 2px;
}

.info-label {
    font-weight: 500;
    color: var(--gray-900);
}

.info-link {
    color: var(--gold);
    text-decoration: none;
}

.info-link:hover {
    text-decoration: underline;
}

.info-text {
    color: var(--gray-600);
}

.card-dark .info-text {
    color: var(--gray-200);
}

.card-accent .info-text {
    color: var(--gray-600);
}

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

.social-icon {
    width: 48px;
    height: 48px;
    background: rgba(212,175,55,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.2s;
    font-size: 1.5rem;
}

.social-icon:hover {
    background: var(--gold-hover);
    transform: scale(1.1);
}

.icon {
    display: inline-block;
}

.acknowledgments-box {
    background: var(--white);
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
    padding: 2rem;
    max-width: 64rem;
    margin: 0 auto;
    border: 1px solid var(--gray-200);
}

@media (min-width: 768px) {
    .acknowledgments-box {
        padding: 3rem;
    }
}

.acknowledgments-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    text-align: center;
}

.acknowledgments-content {
    color: var(--gray-700);
    line-height: 1.75;
}

.acknowledgments-content > * + * {
    margin-top: 1.5rem;
}

.acknowledgments-content p {
    font-size: 1.125rem;
    margin-bottom: 0;
}

.acknowledgments-link {
    color: var(--gold);
    font-weight: 600;
    text-decoration: underline;
    transition: color 0.2s;
}

.acknowledgments-link:hover {
    color: var(--gold-hover);
}

.acknowledgments-list {
    list-style: none;
    margin-left: 1.5rem;
    margin-top: 0;
}

.acknowledgments-list li {
    display: flex;
    align-items: flex-start;
}

.acknowledgments-list li + li {
    margin-top: 0.5rem;
}

.acknowledgments-list li::before {
    content: '•';
    color: var(--gold);
    font-size: 1.125rem;
    margin-right: 0.75rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}
