@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;600;700&family=Jost:wght@300;400;500;600&display=swap');

:root {
    --color-primary: #2C1810;
    --color-secondary: #8B4513;
    --color-accent: #D2691E;
    --color-dark: #1A1410;
    --color-light: #F5F0E8;
    --color-white: #FFFFFF;
    --color-gray: #6B6B6B;
    --color-bg: #FDFBF7;
    --color-gold: #C9A961;

    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Jost', sans-serif;

    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 6rem;

    --radius-sm: 0;
    --radius-md: 0;
    --radius-lg: 0;

    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.15);

    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    font-size: 100%;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-dark);
    background: var(--color-bg);
    overflow-x: hidden;
    font-weight: 300;
    letter-spacing: 0.01em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: var(--space-sm);
    letter-spacing: -0.02em;
}

h1 {
    font-size: 4.5rem;
    font-weight: 300;
}

h2 {
    font-size: 3.5rem;
    font-weight: 300;
}

h3 {
    font-size: 2rem;
    font-weight: 400;
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1rem;
}

p {
    margin-bottom: var(--space-sm);
    font-weight: 300;
}

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

a:hover {
    color: var(--color-secondary);
}

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

button,
.btn {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    padding: 1.25rem 3rem;
    border: 1px solid var(--color-primary);
    border-radius: 0;
    background: transparent;
    color: var(--color-primary);
    cursor: pointer;
    transition: var(--transition-base);
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    position: relative;
    overflow: hidden;
}

button::before,
.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--color-primary);
    transition: var(--transition-base);
    z-index: -1;
}

button:hover::before,
.btn:hover::before {
    left: 0;
}

button:hover,
.btn:hover {
    color: var(--color-white);
    transform: translateY(-2px);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.wide-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-md) 0;
    background: var(--color-dark);
    transition: var(--transition-base);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 0.3em;
}



nav ul {
    display: flex;
    list-style: none;
    gap: var(--space-lg);
}

nav a {
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    position: relative;
}



nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    width: 0;
    height: 1px;
    background: currentColor;
    transition: var(--transition-base);
    transform: translateX(-50%);
}

nav a:hover::after {
    width: 100%;
}

.burger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: var(--space-xs);
}

.burger span {
    width: 28px;
    height: 1px;
    background: var(--color-white);
    transition: var(--transition-base);
}


.burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.burger.active span:nth-child(2) {
    opacity: 0;
}

.burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.hero-unique {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    gap: var(--space-xl);
    padding: 0 var(--space-md);
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #1A1410 0%, #2C1810 100%);
    padding-top: 137px;
     padding-bottom: 30px;
}

.hero-unique::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 100%;
    height: 200%;
    background: repeating-linear-gradient(90deg,
            transparent,
            transparent 2px,
            rgba(201, 169, 97, 0.03) 2px,
            rgba(201, 169, 97, 0.03) 4px);
    animation: weavePattern 20s linear infinite;
    pointer-events: none;
}

.hero-unique::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 169, 97, 0.3), transparent);
}

@keyframes weavePattern {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(100px);
    }
}

.hero-text {
    padding-right: var(--space-lg);
    position: relative;
    z-index: 2;
}

.hero-text h1 {
    font-size: 6rem;
    font-weight: 300;
    margin-bottom: var(--space-md);
    line-height: 0.95;
    color: var(--color-white);
    letter-spacing: -0.03em;
    position: relative;
}

.hero-text h1::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 0;
    width: 80px;
    height: 1px;
    background: var(--color-gold);
}

.hero-text p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--space-lg);
    max-width: 500px;
    line-height: 1.8;
    font-weight: 300;
    letter-spacing: 0.02em;
}

.hero-visual {
    position: relative;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 1;
    clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%);
    animation: heroImageReveal 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    opacity: 0;
}

@keyframes heroImageReveal {
    0% {
        opacity: 0;
        clip-path: polygon(50% 50%, 50% 50%, 50% 50%, 50% 50%);
    }

    100% {
        opacity: 1;
        clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%);
    }
}

.hero-visual::before {
    content: '';
    position: absolute;
    top: 5%;
    right: 5%;
    width: 90%;
    height: 90%;
    border: 1px solid rgba(201, 169, 97, 0.3);
    z-index: 0;
    animation: frameFloat 8s ease-in-out infinite;
}

@keyframes frameFloat {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(-10px, 10px);
    }
}

.section-alt {
    padding: var(--space-xl) 0;
    background: var(--color-white);
    position: relative;
}

.section-standard {
    padding: var(--space-xl) 0;
    position: relative;
}

.section-dark {
    padding: var(--space-xl) 0;
    background: var(--color-dark);
    color: var(--color-white);
    position: relative;
    overflow: hidden;
}

