:root {
    --primary: #1a1a2e;
    --secondary: #c9a227;
    --accent: #e8d5b7;
    --text: #2d2d2d;
    --text-light: #6b6b6b;
    --bg: #fefefe;
    --bg-alt: #f8f5f0;
    --white: #ffffff;
    --border: #e5e5e5;
    --shadow: rgba(0, 0, 0, 0.08);
    --font-main: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    --font-heading: Georgia, 'Times New Roman', serif;
    --transition: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    font-size: 17px;
    line-height: 1.7;
    color: var(--text);
    background-color: var(--bg);
}

img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

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

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.3;
    color: var(--primary);
}

h1 {
    font-size: 3.2rem;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1.2rem;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-narrow {
    max-width: 800px;
}

.ad-disclosure {
    background: var(--primary);
    color: var(--accent);
    text-align: center;
    padding: 0.6rem 1rem;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
}

header {
    background: var(--white);
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--primary);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.logo span {
    color: var(--secondary);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

nav a {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text);
    position: relative;
    padding-bottom: 0.3rem;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--secondary);
    transition: width var(--transition);
}

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

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 0.5rem;
    background: none;
    border: none;
}

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

.hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    background-color: var(--bg-alt);
    position: relative;
    overflow: hidden;
}

.hero-split {
    display: flex;
    width: 100%;
    min-height: 85vh;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem;
}

.hero-visual {
    flex: 1;
    background-color: var(--accent);
    position: relative;
}

.hero-visual img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero h1 {
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    font-family: var(--font-main);
}

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

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

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

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

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

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

section {
    padding: 6rem 0;
}

.section-light {
    background: var(--white);
}

.section-alt {
    background: var(--bg-alt);
}

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

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

.section-dark p {
    color: var(--accent);
}

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

.section-header p {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.service-card {
    flex: 1 1 320px;
    max-width: 380px;
    background: var(--white);
    padding: 2.5rem;
    border: 1px solid var(--border);
    transition: all var(--transition);
}

.service-card:hover {
    border-color: var(--secondary);
    box-shadow: 0 15px 40px var(--shadow);
}

.service-card-image {
    height: 200px;
    background-color: var(--bg-alt);
    margin: -2.5rem -2.5rem 2rem;
    overflow: hidden;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card h3 {
    font-size: 1.3rem;
}

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

.service-price {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--secondary);
    margin: 1.5rem 0;
}

.service-price span {
    font-size: 1rem;
    color: var(--text-light);
}

.about-content {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
    background-color: var(--bg-alt);
    min-height: 400px;
    position: relative;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
}

.features {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
}

.feature {
    flex: 1;
    text-align: center;
    padding: 2rem;
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon svg {
    width: 40px;
    height: 40px;
    stroke: var(--secondary);
}

.testimonials {
    padding: 6rem 0;
}

.testimonial-container {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.testimonial {
    flex: 1 1 350px;
    max-width: 400px;
    padding: 2.5rem;
    background: var(--white);
    border-left: 3px solid var(--secondary);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--text);
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary);
}

.testimonial-role {
    font-size: 0.85rem;
    color: var(--text-light);
}

.cta-section {
    text-align: center;
    padding: 8rem 0;
}

.cta-section h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-section p {
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
}

.form-section {
    padding: 6rem 0;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border: 1px solid var(--border);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    border: 1px solid var(--border);
    font-family: var(--font-main);
    transition: border-color var(--transition);
}

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

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

.form-submit {
    text-align: center;
    margin-top: 2rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--secondary);
}

footer {
    background: var(--primary);
    color: var(--accent);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col {
    flex: 1 1 200px;
}

.footer-col h4 {
    color: var(--white);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1.5rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 0.8rem;
}

.footer-col a {
    color: var(--accent);
    font-size: 0.9rem;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    font-size: 0.85rem;
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    font-size: 0.85rem;
}

.disclaimer {
    background: var(--bg-alt);
    padding: 2rem;
    margin-top: 3rem;
    font-size: 0.85rem;
    color: var(--text-light);
    border-left: 3px solid var(--secondary);
}

.references {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.references h4 {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.references ol {
    padding-left: 1.5rem;
    font-size: 0.85rem;
    color: var(--text-light);
}

.references a {
    color: var(--secondary);
    word-break: break-all;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary);
    color: var(--white);
    padding: 1.5rem 2rem;
    z-index: 1000;
    display: none;
}

.cookie-banner.active {
    display: block;
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    font-size: 0.9rem;
}

.cookie-text a {
    color: var(--secondary);
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-btn {
    padding: 0.7rem 1.5rem;
    font-size: 0.85rem;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: var(--transition);
}

.cookie-accept {
    background: var(--secondary);
    color: var(--primary);
}

.cookie-reject {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--white);
}

.page-header {
    background: var(--bg-alt);
    padding: 6rem 0 4rem;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
}

.page-content {
    padding: 4rem 0;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h2 {
    font-size: 1.5rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-content h3 {
    font-size: 1.2rem;
    margin-top: 2rem;
}

.legal-content ul,
.legal-content ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
}

.thanks-container {
    text-align: center;
    padding: 8rem 0;
    max-width: 600px;
    margin: 0 auto;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-icon svg {
    width: 40px;
    height: 40px;
    stroke: var(--white);
}

.ingredients-section {
    background: var(--white);
    padding: 3rem;
    margin: 2rem 0;
    border: 1px solid var(--border);
}

.ingredients-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
}

.ingredient-tag {
    background: var(--bg-alt);
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    border-left: 2px solid var(--secondary);
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding: 3rem 0;
    flex-wrap: wrap;
}

.trust-badge {
    text-align: center;
}

.trust-badge-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 0.8rem;
}

.trust-badge-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--secondary);
}

.trust-badge span {
    font-size: 0.85rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pricing-reveal {
    text-align: center;
    padding: 4rem;
    background: linear-gradient(135deg, var(--primary) 0%, #2a2a4e 100%);
    color: var(--white);
    margin: 4rem 0;
}

.pricing-reveal h2 {
    color: var(--white);
}

.pricing-reveal .price {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: var(--secondary);
    margin: 1.5rem 0;
}

.pricing-reveal .original-price {
    text-decoration: line-through;
    color: var(--accent);
    font-size: 1.5rem;
}

.story-section {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.story-section.reverse {
    flex-direction: row-reverse;
}

.story-text {
    flex: 1;
}

.story-image {
    flex: 1;
    min-height: 350px;
    background-color: var(--bg-alt);
    position: relative;
}

.story-image img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.inline-cta {
    background: var(--bg-alt);
    padding: 2rem;
    margin: 2rem 0;
    text-align: center;
    border: 1px solid var(--border);
}

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

    h2 {
        font-size: 1.8rem;
    }

    .hero-split {
        flex-direction: column;
        min-height: auto;
    }

    .hero-content {
        padding: 3rem 2rem;
    }

    .hero-visual {
        min-height: 300px;
    }

    .about-content,
    .story-section,
    .story-section.reverse {
        flex-direction: column;
    }

    .about-image,
    .story-image {
        min-height: 300px;
        width: 100%;
    }

    .features {
        flex-direction: column;
        gap: 1.5rem;
    }

    nav ul {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    nav.active ul {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        padding: 2rem;
        border-top: 1px solid var(--border);
        gap: 1.5rem;
    }
}

@media (max-width: 600px) {
    section {
        padding: 4rem 0;
    }

    .container {
        padding: 0 1.5rem;
    }

    .form-container {
        padding: 2rem 1.5rem;
    }

    .footer-content {
        flex-direction: column;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

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