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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #2E3D36;
    background-color: #EFE9E2;
}

/* Color Variables */
:root {
    --primary-sand: #EFE9E2;
    --secondary-beige: #F6F2EC;
    --sage-green: #7F8D80;
    --dark-green: #2E3D36;
    --warm-brown: #5C5348;
    --accent-tan: #D7CEC3;
    --white: #FFFFFF;
}

/* Typography */
.display-font {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.body-font {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

/* Skip Link */
.skip-link {
    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.skip-link:focus {
    position: fixed;
    left: 1rem;
    top: 1rem;
    width: auto;
    height: auto;
    background: var(--dark-green);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    text-decoration: none;
    z-index: 1000;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(246, 242, 236, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--accent-tan);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    text-decoration: none;
    color: inherit;
}

.logo-icon {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
    background: transparent;
    border-radius: 4px;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.logo-mark {
    width: 2.5rem;
    height: 2.5rem;
    background: var(--dark-green);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-beige);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-green);
    line-height: 1.2;
}

.logo-subtitle {
    font-size: 0.7rem;
    color: var(--warm-brown);
    opacity: 0.8;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Navigation */
.nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--dark-green);
    font-weight: 500;
    transition: color 0.2s ease;
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 0.25rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger {
    width: 1.5rem;
    height: 2px;
    background: var(--dark-green);
    transition: all 0.3s ease;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
}

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

.btn-primary:hover {
    background: var(--sage-green);
    transform: translateY(-1px);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.mobile-only {
    display: none;
}

/* Hero Section */
.hero {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-sand) 0%, var(--secondary-beige) 100%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--dark-green);
}

.hero-description {
    font-size: 1.125rem;
    color: var(--warm-brown);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-actions {
    margin-top: 2rem;
}

.hero-aside {
    display: flex;
    justify-content: center;
}

.info-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--accent-tan);
    max-width: 400px;
    width: 100%;
}

.info-card-simple {
    background: var(--white);
    padding: 2rem;
    max-width: 400px;
    width: 100%;
    font-family: 'Inter', sans-serif;
}

.info-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--dark-green);
    margin-bottom: 0.5rem;
    margin-top: 1rem;
}

.info-title:first-child {
    margin-top: 0;
}

.info-text {
    color: var(--warm-brown);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.info-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.info-list li {
    padding: 0.5rem 0;
    color: var(--warm-brown);
    position: relative;
    padding-left: 1.5rem;
}

.info-list li::before {
    content: '•';
    color: var(--sage-green);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.info-note {
    font-size: 0.875rem;
    color: var(--warm-brown);
    font-style: italic;
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid var(--accent-tan);
}

.info-note-large {
    font-size: 1rem;
    color: var(--warm-brown);
    font-weight: 500;
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid var(--accent-tan);
    margin-top: 1rem;
}

/* Sections */
.section {
    padding: 5rem 0;
}

.section-alt {
    background: var(--secondary-beige);
    border-top: 1px solid var(--accent-tan);
    border-bottom: 1px solid var(--accent-tan);
}

.section-content {
    max-width: 1000px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--dark-green);
}

.section-divider {
    width: 4rem;
    height: 4px;
    background: var(--sage-green);
    border-radius: 2px;
    margin: 0 auto;
}

.section-description {
    font-size: 1.125rem;
    color: var(--warm-brown);
    line-height: 1.7;
    margin-bottom: 1rem;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: start;
    max-width: 1000px;
    margin: 0 auto;
}

.about-photo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.circular-photo {
    width: 260px;
    height: 260px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--accent-tan);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-text p {
    font-size: 1.125rem;
    color: var(--warm-brown);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* Approach Section */
.approach-header {
    text-align: center;
    margin-bottom: 3rem;
}

.approach-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.approach-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--accent-tan);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.approach-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-green);
    margin-bottom: 1rem;
}

.faq-card-simple .card-title {
    font-family: 'Inter', sans-serif;
}

