/* ===== CSS Variables ===== */
:root {
    --primary-color: #2c1810;
    --secondary-color: #8b6914;
    --accent-color: #EFC137;
    --text-color: #333333;
    --text-light: #666666;
    --bg-color: #ffffff;
    --bg-light: #f8f6f3;
    --bg-dark: #1a1a1a;
    --border-color: #e5e5e5;
    --font-primary: 'Noto Sans KR', 'Pretendard', sans-serif;
    --font-heading: 'Noto Sans KR', 'Pretendard', sans-serif;
    --transition: all 0.3s ease;
}

/* ===== Reset & Base ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--bg-color);
}

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

ul {
    list-style: none;
}

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

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

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--primary-color);
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
}

/* ===== Buttons ===== */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: 0;
    cursor: pointer;
    transition: var(--transition);
}

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

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

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

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: #fff;
}

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

.btn-accent:hover {
    background-color: var(--secondary-color);
    color: #fff;
}

/* ===== Header ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.header.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    height: 50px;
    width: auto;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 1px;
}

/* ===== Navigation ===== */
.nav-menu {
    display: flex;
    gap: 35px;
}

.nav-item {
    position: relative;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-color);
    padding: 10px 0;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

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

/* Dropdown */
.dropdown {
    position: absolute;
    top: 100%;
    left: -20px;
    min-width: 200px;
    background-color: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    padding: 15px 0;
}

.nav-item:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown a {
    display: block;
    padding: 10px 25px;
    font-size: 0.9rem;
    color: var(--text-color);
}

.dropdown a:hover {
    background-color: var(--bg-light);
    color: var(--secondary-color);
}

/* Hide dropdown arrow on desktop */
.dropdown-arrow {
    display: none;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

/* ===== Hero Section ===== */
.hero {
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-color: var(--bg-dark);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.7;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    max-width: 900px;
    padding: 0 20px;
}

.hero-subtitle {
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: var(--accent-color);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: #fff;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 35px;
    opacity: 0.9;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== Section Styles ===== */
.section {
    padding: 100px 0;
}

.section-dark {
    background-color: var(--bg-dark);
    color: #fff;
}

.section-dark h2,
.section-dark h3,
.section-dark h4 {
    color: #fff;
}

.section-light {
    background-color: var(--bg-light);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.section-description {
    max-width: 700px;
    margin: 0 auto;
    color: var(--text-light);
    font-size: 1.1rem;
}

/* ===== Welcome Section ===== */
.welcome-section {
    background-color: #fff;
    padding: 80px 0;
}

.welcome-header {
    text-align: center;
    margin-bottom: 40px;
}

.welcome-header h2 {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.welcome-line {
    width: 300px;
    height: 3px;
    background-color: var(--accent-color);
    margin: 0 auto;
}

.welcome-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.welcome-content p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--text-color);
    margin-bottom: 25px;
}

.gold {
    color: var(--accent-color);
}

/* ===== Video Section ===== */
.video-section {
    background-color: #fff;
    padding: 80px 0;
}

.video-header {
    text-align: center;
    margin-bottom: 40px;
}

.video-header h2 {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary-color);
}

.video-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.video-wrapper video {
    width: 100%;
    height: auto;
    display: block;
    background: #000;
}

.video-btn-wrapper {
    text-align: center;
    margin-top: 40px;
}

.btn-outline {
    display: inline-block;
    padding: 15px 40px;
    background-color: var(--primary-color);
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background-color: var(--accent-color);
    color: var(--primary-color);
}

/* ===== Image Grid Section ===== */
.image-grid-section {
    padding: 0;
    max-width: 1400px;
    margin: 0 auto;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    padding: 0 20px;
}

.grid-item {
    position: relative;
    aspect-ratio: 1/1;
    overflow: hidden;
    cursor: pointer;
}

.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.grid-item:hover img {
    transform: scale(1.1);
}

.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    transition: opacity 0.3s ease;
}

