/* Reset & Variables */
:root {
    --primary-color: #2d5a27;
    --secondary-color: #6b8e5a;
    --accent-color: #a8c09a;
    --text-dark: #1a1a1a;
    --text-medium: #4a5568;
    --text-light: #718096;
    --bg-primary: #ffffff;
    --bg-secondary: #f8faf6;
    --bg-accent: #f0f4ed;
    --border-light: #e8ede6;
    --shadow-soft: 0 4px 24px rgba(45, 90, 39, 0.08);
    --shadow-medium: 0 8px 32px rgba(45, 90, 39, 0.12);
    --shadow-strong: 0 16px 48px rgba(45, 90, 39, 0.16);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    --gradient-soft: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-accent) 100%);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--bg-primary);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'EB Garamond', serif;
    font-weight: 500;
    line-height: 1.3;
    color: var(--text-dark);
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-dark);
}

.logo-mark {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'EB Garamond', serif;
    font-size: 24px;
    font-weight: 600;
    color: white;
}

.logo-text {
    font-family: 'EB Garamond', serif;
    font-size: 28px;
    font-weight: 500;
    color: var(--text-dark);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 48px;
    margin: 0;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-medium);
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: width 0.3s ease;
}

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

.nav-menu a:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--gradient-soft);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-intro {
    max-width: 500px;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 24px;
    font-weight: 400;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 5rem);
    font-family: 'EB Garamond', serif;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 32px;
}

.hero-highlight {
    background: var(--gradient-primary);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-style: italic;
}

.hero-image {
    position: relative;
    height: 600px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-strong);
}

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

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, rgba(45, 90, 39, 0.1) 0%, transparent 50%);
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    color: var(--text-light);
    font-size: 14px;
    font-weight: 500;
}

.scroll-line {
    width: 1px;
    height: 32px;
    background: var(--text-light);
    animation: scroll-bounce 2s infinite;
}

@keyframes scroll-bounce {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(8px); opacity: 0.5; }
}

/* Section Intro */
.section-intro {
    text-align: center;
    margin-bottom: 80px;
}

.section-number {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: var(--secondary-color);
    background: var(--bg-accent);
    padding: 8px 16px;
    border-radius: 24px;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}

.section-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-family: 'EB Garamond', serif;
    font-weight: 400;
    margin-bottom: 24px;
}

/* Philosophy Section */
.philosophy {
    padding: 120px 0;
    background: var(--bg-primary);
}

.philosophy-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.philosophy-text {
    position: sticky;
    top: 120px;
}

.philosophy-image {
    width: 100%;
    height: 320px;
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: var(--shadow-medium);
}

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

.lead-text {
    font-size: 20px;
    line-height: 1.6;
    color: var(--text-medium);
    margin-bottom: 48px;
}

.philosophy-principles {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.principle h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.principle p {
    color: var(--text-light);
    line-height: 1.7;
}

.philosophy-visual {
    background: var(--bg-secondary);
    padding: 48px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

.philosophy-quote {
    font-family: 'EB Garamond', serif;
    font-size: 28px;
    font-style: italic;
    line-height: 1.4;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.philosophy-quote::before {
    content: '"';
    font-size: 48px;
    color: var(--secondary-color);
    position: relative;
    top: 12px;
    margin-right: 8px;
}

cite {
    font-style: normal;
    color: var(--text-light);
    font-weight: 500;
}

/* Workshops Section */
.workshops {
    padding: 120px 0;
    background: var(--bg-secondary);
}

.workshops-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(480px, 1fr));
    gap: 32px;
}

.workshop-card {
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
}

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

.workshop-card--primary {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.workshop-image {
    height: 300px;
    position: relative;
    overflow: hidden;
}

.workshop-card--primary .workshop-image {
    height: 100%;
}

.workshop-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.workshop-header {
    padding: 32px 32px 0;
}

.workshop-badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary-color);
    background: var(--bg-accent);
    padding: 6px 12px;
    border-radius: 16px;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.workshop-badge--sport {
    color: #d69e2e;
    background: #fef5e7;
}

.workshop-badge--farm {
    color: #38a169;
    background: #f0fff4;
}

.workshop-badge--exotic {
    color: #805ad5;
    background: #faf5ff;
}

.workshop-header h3 {
    font-size: 28px;
    margin-bottom: 16px;
}

.workshop-details {
    padding: 0 32px 32px;
}

.workshop-description {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 24px;
}

.workshop-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.workshop-features span {
    font-size: 12px;
    font-weight: 500;
    color: var(--secondary-color);
    background: var(--bg-accent);
    padding: 6px 12px;
    border-radius: 16px;
}

.workshop-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.price-label {
    font-size: 14px;
    color: var(--text-light);
}

.price-value {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-color);
}

