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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #171717;
    background-color: #fafafa;
    min-height: 100vh;
}

/* Container */
.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;
    }
}

/* Header */
.header {
    width: 100%;
    border-bottom: 1px solid #e5e5e5;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 50;
}

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

.logo-section {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    height: 2rem;
    width: 2rem;
    flex-shrink: 0;
}

.store-label {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #047857;
}

.site-title {
    font-size: 1.25rem;
    font-weight: 600;
}

.nav-menu {
    display: none;
    align-items: center;
    gap: 1.5rem;
    font-size: 0.875rem;
}

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

.nav-link {
    color: #171717;
    text-decoration: none;
    transition: color 0.2s;
}

.nav-link:hover {
    color: #047857;
}

.mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-btn svg {
    width: 1.5rem;
    height: 1.5rem;
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

/* Hero Section */
.hero {
    position: relative;
    overflow: hidden;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, #ecfdf5, #ffffff, #ffffff);
}

.hero-grid {
    position: relative;
    padding: 4rem 0;
    display: grid;
    gap: 2.5rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
        padding: 6rem 0;
    }
}

.hero-badge {
    display: inline-block;
    border-radius: 9999px;
    background-color: #d1fae5;
    color: #065f46;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.05em;
}

.hero-title {
    margin-top: 1rem;
    font-size: 2.25rem;
    line-height: 1.1;
    font-weight: 800;
}

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

.hero-title-accent {
    display: block;
    color: #047857;
}

.hero-text {
    margin-top: 1rem;
    font-size: 1rem;
    line-height: 1.75;
    color: #404040;
}

