/* ===== Local Fonts ===== */
@font-face {
    font-family: 'Montserrat';
    src: url('fonts/Montserrat-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('fonts/Montserrat-Regular.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('fonts/Montserrat-Regular.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('fonts/Montserrat-Regular.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('fonts/Inter-Light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('fonts/Inter-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('fonts/Inter-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('fonts/Inter-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

/* ===== CSS Variables & Modern Color Palette ===== */
:root {
    --primary-green: #11676A;
    --accent-green: #11676A;
    --soft-green: #4a9a9d;
    --light-green: #7cb8bb;
    --cream: #F6F6F3;
    --cream-light: #f5e0c5;
    --brown: #5E4D53;
    --brown-light: #7a656d;
    --brown-dark: #3d3538;
    --text-dark: #2d2d2d;
    --text-medium: #4d4d4d;
    --text-light: #7d7d7d;
    --white: #ffffff;
    
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    --spacing-2xl: 8rem;
    
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--brown);
    background-color: var(--cream);
    overflow-x: hidden;
    position: relative;
}

/* ===== Decorative Background Pattern ===== */
.background-pattern {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: none;
    z-index: -1;
    pointer-events: none;
}

.background-shapes {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: none;
    z-index: -1;
    pointer-events: none;
}


/* ===== Header & Navigation ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(246, 246, 243, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid rgba(94, 77, 83, 0.1);
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(246, 246, 243, 0.95);
    box-shadow: var(--shadow-md);
}

.nav {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.25rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo-image {
    height: 80px;
    width: auto;
    display: block;
}

.logo-inline {
    height: 70px;
    width: auto;
    display: inline;
}


.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-medium);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--soft-green), var(--brown));
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

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

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

.contact-btn {
    background: linear-gradient(135deg, var(--accent-green), var(--soft-green));
    color: var(--white);
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(74, 124, 106, 0.3);
}

.contact-btn::after {
    display: none;
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 124, 106, 0.4);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    z-index: 1001;
}

.hamburger span {
    width: 28px;
    height: 2px;
    background-color: var(--text-dark);
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* ===== Main Content ===== */
main {
    padding-top: 80px;
}

.section {
    padding: var(--spacing-2xl) 2rem;
    position: relative;
}

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

/* ===== Section Headers ===== */
.section-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.section-tag {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--soft-green);
    margin-bottom: 1rem;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-green);
    line-height: 1.2;
    margin-bottom: 1rem;
}

/* ===== Hero Section ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: var(--spacing-2xl);
    position: relative;
    overflow: hidden;
}

.hero-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.deco-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 1;
    filter: blur(60px);
}

.deco-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(245, 224, 197, 0.3) 0%, transparent 100%);
    top: -200px;
    right: -150px;
    animation: float 8s ease-in-out infinite;
}

.deco-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(245, 224, 197, 0.25) 0%, transparent 100%);
    bottom: -150px;
    left: -150px;
    animation: float 10s ease-in-out infinite reverse;
}

.deco-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(245, 224, 197, 0.2) 0%, transparent 100%);
    top: 40%;
    left: 5%;
    animation: float 12s ease-in-out infinite;
    animation-delay: -2s;
}

.deco-4 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(245, 224, 197, 0.4) 0%, transparent 100%);
    top: 20%;
    right: 25%;
    animation: float 9s ease-in-out infinite;
    animation-delay: -3s;
}

.deco-5 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(245, 224, 197, 0.35) 0%, transparent 100%);
    top: 60%;
    right: 15%;
    animation: float 11s ease-in-out infinite reverse;
    animation-delay: -4s;
}

.deco-6 {
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(245, 224, 197, 0.3) 0%, transparent 100%);
    bottom: 30%;
    left: 20%;
    animation: float 13s ease-in-out infinite;
    animation-delay: -1s;
}

.deco-7 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(245, 224, 197, 0.25) 0%, transparent 100%);
    top: 15%;
    left: 35%;
    animation: float 14s ease-in-out infinite reverse;
    animation-delay: -5s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-20px) scale(1.02); }
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.hero-text-container {
    max-width: 650px;
}

.hero-tagline {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--soft-green);
    margin-bottom: 1.5rem;
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary-green);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.title-line {
    display: block;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.title-line:nth-child(1) { animation-delay: 0.2s; }
.title-line:nth-child(2) { animation-delay: 0.3s; }
.title-line:nth-child(3) { animation-delay: 0.4s; }
.title-line:nth-child(4) { animation-delay: 0.5s; }

.title-line.accent {
    color: var(--soft-green);
    font-style: italic;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.hero-description .highlight {
    color: var(--soft-green);
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.hero-description .highlight::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: -8px;
    right: -8px;
    height: 8px;
    background: linear-gradient(90deg, rgba(124, 179, 146, 0.2), rgba(139, 115, 85, 0.2), rgba(124, 179, 146, 0.2));
    z-index: -1;
    border-radius: 4px;
}

.hero-cta {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--accent-green), var(--soft-green));
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(74, 124, 106, 0.35);
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(74, 124, 106, 0.45);
}

.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--text-medium);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border: 2px solid var(--brown-light);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background: var(--brown);
    color: var(--white);
    border-color: var(--brown);
    transform: translateY(-3px);
}

/* ===== Hero Images ===== */
.hero-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 1.5rem;
}

.image-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all 0.4s ease;
}

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