.grid-item:hover .grid-overlay {
    opacity: 0;
}

.grid-overlay span {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.grid-hover-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #3d3d3d;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.grid-item:hover .grid-hover-content {
    opacity: 1;
}

.grid-hover-content h4 {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.grid-hover-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

.grid-btn {
    display: inline-block;
    padding: 12px 0;
    border: none;
    border-bottom: 1px solid var(--accent-color);
    color: var(--accent-color);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    background: transparent;
}

.grid-btn:hover {
    color: #fff;
    border-bottom-color: #fff;
}

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

    .grid-hover-content {
        padding: 20px;
    }

    .grid-hover-content h4 {
        font-size: 1rem;
    }

    .grid-hover-content p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .image-grid {
        grid-template-columns: 1fr;
    }

    .grid-overlay span {
        font-size: 1rem;
    }
}

/* ===== About Section ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--accent-color);
    z-index: -1;
}

.about-content h3 {
    margin-bottom: 25px;
}

.about-content p {
    color: var(--text-light);
    margin-bottom: 20px;
}

/* ===== About Page Sections ===== */
.about-story-section,
.about-mission-section {
    background-color: #fff;
    padding: 80px 0;
}

.about-header {
    text-align: center;
    margin-bottom: 30px;
}

.about-header h2 {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.header-line {
    width: 200px;
    height: 3px;
    background-color: var(--accent-color);
    margin: 0 auto;
}

.about-subtitle {
    text-align: center;
    margin-bottom: 40px;
}

.about-subtitle p {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-light);
    margin: 0;
}

.about-image-center {
    max-width: 600px;
    margin: 0 auto 40px;
}

.about-image-center img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.about-text-center {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-text-center p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--text-color);
    margin-bottom: 25px;
}

/* About Video Section */
.about-video-section {
    background-color: #fff;
    padding: 40px 0 80px;
}

.about-video-section .video-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.about-video-section video {
    width: 100%;
    height: auto;
    display: block;
    background: #000;
}

/* Why Monte Section */
.why-monte-section {
    background-color: #fff;
    padding: 80px 0;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    max-width: 1000px;
    margin: 40px auto 0;
}

.why-item {
    background-color: #1a1a1a;
    color: #fff;
    padding: 30px 20px;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.why-item:hover {
    background-color: var(--accent-color);
    color: var(--primary-color);
}

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

@media (max-width: 600px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-item {
        padding: 25px 15px;
        font-size: 0.75rem;
    }
}

/* ===== Sustainability Page ===== */
.sustainability-section {
    background-color: #fff;
    padding: 80px 0;
}

.sustainability-pillars {
    background-color: #fff;
    padding: 0 0 80px;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.pillar-item {
    text-align: center;
    padding: 0 20px;
    border-left: 1px solid var(--border-color);
}

.pillar-item:first-child {
    border-left: none;
}

.pillar-item h4 {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.pillar-item p {
    font-size: 1rem;
    line-height: 1.9;
    color: var(--text-color);
}

@media (max-width: 900px) {
    .pillars-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .pillar-item {
        border-left: none;
        border-top: 1px solid var(--border-color);
        padding-top: 40px;
    }

    .pillar-item:first-child {
        border-top: none;
        padding-top: 0;
    }
}

/* ===== Features Section ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.feature-card {
    text-align: center;
    padding: 50px 30px;
    background-color: #fff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-light);
    border-radius: 50%;
}

.feature-icon svg,
.feature-icon img {
    width: 40px;
    height: 40px;
}

.feature-card h4 {
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* ===== Coffee Section ===== */
.coffee-showcase {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
}

.coffee-item {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.coffee-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.coffee-item:hover img {
    transform: scale(1.1);
}

.coffee-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px;
    color: #fff;
}

.coffee-overlay h4 {
    color: #fff;
    margin-bottom: 10px;
}

.coffee-overlay p {
    opacity: 0.8;
    font-size: 0.95rem;
}

/* ===== Services Section ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background-color: #fff;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.service-image {
    height: 250px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.service-content {
    padding: 30px;
}

.service-content h4 {
    margin-bottom: 15px;
}

.service-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

/* ===== CTA Section ===== */
.cta-section {
    background-color: var(--primary-color);
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    color: #fff;
    margin-bottom: 20px;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
}

/* ===== Contact Section ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h3 {
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    color: var(--primary-color);
}

.contact-text h5 {
    margin-bottom: 5px;
    color: var(--primary-color);
}

.contact-text p {
    color: var(--text-light);
    margin: 0;
}

/* Contact Form */
.contact-form {
    background-color: var(--bg-light);
    padding: 40px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--border-color);
    background-color: #fff;
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

/* ===== Footer ===== */
.footer {
    background-color: var(--bg-dark);
    color: #fff;
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    margin-top: 20px;
    line-height: 1.8;
}

.footer h5 {
    color: #fff;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.footer-links a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 12px;
    font-size: 0.95rem;
}

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

.footer-contact p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--accent-color);
}

.social-links svg {
    width: 20px;
    height: 20px;
    fill: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin: 0;
}

/* ===== Page Header ===== */
.page-header {
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-color: var(--bg-dark);
    margin-top: 80px;
}

.page-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.5;
}

