:root {
    --primary-color: #5a7c65;
    --primary-dark: #475f50;
    --secondary-color: #d4a574;
    --accent-color: #e8d5c4;
    --text-dark: #2d3436;
    --text-light: #636e72;
    --bg-light: #fdfbf7;
    --bg-white: #ffffff;
    --border-color: #e8e4df;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-serif: 'Cormorant Garamond', serif;
    --font-sans: 'Inter', sans-serif;
    --font-logo: 'Cinzel', serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    color: var(--text-dark);
    line-height: 1.7;
    background-color: var(--bg-light);
    overflow-x: hidden;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    position: relative;
}

.nav-logo .logo {
    height: 60px;
    width: 60px;
    transition: var(--transition);
    object-fit: contain;
}

.nav-logo .logo:hover {
    transform: scale(1.05);
}

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

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

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

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 0.3px;
    position: relative;
    transition: var(--transition);
}

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

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

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

.hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #fdfbf7 0%, #f5f1eb 100%);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(212, 165, 116, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text {
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    display: flex;
    flex-direction: column;
    margin-bottom: 24px;
}

.hero-title-main {
    font-family: var(--font-logo);
    font-size: 72px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.hero-logo-img {
    max-width: 250px;
    height: auto;
    display: block;
    margin-bottom: -30px;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
}

.hero-subtitle {
    font-family: var(--font-serif);
    font-size: 36px;
    font-weight: 400;
    color: var(--secondary-color);
    font-style: italic;
    margin-top: 0;
}

.hero-description {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 32px;
    max-width: 500px;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
}

.btn {
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: var(--transition);
    display: inline-block;
    text-align: center;
    border: 2px solid transparent;
    cursor: pointer;
}

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

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
}

.hero-badge {
    max-width: 400px;
}

.badge-img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.08));
}

.hero-image {
    position: relative;
    animation: fadeInRight 1s ease-out 0.3s backwards;
}

.hero-visual {
    width: 100%;
    max-width: 500px;
    height: auto;
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.12));
}

.floating-element {
    position: absolute;
    animation: butterflyFloat 6s ease-in-out infinite;
}

.butterfly-1 {
    top: 10%;
    right: -12%;
    width: 180px;
    animation-delay: 0s;
    z-index: 10;
}

.butterfly-1 img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.15));
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 50px;
    border: 2px solid var(--primary-color);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding: 8px;
}

.scroll-indicator span {
    width: 4px;
    height: 8px;
    background-color: var(--primary-color);
    border-radius: 2px;
    animation: scroll 2s ease-in-out infinite;
}

@keyframes scroll {
    0%, 100% {
        transform: translateY(0);
        opacity: 0;
    }
    50% {
        transform: translateY(12px);
        opacity: 1;
    }
}

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

@keyframes butterflyFloat {
    0% {
        transform: translate(0, 0) rotate(-5deg);
    }
    25% {
        transform: translate(20px, -30px) rotate(5deg);
    }
    50% {
        transform: translate(40px, -50px) rotate(-3deg);
    }
    75% {
        transform: translate(20px, -20px) rotate(8deg);
    }
    100% {
        transform: translate(0, 0) rotate(-5deg);
    }
}

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

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

section {
    padding: 100px 0;
}

.section-title {
    font-family: var(--font-serif);
    font-size: 48px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-title.centered {
    text-align: center;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 48px;
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
}

.about {
    background-color: var(--bg-white);
}

.about-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 48px;
    align-items: start;
    max-width: 1400px;
    margin: 0 auto;
}

.about-story p {
    margin-bottom: 20px;
    font-size: 17px;
    line-height: 1.9;
    color: var(--text-light);
}

.about-story .highlight {
    color: var(--primary-color);
    font-weight: 500;
    font-size: 18px;
    padding: 20px;
    background-color: var(--accent-color);
    border-left: 4px solid var(--primary-color);
    border-radius: 4px;
}

.about-story .tagline {
    font-family: var(--font-serif);
    font-size: 20px;
    color: var(--text-dark);
    margin-top: 32px;
}

.about-story h3 {
    font-family: var(--font-serif);
    font-size: 24px;
    color: var(--primary-color);
    margin-top: 36px;
    margin-bottom: 16px;
}

.craft-intro {
    margin-bottom: 24px !important;
}

.ingredients-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 24px 0 32px 0;
}

.ingredient-card {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 24px;
    transition: all 0.3s ease;
}

.ingredient-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-color);
}

.ingredient-card h4 {
    font-family: var(--font-serif);
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 12px;
    font-weight: 600;
}

.ingredient-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
    margin: 0;
}

.visual-card {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    position: sticky;
    top: 120px;
}

.visual-card h3 {
    font-family: var(--font-serif);
    font-size: 28px;
    margin-bottom: 16px;
}

.visual-card p {
    line-height: 1.8;
    margin-bottom: 24px;
    opacity: 0.95;
}

.usage-guide {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 24px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.usage-guide h4 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--accent-color);
}

.usage-guide p {
    margin-bottom: 0;
}

.features {
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg-white) 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.feature-card {
    background-color: white;
    padding: 40px 32px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
    border: 1px solid var(--border-color);
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.feature-icon {
    width: 80px;
    height: 80px;
    min-height: 80px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    transition: var(--transition);
}

.feature-card:hover .feature-icon img {
    transform: scale(1.1);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
}

.feature-card h3 {
    font-family: var(--font-serif);
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 15px;
}

.collections {
    background-color: var(--bg-white);
}

.collections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.collection-card {
    background: linear-gradient(135deg, var(--bg-light) 0%, white 100%);
    padding: 36px 24px;
    border-radius: 16px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid var(--border-color);
    cursor: pointer;
    min-height: 240px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.collection-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary-color);
    background: linear-gradient(135deg, white 0%, var(--accent-color) 100%);
}