.section-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(0deg,
            transparent,
            transparent 100px,
            rgba(201, 169, 97, 0.02) 100px,
            rgba(201, 169, 97, 0.02) 101px);
    pointer-events: none;
}

.section-dark h2,
.section-dark h3 {
    color: var(--color-white);
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--space-xl);
    position: relative;
}

.section-header::before {
    content: '';
    position: absolute;
    top: -2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, var(--color-gold), transparent);
}

.section-header h2 {
    font-size: 3.5rem;
    margin-bottom: var(--space-md);
    font-weight: 300;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--color-gray);
    font-weight: 300;
    letter-spacing: 0.02em;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}

.card {
    background: var(--color-white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: var(--space-lg);
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-gold);
    transition: var(--transition-base);
}

.card:hover::before {
    width: 100%;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: rgba(201, 169, 97, 0.2);
}

.card img {
    width: 100%;
    margin-bottom: var(--space-md);
}

.card h3 {
    margin-bottom: var(--space-sm);
    font-weight: 400;
}

.card p {
    font-size: 0.95rem;
    color: var(--color-gray);
    line-height: 1.7;
}

.feature-box {
    text-align: center;
    padding: var(--space-lg);
    position: relative;
}

.feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 1px;
    background: var(--color-gold);
}

.feature-box i {
    font-size: 2rem;
    color: var(--color-gold);
    margin-bottom: var(--space-md);
    margin-top: var(--space-md);
}

.feature-box h3 {
    margin-bottom: var(--space-sm);
    font-size: 1.25rem;
}

.feature-box p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}

.split-section img {
    width: 100%;
    clip-path: polygon(0 0, 95% 0, 100% 100%, 5% 100%);
}

.split-content h2 {
    margin-bottom: var(--space-md);
}

.split-content p {
    margin-bottom: var(--space-sm);
    line-height: 1.8;
}

.cta-section {
    text-align: center;
    padding: var(--space-xl) var(--space-lg);
    background: var(--color-dark);
    color: var(--color-white);
    margin: var(--space-xl) 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(45deg,
            transparent,
            transparent 50px,
            rgba(201, 169, 97, 0.02) 50px,
            rgba(201, 169, 97, 0.02) 51px);
}

.cta-section h2 {
    color: var(--color-white);
    font-size: 3rem;
    margin-bottom: var(--space-md);
    font-weight: 300;
    position: relative;
    z-index: 1;
}

.cta-section p {
    position: relative;
    z-index: 1;
    color: rgba(255, 255, 255, 0.8);
}

.cta-section .btn {
    background: transparent;
    color: var(--color-white);
    border-color: var(--color-white);
    margin-top: var(--space-md);
    position: relative;
    z-index: 1;
}

.cta-section .btn::before {
    background: var(--color-white);
}

.cta-section .btn:hover {
    color: var(--color-dark);
}

.contact-unique {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    padding: var(--space-xl) 0;
}

.contact-info {
    background: var(--color-dark);
    color: var(--color-white);
    padding: var(--space-xl);
    position: relative;
}

.contact-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, var(--color-gold), transparent);
}

.contact-info h2 {
    color: var(--color-white);
    margin-bottom: var(--space-lg);
    font-weight: 300;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
    padding-left: var(--space-md);
}

.contact-item i {
    font-size: 1.25rem;
    color: var(--color-gold);
    margin-top: 4px;
}

.contact-item div h3 {
    color: var(--color-white);
    font-size: 0.75rem;
    margin-bottom: var(--space-xs);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 500;
}

.contact-item div p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-weight: 300;
}

.contact-form {
    background: var(--color-white);
    padding: var(--space-xl);
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.form-group {
    margin-bottom: var(--space-md);
}

.form-group label {
    display: block;
    font-weight: 400;
    margin-bottom: var(--space-sm);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 0;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition-base);
    background: var(--color-bg);
    font-weight: 300;
}

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

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

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.checkbox-group input[type="checkbox"] {
    margin-top: 4px;
    width: auto;
}

.checkbox-group label {
    font-size: 0.85rem;
    color: var(--color-gray);
    font-weight: 300;
}

.map-container {
    width: 100%;
    height: 500px;
    overflow: hidden;
    margin: var(--space-xl) 0;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(1) contrast(1.1);
}