.card-text {
    color: var(--warm-brown);
    line-height: 1.6;
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.contact-info {
    max-width: 500px;
}

.contact-details {
    margin: 2rem 0;
}

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

.contact-label {
    font-weight: 600;
    color: var(--dark-green);
    min-width: 80px;
}

.contact-link {
    color: var(--sage-green);
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-link:hover {
    color: var(--dark-green);
    text-decoration: underline;
}

.contact-text {
    color: var(--warm-brown);
}

.contact-faq {
    display: flex;
    justify-content: center;
}

.faq-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--accent-tan);
    max-width: 400px;
    width: 100%;
}

.faq-card-simple {
    background: var(--white);
    padding: 2rem;
    max-width: 400px;
    width: 100%;
    font-family: 'Inter', sans-serif;
}

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

.faq-list li {
    padding: 0.75rem 0;
    color: var(--warm-brown);
    border-bottom: 1px solid var(--accent-tan);
}

.faq-list li:last-child {
    border-bottom: none;
}

/* Map */
.map-container {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--accent-tan);
}

.map-container iframe {
    display: block;
    width: 100%;
    height: 360px;
}

/* Footer */
.footer {
    background: var(--dark-green);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    max-width: 1000px;
    margin: 0 auto;
}

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

.footer-title {
    font-family: 'Inter', sans-serif;
    font-size: 0.975rem;
    font-weight: 600;
    margin-bottom: 0.65rem;
    color: var(--white);
}

.footer-details p {
    margin-bottom: 0.325rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
}

.footer-label {
    font-weight: 600;
    color: var(--white);
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.2s ease;
    font-size: 0.875rem;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1.5rem;
    text-align: center;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.325rem;
    font-size: 0.875rem;
}

.footer-credit {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
}

.footer-credit a {
    color: var(--sage-green);
    text-decoration: none;
}

.footer-credit a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    /* Mobile Header Layout */
    .header-content {
        display: grid;
        grid-template-columns: 1fr auto;
        align-items: center;
        gap: 0.625rem;
    }
    
    .logo {
        display: flex;
        align-items: center;
        gap: 0.625rem;
    }
    
    .logo-icon {
        display: none;
    }
    
    .logo-text {
        display: flex;
        flex-direction: column;
        align-items: center;
        flex: 1;
    }
    
    .nav {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .btn-primary.desktop-only {
        display: none;
    }
    
    .mobile-only {
        display: block;
        width: 100%;
        margin-top: 1.25rem;
    }
    
    /* Mobile Hero Layout */
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero {
        padding: 4rem 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-actions {
        display: none;
    }
    
    .info-card-simple {
        margin-bottom: 1.25rem;
    }
    
    
    .section {
        padding: 3rem 0;
    }
    
    /* Contact Section Divider */
    #contact {
        border-top: 1px solid rgba(0,0,0,0.1);
        margin-top: 2rem;
        padding-top: 3rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-info .btn {
        display: none;
    }
    
    .footer-info {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .circular-photo {
        width: 195px;
        height: 195px;
    }
    
    /* Mobile Footer Phone Color */
    .footer-details p:first-child {
        color: #ccd5ae;
    }
    
    .footer-details p:first-child a {
        color: #ccd5ae;
    }
    
    .footer-details p:first-child a:hover {
        color: #ccd5ae;
        opacity: 0.8;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .info-card,
    .faq-card {
        padding: 1.5rem;
    }
    
    .approach-card {
        padding: 1.5rem;
    }
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Focus styles for accessibility */
.btn:focus,
.nav-link:focus,
.contact-link:focus {
    outline: 2px solid var(--sage-green);
    outline-offset: 2px;
}

/* Privacy Policy Page */
.privacy-main {
    min-height: calc(100vh - 140px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
}

.privacy-content {
    max-width: 800px;
    width: 100%;
    text-align: center;
}

.privacy-text {
    text-align: justify;
    line-height: 1.7;
}

.privacy-text p {
    margin-bottom: 1.5rem;
    color: var(--warm-brown);
    font-size: 1.125rem;
}

/* Print styles */
@media print {
    .header,
    .footer {
        display: none;
    }
    
    .hero {
        padding: 2rem 0;
    }
    
    .section {
        padding: 2rem 0;
    }
}