/* Creations Section */
.creations {
    padding: 120px 0;
    background: var(--bg-primary);
}

.creations-content {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.signature-piece {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.signature-visual {
    position: relative;
}

.signature-image {
    width: 100%;
    height: 400px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

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

.signature-label {
    position: absolute;
    top: 24px;
    right: 24px;
    background: rgba(255, 255, 255, 0.9);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary-color);
    backdrop-filter: blur(10px);
}

.signature-description h3 {
    font-size: 36px;
    margin-bottom: 24px;
}

.signature-description p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 32px;
    font-size: 18px;
}

.signature-notes {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.signature-notes li {
    color: var(--text-medium);
    position: relative;
    padding-left: 24px;
}

.signature-notes li::before {
    content: '•';
    color: var(--secondary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.creations-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

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

.category-image {
    width: 100%;
    height: 240px;
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 24px;
    box-shadow: var(--shadow-soft);
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.creation-category:hover .category-image img {
    transform: scale(1.05);
}

.creation-category h4 {
    font-size: 24px;
    margin-bottom: 16px;
}

.creation-category ul {
    list-style: none;
    text-align: left;
}

.creation-category li {
    color: var(--text-light);
    padding: 8px 0;
    border-bottom: 1px solid var(--border-light);
}

.creation-category li:last-child {
    border-bottom: none;
}

/* Origin Section */
.origin {
    padding: 120px 0;
    background: var(--bg-secondary);
}

.origin-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.origin-visual {
    grid-column: span 1;
}

.origin-visual img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-medium);
}

.origin-timeline {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.timeline-item {
    position: relative;
    padding-left: 32px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 12px;
    height: 12px;
    background: var(--secondary-color);
    border-radius: 50%;
}

.timeline-item::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 20px;
    width: 2px;
    height: calc(100% + 28px);
    background: var(--border-light);
}

.timeline-item:last-child::after {
    display: none;
}

.timeline-date {
    font-size: 14px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 8px;
    display: block;
}

.timeline-content h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.timeline-content p {
    color: var(--text-light);
    line-height: 1.6;
}

.origin-text h2 {
    font-size: 32px;
    margin-bottom: 24px;
}

.origin-text p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 24px;
}

/* Contact Section */
.contact {
    padding: 120px 0;
    background: var(--bg-primary);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-info h2 {
    font-size: 40px;
    margin-bottom: 48px;
}

.contact-locations {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.location h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.location address {
    font-style: normal;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 12px;
}

.location p a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
}

.contact-social h3 {
    font-size: 24px;
    margin-bottom: 32px;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.social-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--bg-accent);
    transform: translateY(-2px);
}

.social-link span:first-child {
    font-weight: 600;
}

.social-handle {
    color: var(--text-light);
    font-size: 14px;
}

/* Footer */
.footer {
    padding: 80px 0 40px;
    background: var(--primary-color);
    color: white;
    text-align: center;
}

.footer-content p {
    margin-bottom: 16px;
}

.footer-craft {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content,
    .philosophy-content,
    .signature-piece,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .workshop-card--primary {
        grid-column: span 1;
        display: block;
    }

    .origin-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }

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

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

    .nav-toggle {
        display: flex;
    }

    .hero {
        text-align: center;
        padding: 100px 0 60px;
    }

    .hero-content {
        gap: 32px;
    }

    .hero-image {
        height: 400px;
    }

    .section-intro {
        margin-bottom: 48px;
    }

    .philosophy,
    .workshops,
    .creations,
    .origin,
    .contact {
        padding: 80px 0;
    }

    .philosophy-text {
        position: static;
    }

    .creations-gallery {
        grid-template-columns: 1fr;
    }

    .container {
        padding: 0 16px;
    }

    .nav-container {
        padding: 0 16px;
    }
}