.image-card.featured {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
}

.image-card.secondary {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
}

.image-card.tertiary {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    filter: saturate(0.85) brightness(1.05) sepia(0.08);
}

.image-card:hover .hero-img {
    transform: scale(1.05);
    filter: saturate(1) brightness(1.08) sepia(0.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(74, 124, 106, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-card:hover .image-overlay {
    opacity: 1;
}

.image-label {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-green);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
}

/* ===== About Section ===== */
.about {
    background: var(--cream-light);
}

.about-grid {
    display: grid;
    grid-template-columns: 0.6fr 1.2fr;
    gap: var(--spacing-xl);
    align-items: start;
    position: relative;
    z-index: 1;
}

.about-image-wrapper {
    position: relative;
}

.image-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-img {
    width: 100%;
    height: auto;
    display: block;
    filter: saturate(0.85) brightness(1.03) sepia(0.08);
    transition: all 0.4s ease;
}

.image-frame:hover .about-img {
    filter: saturate(1) brightness(1.08) sepia(0.05);
    transform: scale(1.02);
}

.frame-deco {
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    border: 2px solid rgba(139, 115, 85, 0.3);
    border-radius: 20px;
    z-index: -1;
}

.quote-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: linear-gradient(135deg, var(--accent-green), var(--soft-green));
    color: var(--white);
    padding: 1.5rem 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    max-width: 280px;
}

.quote-badge p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.5;
    margin: 0;
}

.about-content-wrapper {
    padding-top: 2rem;
}

.about-text {
    margin-bottom: 2rem;
}

.about-text p {
    font-size: 1.15rem;
    color: var(--text-medium);
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.brand-name {
    color: var(--soft-green);
    font-weight: 600;
    font-style: italic;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.value-item {
    background: var(--white);
    padding: 2rem 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid rgba(139, 115, 85, 0.1);
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(139, 115, 85, 0.2);
}

.value-item h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    color: var(--primary-green);
    margin-bottom: 0.75rem;
}

.value-item p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ===== Approach Section ===== */
.approach {
    background: var(--cream);
}

.section-intro {
    font-size: 1.2rem;
    color: var(--text-medium);
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto var(--spacing-xl);
    text-align: center;
}

.section-intro span {
    color: var(--soft-green);
    font-weight: 600;
}

.approach-timeline {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto var(--spacing-xl);
}

.approach-step {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    padding: 2rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid rgba(139, 115, 85, 0.1);
}

.approach-step:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(74, 124, 106, 0.2);
}

.step-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--soft-green);
    opacity: 0.3;
    line-height: 1;
    min-width: 100px;
}

.step-content h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    color: var(--primary-green);
    margin-bottom: 0.75rem;
}

.step-content p {
    font-size: 1.05rem;
    color: var(--text-medium);
    line-height: 1.7;
}

.step-content span.green {
    color: var(--primary-green);
    font-weight:bold;
}

.step-decoration {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--soft-green), var(--brown));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.approach-step:hover .step-decoration {
    opacity: 1;
}

.approach-philosophy {
    max-width: 800px;
    margin: 0 auto;
}

.philosophy-card {
    background: linear-gradient(135deg, var(--primary-green), var(--accent-green));
    color: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

.philosophy-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: shimmer 8s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10%); }
}

.philosophy-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.philosophy-card p {
    font-size: 1.15rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.philosophy-card strong {
    color: var(--light-green);
}

/* ===== Contact Section ===== */
.contact {
    background: var(--cream-light);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--spacing-xl);
    align-items: start;
}

.contact-info {
    padding-top: 2rem;
}

.contact-intro {
    font-size: 1.2rem;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 3rem;
}

.process-timeline {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.process-item {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid rgba(139, 115, 85, 0.1);
}

.process-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: rgba(74, 124, 106, 0.2);
}

.process-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--soft-green), var(--light-green));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--white);
}

.process-icon svg {
    width: 28px;
    height: 28px;
}