.faq-item {
    background: var(--color-white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: var(--space-md);
    margin-bottom: 1px;
    transition: var(--transition-base);
}

.faq-item:hover {
    border-color: rgba(201, 169, 97, 0.3);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 400;
    font-size: 1.1rem;
    font-family: var(--font-heading);
}

.faq-question i {
    transition: var(--transition-base);
    color: var(--color-gold);
    font-size: 0.9rem;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: var(--transition-base);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    margin-top: var(--space-md);
    padding-top: var(--space-md);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.faq-answer p {
    color: var(--color-gray);
    font-weight: 300;
    line-height: 1.8;
}

.product-card {
    background: var(--color-white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: var(--transition-base);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: rgba(201, 169, 97, 0.2);
}

.product-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.product-info {
    padding: var(--space-lg);
}

.product-info h3 {
    margin-bottom: var(--space-sm);
    font-weight: 400;
}

.product-info p {
    color: var(--color-gray);
    font-size: 0.9rem;
    margin-bottom: var(--space-md);
    font-weight: 300;
}

.product-price {
    font-size: 1.75rem;
    font-weight: 300;
    color: var(--color-primary);
    margin-bottom: var(--space-md);
    font-family: var(--font-heading);
}

.thankyou-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--space-xl) var(--space-md);
}

.thankyou-content {
    max-width: 600px;
}

.thankyou-content i {
    font-size: 3rem;
    color: var(--color-gold);
    margin-bottom: var(--space-lg);
}

.thankyou-content h1 {
    font-size: 3.5rem;
    margin-bottom: var(--space-md);
    font-weight: 300;
}

.error-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--space-xl) var(--space-md);
}

.error-content {
    max-width: 600px;
}

.error-content h1 {
    font-size: 8rem;
    color: var(--color-gold);
    margin-bottom: var(--space-sm);
    font-weight: 300;
    line-height: 1;
}

.error-content h2 {
    margin-bottom: var(--space-md);
    font-weight: 300;
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
    padding: var(--space-xl) var(--space-md);
}

.policy-content h1 {
    margin-bottom: var(--space-lg);
    padding-top: var(--space-xl);
    font-weight: 300;
}

.policy-content h2 {
    margin-top: var(--space-xl);
    margin-bottom: var(--space-md);
    font-weight: 400;
    font-size: 2rem;
}

.policy-content p {
    margin-bottom: var(--space-md);
    color: var(--color-gray);
    line-height: 1.8;
}

.policy-content ul {
    margin-bottom: var(--space-md);
    padding-left: var(--space-lg);
}

.policy-content li {
    margin-bottom: var(--space-sm);
    color: var(--color-gray);
    line-height: 1.8;
    font-weight: 300;
}

footer {
    background: var(--color-dark);
    color: rgba(255, 255, 255, 0.6);
    padding: var(--space-lg) 0;
    text-align: center;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    border-top: 1px solid rgba(201, 169, 97, 0.1);
}

footer p {
    margin: 0;
    font-weight: 300;
}

footer a {
    color: rgba(255, 255, 255, 0.6);
}

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

.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-dark);
    color: var(--color-white);
    padding: var(--space-md);
    box-shadow: var(--shadow-lg);
    z-index: 10000;
    transform: translateY(100%);
    transition: var(--transition-base);
    border-top: 1px solid rgba(201, 169, 97, 0.2);
}

.cookie-popup.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-md);
}

.cookie-content p {
    margin: 0;
    font-size: 0.85rem;
    font-weight: 300;
}

.cookie-content a {
    color: var(--color-gold);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: var(--space-sm);
}

.cookie-buttons button {
    padding: 0.75rem 1.5rem;
    font-size: 0.75rem;
}

@media (max-width: 1024px) {
    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2.5rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    .hero-unique {
        grid-template-columns: 1fr;
        padding: var(--space-xl) var(--space-md);
        min-height: auto;
    }

    .hero-text h1 {
        font-size: 4rem;
    }

    .hero-visual {
        height: 60vh;
    }

    .split-section {
        grid-template-columns: 1fr;
    }

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

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

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

    nav ul {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: var(--color-dark);
        flex-direction: column;
        padding: var(--space-xl) var(--space-md);
        box-shadow: var(--shadow-lg);
        transition: var(--transition-base);
        gap: var(--space-md);
        display: none;
    }

    nav ul.active {
        right: 0;
        display: flex;
    }

    nav a {
        color: var(--color-white);
    }

    .burger {
        display: flex;
    }


}

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

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

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

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }

    .hero-text h1 {
        font-size: 3rem;
    }

    .section-header h2 {
        font-size: 2.5rem;
    }

    .logo {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    :root {
        --space-lg: 3rem;
        --space-xl: 4rem;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .cta-section h2 {
        font-size: 2rem;
    }
    .contact-info {
        padding: 1rem;
    }

    .hero-text {
        padding-top: 25px;
    }

    button,
    .btn {
        padding: 1rem 2rem;
        font-size: 0.7rem;
    }

    .error-content h1 {
        font-size: 5rem;
    }

    .thankyou-content h1 {
        font-size: 2.5rem;
    }

    .logo {
        font-size: 0.7rem;
    }
}

@media (max-width: 320px) {
    :root {
        --space-sm: 0.75rem;
        --space-md: 1.5rem;
        --space-lg: 2.5rem;
    }

    body {
        font-size: 0.9rem;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }
}