.collection-card:hover .collection-icon img {
    transform: scale(1.1);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.collection-icon {
    width: 100px;
    height: 100px;
    min-height: 100px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
}

.collection-icon img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    transition: var(--transition);
    display: block;
}

.collection-card h3 {
    font-family: var(--font-serif);
    font-size: 26px;
    color: var(--primary-color);
    margin-bottom: 8px;
    font-weight: 600;
}

.collection-card p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
}

.contact {
    background: linear-gradient(135deg, var(--bg-light) 0%, #f0ebe5 100%);
}

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

.contact-intro {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 32px;
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-light);
    margin-bottom: 4px;
    font-weight: 600;
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: var(--transition);
}

.contact-item a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.contact-form-wrapper {
    background-color: white;
    padding: 48px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.contact-form h3 {
    font-family: var(--font-serif);
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 32px;
}

.form-group {
    position: relative;
    margin-bottom: 28px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-family: var(--font-sans);
    font-size: 15px;
    transition: var(--transition);
    background-color: var(--bg-light);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%235a7c65' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 12px;
    padding-right: 40px;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    background-color: white;
}

.form-group label {
    position: absolute;
    left: 16px;
    top: 14px;
    color: var(--text-light);
    font-size: 15px;
    pointer-events: none;
    transition: var(--transition);
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label,
.form-group select:focus + label,
.form-group select:valid + label {
    top: -10px;
    left: 12px;
    font-size: 12px;
    color: var(--primary-color);
    background-color: white;
    padding: 0 6px;
    font-weight: 500;
}

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

.terms-group {
    margin-top: 24px;
    margin-bottom: 24px;
    padding: 0;
    display: block;
    clear: both;
    position: relative;
}

.checkbox-label {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    position: static;
    user-select: none;
    background: transparent;
    border: none;
    padding: 8px 0;
    gap: 10px;
    margin: 0;
    font-family: var(--font-sans);
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    flex-shrink: 0;
    margin: 0;
    accent-color: var(--primary-color);
}

.checkbox-label span {
    font-size: 15px;
    color: var(--text-color);
    line-height: 1.5;
    background: none;
}

.terms-link {
    color: var(--primary-color);
    text-decoration: underline;
    cursor: pointer;
    font-weight: 500;
}

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

.terms-tooltip {
    display: none;
    position: absolute;
    bottom: calc(100% + 10px);
    left: 0;
    right: 0;
    background: white;
    border: 2px solid var(--primary-color);
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    max-height: 400px;
    overflow-y: auto;
    width: 100%;
}

.terms-tooltip.show {
    display: block;
}

.terms-tooltip h4 {
    font-family: var(--font-serif);
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.terms-tooltip h5 {
    font-family: var(--font-serif);
    font-size: 16px;
    color: var(--primary-color);
    margin-top: 16px;
    margin-bottom: 8px;
}

.terms-tooltip p {
    font-size: 14px;
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 8px;
}

.footer {
    background-color: var(--primary-dark);
    color: white;
    padding: 60px 0 24px;
}

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

.footer-brand-name {
    font-family: var(--font-logo);
    font-size: 42px;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.footer-logo-img {
    max-width: 150px;
    height: auto;
    display: block;
    margin-bottom: -12px;
    filter: brightness(0) invert(1);
}

.footer-tagline {
    font-family: var(--font-serif);
    font-size: 20px;
    font-style: italic;
    margin-bottom: 12px;
    color: var(--accent-color);
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: var(--accent-color);
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 12px;
}

.footer-links a,
.footer-contact a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    font-size: 15px;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: white;
    padding-left: 4px;
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.footer-bottom a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.footer-bottom a:hover {
    color: white;
    text-decoration: underline;
}

@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text {
        order: 2;
    }

    .hero-image {
        order: 1;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-badge {
        margin-left: auto;
        margin-right: auto;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .ingredients-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .visual-card {
        position: static;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

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

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

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: white;
        flex-direction: column;
        padding: 24px;
        box-shadow: var(--shadow-md);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .hero {
        padding-top: 100px;
    }

    .hero-title-main {
        font-size: 48px;
    }

    .hero-logo-img {
        max-width: 180px;
        margin: 0 auto -35px auto;
    }

    .hero-subtitle {
        font-size: 24px;
    }

    .hero-image {
        max-width: 400px;
        margin: 0 auto;
    }

    .hero-visual {
        max-width: 100%;
    }

    .butterfly-1 {
        width: 120px;
        top: 5%;
        right: -5%;
    }

    .section-title {
        font-size: 36px;
    }

    .hero-cta {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

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

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

    .contact-form-wrapper {
        padding: 32px 24px;
    }

    section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-title-main {
        font-size: 36px;
    }

    .hero-logo-img {
        max-width: 150px;
        margin: 0 auto -25px auto;
    }

    .hero-subtitle {
        font-size: 20px;
    }

    .hero-image {
        max-width: 100%;
        padding: 0 20px;
    }

    .butterfly-1 {
        width: 100px;
        top: 8%;
        right: 0;
    }

    .footer-logo-img {
        max-width: 120px;
        margin-bottom: -10px;
    }

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

    .section-title {
        font-size: 28px;
    }
}