.process-text h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 0.25rem;
}

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

.contact-cta {
    position: sticky;
    top: 120px;
}

.contact-card {
    background: linear-gradient(135deg, var(--accent-green), var(--soft-green));
    color: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.deco-circle-inner {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.contact-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
}

.contact-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    opacity: 0.95;
    position: relative;
}

.contact-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    background: var(--white);
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
}

.contact-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.contact-button svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.contact-button:hover svg {
    transform: translateX(3px);
}

/* ===== Footer ===== */
.footer {
    background: var(--primary-green);
    color: var(--white);
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.footer-brand {
    padding-top: 1rem;
}

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

.footer-logo-image {
    height: 60px;
    width: auto;
    display: block;
}

.footer-brand p {
    font-size: 1.05rem;
    opacity: 0.85;
    line-height: 1.7;
}

.footer-links h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer-link-group a {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 1rem;
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
}

.footer-link-group a:hover {
    color: var(--white);
    transform: translateX(5px);
}

.footer-bottom {
    grid-column: 1 / -1;
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-bottom p {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* ===== Responsive Design ===== */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .section-title {
        font-size: 3rem;
    }
}

@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text-container {
        margin: 0 auto;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .about-image-wrapper {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .contact-cta {
        position: static;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 100px 2rem 2rem;
        gap: 1.5rem;
        transition: right 0.4s ease;
        box-shadow: var(--shadow-xl);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
    
    .section {
        padding: var(--spacing-xl) 1.5rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-images {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(3, 300px);
    }
    
    .image-card.featured,
    .image-card.secondary,
    .image-card.tertiary {
        grid-column: 1;
        grid-row: auto;
    }
    
    .approach-step {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    :root {
        --spacing-xl: 4rem;
        --spacing-2xl: 5rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-primary,
    .cta-secondary {
        width: 100%;
        text-align: center;
    }
    
    .offers-grid {
        grid-template-columns: 1fr;
    }
    
    .offer-item {
        padding: 1.5rem;
    }
    
    .offer-item h4 {
        font-size: 1.2rem;
    }
    
    .format-info {
        padding: 1.25rem 1.5rem;
        transition: all 0.3s ease;
    }
    
    .contact-text p {
        font-size: 1.1rem;
    }
}

/* ===== Approach Offers Section ===== */
.approach-offers {
    max-width: 800px;
    margin: 3rem auto 0;
}

.offers-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.offer-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid rgba(139, 115, 85, 0.1);
}

.offer-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(74, 124, 106, 0.2);
}

.format-info:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(74, 124, 106, 0.2);
}

.offer-item h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    color: var(--primary-green);
    margin-bottom: 0.75rem;
}

.offer-item p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
}

.format-info {
    background: var(--white);
    padding: 1.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(139, 115, 85, 0.1);
    transition: all 0.3s ease;
}

.format-info h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.format-info p {
    font-size: 1rem;
    color: var(--text-light);
}

/* ===== Contact Text Section ===== */
.contact-text {
    margin-bottom: 2rem;
}

.contact-text p {
    font-size: 1.2rem;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.contact-text p:last-child {
    color: var(--soft-green);
    font-weight: 500;
}

/* ===== Legal Section (Impressum) ===== */
.legal-section {
    min-height: 100vh;
    padding-top: calc(var(--spacing-2xl) + 80px);
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.legal-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    color: var(--primary-green);
    margin-top: 2rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(74, 124, 106, 0.2);
}

.legal-content h2:first-of-type {
    margin-top: 0;
}

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

.legal-content a {
    color: var(--soft-green);
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-content a:hover {
    color: var(--primary-green);
    text-decoration: underline;
}

.legal-note {
    margin-top: 3rem;
    padding: 1rem;
    background: var(--cream-light);
    border-radius: 10px;
    text-align: center;
    color: var(--text-light);
}

@media (max-width: 768px) {
    .legal-section {
        padding-top: calc(var(--spacing-xl) + 80px);
    }
    
    .legal-content {
        padding: 2rem 1.5rem;
    }
    
    .legal-content h2 {
        font-size: 1.3rem;
    }
}

/* ===== Smooth Scrolling Offset ===== */
html {
    scroll-padding-top: 100px;
}

/* ===== Selection Styling ===== */
::selection {
    background: rgba(74, 124, 106, 0.3);
    color: var(--text-dark);
}

/* ===== Focus Styles ===== */
:focus-visible {
    outline: 3px solid var(--soft-green);
    outline-offset: 2px;
}

/* ===== Scrollbar Styling ===== */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--cream-light);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--brown-light), var(--brown));
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--brown), var(--brown-dark));
}