.hero-buttons {
    margin-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 1rem;
    padding: 0.75rem 1.25rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn svg {
    width: 1.25rem;
    height: 1.25rem;
}

.btn-primary {
    background-color: #047857;
    color: white;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    background-color: #065f46;
}

.btn-secondary {
    background-color: white;
    color: #065f46;
    box-shadow: 0 0 0 1px #d1fae5;
}

.btn-secondary:hover {
    box-shadow: 0 0 0 1px #a7f3d0;
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

/* Visual Grid */
.visual-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

.card-illustration {
    border-radius: 1.5rem;
    background-color: white;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e5e5;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.card-icon {
    height: 7rem;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #047857;
}

.card-icon svg {
    width: 100%;
    height: 6rem;
}

.card-title {
    margin-top: 0.75rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.visual-caption {
    margin-top: 0.75rem;
    font-size: 0.75rem;
    color: #737373;
}

/* Story Section */
.story-section {
    padding: 4rem 0;
}

.story-grid {
    display: grid;
    gap: 2.5rem;
    align-items: center;
}

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

.section-title {
    font-size: 1.5rem;
    font-weight: 600;
}

.story-text {
    margin-top: 0.75rem;
    color: #404040;
}

.story-text + .story-text {
    margin-top: 0.75rem;
}

.scenic-card {
    background: linear-gradient(to bottom right, #d1fae5, #a7f3d0);
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.06);
}

.scenic-svg {
    width: 100%;
    height: auto;
}

.scenic-caption {
    margin-top: 0.75rem;
    font-size: 0.75rem;
    color: #525252;
}

/* Shop Section */
.shop-section {
    background-color: white;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
    padding: 4rem 0;
}

.shop-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.shop-link {
    color: #047857;
    text-decoration: none;
}

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

.product-grid {
    margin-top: 2rem;
    display: grid;
    gap: 1.5rem;
}

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

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

.product-card {
    border-radius: 1.5rem;
    background-color: white;
    padding: 1.5rem;
    border: 1px solid #e5e5e5;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: all 0.2s;
}

.product-card:hover {
    border-color: #a7f3d0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.product-image {
    aspect-ratio: 4 / 3;
    border-radius: 1rem;
    background: linear-gradient(to bottom right, #ecfdf5, #d1fae5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image svg {
    width: 3rem;
    height: 3rem;
    color: #047857;
}

.product-details {
    margin-top: 1rem;
}

.product-badge {
    display: inline-flex;
    align-items: center;
    border-radius: 9999px;
    background-color: #d1fae5;
    color: #065f46;
    padding: 0.125rem 0.625rem;
    font-size: 0.75rem;
    font-weight: 500;
}

.product-title {
    margin-top: 0.5rem;
    font-size: 1.125rem;
    font-weight: 600;
}

.product-description {
    margin-top: 0.25rem;
    font-size: 0.875rem;
    color: #404040;
}

.product-actions {
    margin-top: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* Values Section */
.values-section {
    padding: 4rem 0;
}

.values-grid {
    display: grid;
    gap: 2rem;
}

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

.value-card {
    border-radius: 1.5rem;
    background-color: white;
    border: 1px solid #e5e5e5;
    padding: 1.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.value-icon {
    height: 2.5rem;
    width: 2.5rem;
    color: #047857;
}

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

.value-title {
    margin-top: 0.75rem;
    font-weight: 600;
}

.value-text {
    margin-top: 0.25rem;
    color: #404040;
    font-size: 0.875rem;
}

/* Contact Section */
.contact-section {
    background-color: #047857;
    color: white;
    padding: 4rem 0;
}

.contact-grid {
    display: grid;
    gap: 2.5rem;
    align-items: center;
}

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

.section-title-white {
    font-size: 1.5rem;
    font-weight: 600;
}

.contact-text {
    margin-top: 0.75rem;
    color: #d1fae5;
}

.font-semibold {
    font-weight: 600;
}

.contact-list {
    margin-top: 1.5rem;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.875rem;
}

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

.contact-icon {
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
}

.contact-link {
    color: white;
    text-decoration: underline;
}

.newsletter-section {
    margin-top: 1.5rem;
}

.newsletter-form {
    display: grid;
    gap: 0.75rem;
}

@media (min-width: 640px) {
    .newsletter-form {
        grid-template-columns: 1fr auto;
    }
}

.newsletter-input {
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    color: #171717;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background-color: rgba(255, 255, 255, 0.9);
}

.newsletter-input::placeholder {
    color: #737373;
}

.newsletter-button {
    border-radius: 0.75rem;
    background-color: white;
    color: #065f46;
    font-weight: 500;
    padding: 0.75rem 1.25rem;
    cursor: pointer;
    border: none;
    transition: background-color 0.2s;
}

.newsletter-button:hover {
    background-color: #ecfdf5;
}

.newsletter-disclaimer {
    margin-top: 0.5rem;
    font-size: 0.75rem;
    color: #d1fae5;
}

.photo-section {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 1.5rem;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.photo-title {
    font-weight: 500;
}

.photo-description {
    margin-top: 0.5rem;
    color: #d1fae5;
    font-size: 0.875rem;
}

.code-inline {
    padding: 0.125rem 0.25rem;
    border-radius: 0.25rem;
    background-color: rgba(255, 255, 255, 0.1);
}

.photo-grid {
    margin-top: 1rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.photo-slot {
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background-color: rgba(255, 255, 255, 0.1);
}

.photo-img {
    width: 100%;
    height: 9rem;
    object-fit: cover;
}

.photo-caption {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    padding: 0.5rem;
}

.photo-tip {
    margin-top: 0.75rem;
    font-size: 0.75rem;
    color: #a7f3d0;
}

.photo-link {
    color: white;
    text-decoration: underline;
}

/* Footer */
.footer {
    background-color: white;
    padding: 2.5rem 0;
}

.footer-grid {
    display: grid;
    gap: 2rem;
}

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

.footer-title {
    font-weight: 600;
}

.footer-text {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: #525252;
}

.footer-subtitle {
    font-weight: 500;
}

.footer-credits {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: #525252;
    list-style: disc;
    list-style-position: inside;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.footer-link {
    color: #525252;
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid #e5e5e5;
    padding: 1.5rem 0;
    text-align: center;
    font-size: 0.75rem;
    color: #737373;
}