.page-header-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
}

.page-header-content h1 {
    color: #fff;
    font-size: 3rem;
    margin-bottom: 15px;
}

.page-header-content p {
    font-size: 1.2rem;
    opacity: 0.8;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .features-grid,
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header-inner {
        padding: 12px 0;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background-color: #fff;
        flex-direction: column;
        padding: 80px 30px 30px;
        gap: 0;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
        transition: var(--transition);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-item {
        border-bottom: 1px solid var(--border-color);
    }

    .nav-link {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 0;
    }

    .nav-link::after {
        display: none !important;
        content: none !important;
    }

    .dropdown-arrow {
        display: inline-block;
        font-size: 1.2rem;
        font-weight: 300;
        color: var(--text-light);
    }

    .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding: 0 0 0 20px;
        display: none;
    }

    .dropdown.active {
        display: block;
        padding-bottom: 10px;
    }

    .dropdown a {
        padding: 8px 0;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .section {
        padding: 60px 0;
    }

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image::before {
        display: none;
    }

    .features-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }

    .coffee-showcase {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }
    h3 { font-size: 1.5rem; }

    .section-title {
        font-size: 1.8rem;
    }

    .page-header {
        height: 300px;
    }

    .page-header-content h1 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 500px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }

    .feature-card {
        padding: 30px 20px;
    }

    .contact-form {
        padding: 25px;
    }
}

/* ===== Coffee Page Styles ===== */
.coffee-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1100px;
    margin: 60px auto 0;
}

.coffee-pillar {
    text-align: center;
    padding: 0 20px;
    border-left: 1px solid var(--border-color);
}

.coffee-pillar:first-child {
    border-left: none;
}

.coffee-pillar h4 {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.coffee-pillar p {
    font-size: 1rem;
    line-height: 1.9;
    color: var(--text-color);
}

@media (max-width: 900px) {
    .coffee-pillars {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .coffee-pillar {
        border-left: none;
        border-top: 1px solid var(--border-color);
        padding-top: 40px;
    }

    .coffee-pillar:first-child {
        border-top: none;
        padding-top: 0;
    }
}

/* ===== Brewing Methods Section ===== */
.brewing-section {
    background-color: var(--bg-light);
}

.brew-methods-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
    margin-top: 60px;
}

.brew-method-card {
    background: #fff;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.brew-method-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.brew-method-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    color: var(--accent-color);
}

.brew-method-icon svg {
    width: 100%;
    height: 100%;
}

.brew-method-card h4 {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.brew-recipe {
    text-align: left;
    margin-bottom: 15px;
}

.brew-recipe p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 8px;
    line-height: 1.5;
}

.brew-recipe p:last-child {
    margin-bottom: 0;
}

.brew-recipe strong {
    color: var(--text-color);
}

.brew-tip {
    font-size: 0.8rem;
    color: var(--accent-color);
    font-style: italic;
    margin: 0;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

@media (max-width: 1200px) {
    .brew-methods-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .brew-methods-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .brew-method-card {
        padding: 25px 15px;
    }

    .brew-method-icon {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 480px) {
    .brew-methods-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== Farm Partnership Page Styles ===== */
.farm-section {
    padding: 60px 0;
}

.farm-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.farm-card-reverse {
    direction: rtl;
}

.farm-card-reverse > * {
    direction: ltr;
}

.farm-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.farm-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.farm-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 30px;
}

.farm-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.farm-detail {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.farm-detail strong {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--primary-color);
}

.farm-detail span {
    font-size: 0.95rem;
    color: var(--text-light);
}

@media (max-width: 900px) {
    .farm-card {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .farm-card-reverse {
        direction: ltr;
    }

    .farm-image img {
        height: 300px;
    }
}

/* ===== Brewing Page Styles ===== */
.brewing-page-section {
    padding: 80px 0;
}

.brewing-intro {
    text-align: center;
    max-width: 800px;
    margin: 50px auto 60px;
}

.brewing-intro h3 {
    font-size: 1.3rem;
    font-weight: 500;
    font-style: italic;
    letter-spacing: 1px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.brewing-intro p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-color);
}

.brew-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.brew-card {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.brew-card-image {
    flex-shrink: 0;
    width: 150px;
    height: 180px;
    background-color: #f5ebe0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 20px;
}

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

.brew-card-image svg {
    width: 100%;
    height: 100%;
    color: #8b6914;
}

.brew-card-content h4 {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.brew-card-content ol {
    list-style: decimal;
    padding-left: 20px;
    margin: 0;
}

.brew-card-content ol li {
    font-size: 0.9rem;
    line-height: 1.8;
    color: var(--text-color);
}

.brew-card-center {
    grid-column: 1 / -1;
    justify-self: center;
    max-width: 400px;
}

@media (max-width: 900px) {
    .brew-cards-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .brew-card-center {
        max-width: 100%;
    }
}

@media (max-width: 500px) {
    .brew-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .brew-card-image {
        width: 200px;
        height: 220px;
    }

    .brew-card-content ol {
        text-align: left;
    }
}

/* ===== Roastery Page Styles ===== */
.roastery-section {
    padding: 80px 0;
}

.roastery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

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

.roastery-content p {
    font-size: 1rem;
    line-height: 1.9;
    color: var(--text-color);
    margin-bottom: 25px;
}

.roastery-content p:last-child {
    margin-bottom: 0;
}

.roastery-content strong {
    color: var(--primary-color);
}

@media (max-width: 900px) {
    .roastery-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .roastery-image {
        order: -1;
    }
}

/* ===== Farm Partnership Page Styles ===== */
.farm-section {
    padding: 60px 0;
}

.farm-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.farm-card-reverse {
    direction: rtl;
}

.farm-card-reverse > * {
    direction: ltr;
}

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

.farm-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.farm-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.farm-content p {
    font-size: 0.95rem;
    line-height: 1.9;
    color: var(--text-color);
    margin-bottom: 25px;
}

.farm-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px 40px;
    margin-top: 30px;
}

.farm-detail strong {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.farm-detail span {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-color);
}

/* Farm Image Slider */
.farm-slider {
    position: relative;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.slider-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.slider-image.active {
    opacity: 1;
}

.slider-indicators {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.indicator.active {
    background: var(--accent-color);
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.8);
}

@media (max-width: 900px) {
    .farm-card {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .farm-card-reverse {
        direction: ltr;
    }

    .farm-image {
        order: -1;
    }

    .slider-container,
    .farm-image img {
        height: 300px;
    }
}

@media (max-width: 500px) {
    .farm-details {
        grid-template-columns: 1fr;
    }
}
