:root {
    --bg-body: #FDFBF7;
    --primary-dark: #6B5B4E;
    --primary-text: #3C3633;
    --secondary-text: #827870;
    --accent-light: #EBE5DE;
    --white: #FFFFFF;
    --prod-bg: #F5F0EB;
    --dark-section: #26201D;
    --gold-accent: #CFA36D;
    
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Lato', sans-serif;
    --container-width: 1200px;
    --section-padding: 8rem 1rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html.lenis { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }
.lenis.lenis-scrolling iframe { pointer-events: none; }

::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--bg-body);
}

::-webkit-scrollbar-thumb {
    background-color: var(--primary-dark);
    border-radius: 10px;
    border: 3px solid var(--bg-body);
    transition: background-color 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background-color: var(--gold-accent);
}

html {
    scrollbar-width: thin;
    scrollbar-color: var(--bg-body) var(--primary-dark);
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-body);
    color: var(--primary-text);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 700;
    color: var(--primary-text);
    line-height: 1.1;
}

p {
    font-family: var(--font-sans);
    color: var(--secondary-text);
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul { list-style: none; }

.img-wrapper-hover {
    overflow: hidden;
    border-radius: 4px;
    display: block;
    position: relative;
}

.img-wrapper-hover img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.img-wrapper-hover:hover img {
    transform: scale(1.08);
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.container-fluid {
    width: 100%;
    max-width: 100%;
    padding: 0 10px;
    position: relative;
    z-index: 2;
}

.btn {
    display: inline-block;
    padding: 16px 32px;
    background-color: var(--primary-dark);
    color: var(--white);
    font-family: var(--font-sans);
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 1px solid var(--primary-dark);
    cursor: pointer;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: color 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--white);
    z-index: -1;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.btn:hover {
    color: var(--primary-dark);
    background-color: transparent;
}

.btn:hover::before {
    transform: translateY(0);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-dark);
    border: 1px solid var(--primary-dark);
}

.btn-outline::before {
    background-color: var(--primary-dark);
}

.btn-outline:hover {
    color: var(--white);
}

.btn-light {
    background-color: var(--white);
    color: var(--primary-text);
    border: 1px solid var(--white);
}

.btn-light::before {
    background-color: var(--primary-dark);
}

.btn-light:hover {
    color: var(--white);
}

.hero .btn, 
.hero .btn-outline {
    background-color: transparent;
    color: var(--white);
    border: 1px solid var(--white);
}

.hero .btn::before,
.hero .btn-outline::before {
    background-color: var(--white);
}

.hero .btn:hover,
.hero .btn-outline:hover {
    color: var(--primary-text);
    border-color: var(--white);
}

.hero-btns {
    display: flex;
    gap: 1rem;
    margin-top: 40px;
    transform: scale(0.9);
    margin-left: 20px;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
}

.text-white { color: var(--white); }
.text-gold { color: var(--gold-accent); }

header {
    padding: 10px 0;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 100;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav .btn {
    margin-right: 20px;
    transform: scale(0.8);
}

.nav-left-group {
    display: flex;
    align-items: center;
    gap: 40px;
}

.logo-img {
    display: block;
    height: 50px;
    width: auto;
    margin-left: 10px;
    filter: invert(1);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    color: var(--primary-text);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.header-on-hero .nav-links a { color: #ffffff; }
.header-on-hero .nav-links a::after { background-color: rgb(194, 184, 165); }

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -4px;
    left: 0;
    background-color: var(--primary-dark);
    transition: width 0.3s ease-out;
}

.nav-links a:hover {
    color: rgb(194, 184, 165);
}

.nav-links a:hover::after {
    width: 100%;
}

.hero {
    padding: 0;
    position: relative;
    overflow: hidden;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    background-image: url('img/hero.png');
    background-size: cover;
    background-position: center top; 
    background-repeat: no-repeat;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(36, 27, 8, 0.4) 0%, rgba(60, 54, 51, 0.1) 60%, rgba(255,255,255,0) 100%);
    z-index: 1;
}

.full-height-container {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.hero-layout-column {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between; 
    padding-top: 120px;
    padding-bottom: 30px;
    width: 100%;
    max-width: none; 
}

.hero-top-content {
    text-align: left;
    color: var(--white);
    align-self: flex-start;
}

.hero-title {
    margin-left: 10px;
}
.hero-subtitle {
    text-transform: uppercase;
    font-size: 0.73rem;
    letter-spacing: 17px;
    color: var(--white);
    margin-bottom: 1rem;
    display: block;
    font-weight: 700;
    opacity: 0.9;
    position: absolute;
    top: 260px;
    margin-left: 10px;
}

.section-subtitle {
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 3px;
    color: var(--white);
    margin-bottom: 1rem;
    display: block;
    font-weight: 700;
    opacity: 0.9;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 0;
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0,0,0,0.1);
    line-height: 1.1;
}

.hero-desc {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
}

.vertical-text {
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%) rotate(180deg);
    writing-mode: vertical-rl;
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 7rem;
    color: rgba(255, 255, 255, 0.15);
    z-index: 1;
    pointer-events: none;
    letter-spacing: 20px;
    text-transform: uppercase;
}

.stats-bar {
    background-color: var(--primary-dark);
    color: var(--white);
    padding: 3rem 0;
    position: relative;
    z-index: 2;
}

.stats-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    text-align: center;
}

.stat-item h3 {
    color: var(--white);
    font-family: var(--font-sans);
    font-size: 2.5rem;
    margin-bottom: 0.2rem;
}

.stat-item p {
    color: rgba(255,255,255,0.85);
    font-size: 0.85rem;
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stars {
    color: var(--gold-accent);
    margin-top: 0.5rem;
    font-size: 0.8rem;
}

.benefits {
    padding: var(--section-padding);
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.benefits-image img {
    height: 700px;
    box-shadow: -15px 15px 30px rgba(107, 91, 78, 0.15);
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.benefit-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.benefit-icon {
    background-color: var(--primary-dark);
    color: var(--white);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.4rem;
    flex-shrink: 0;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.benefit-item:hover .benefit-icon {
    transform: scale(1.15) rotate(5deg);
}

.benefit-text h4 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    font-family: var(--font-serif);
}

.promo-overlay-section {
    position: relative;
    padding: 8rem 0;
    overflow: hidden;
    background-color: transparent;
}

.promo-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    align-items: center;
    gap: 0;
    position: relative;
}

.promo-text-card {
    background-color: rgba(38, 32, 29, 0.9);
    backdrop-filter: blur(10px);
    padding: 4rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--white);
    z-index: 2;
    margin-right: -100px;
    border-radius: 4px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.promo-image-container {
    height: 700px;
    position: relative;
    z-index: 1;
    border-radius: 4px;
    overflow: hidden;
}

.promo-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.promo-tag {
    color: var(--gold-accent);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
    display: block;
    font-weight: 700;
}

.promo-text-card h2 {
    font-size: 4rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1;
}

.promo-text-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.promo-stats {
    display: flex;
    gap: 3rem;
    margin-bottom: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.15);
}

.promo-stat h4 {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 0.2rem;
}

.promo-stat span {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gold-accent);
}

.ingredients {
    padding: var(--section-padding);
    background-color: transparent;
}

.charts-section {
    padding-top: 2rem;
}

.charts-title {
    text-align: center;
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--primary-dark);
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.charts-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background-color: var(--gold-accent);
}

.charts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    align-items: center;
}

.chart-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(107, 91, 78, 0.05);
    position: relative;
    overflow: hidden;
}

.chart-card h5 {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    color: var(--primary-dark);
}

.chart-circle-wrapper {
    width: 160px;
    height: 160px;
    margin: 0 auto 1rem;
    position: relative;
}

.chart-svg {
    transform: rotate(-90deg);
    width: 100%;
    height: 100%;
}

.chart-bg-circle {
    fill: none;
    stroke: #eee;
    stroke-width: 8;
}

.chart-progress-circle {
    fill: none;
    stroke: var(--gold-accent);
    stroke-width: 8;
    stroke-dasharray: 440;
    stroke-dashoffset: 440;
    stroke-linecap: round;
}

.chart-value {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.chart-area-wrapper {
    width: 100%;
    height: 160px;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.chart-area-svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.chart-path {
    fill: rgba(107, 91, 78, 0.1);
    stroke: var(--primary-dark);
    stroke-width: 3;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
}

.chart-bars-wrapper {
    width: 100%;
    height: 160px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 15px;
}

.chart-bar {
    width: 30px;
    background-color: var(--accent-light);
    border-radius: 4px 4px 0 0;
    position: relative;
    height: 0;
}

.chart-bar.highlight {
    background-color: var(--gold-accent);
}

.chart-desc {
    font-size: 0.9rem;
    color: var(--secondary-text);
    margin-top: 1rem;
}

.marquee-section {
    background-color: var(--primary-dark);
    color: var(--white);
    padding: 1.5rem 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.marquee-track {
    display: inline-block;
    animation: marquee 30s linear infinite;
}

.marquee-text {
    display: inline-block;
    font-family: var(--font-serif);
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-right: 4rem;
    opacity: 0.8;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.products {
    padding: var(--section-padding);
    text-align: center;
    background-color: transparent;
}

.products-grid {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 4rem;
    flex-wrap: wrap;
}

.product-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    width: 150px;
}

.icon-circle {
    width: 100px;
    height: 100px;
    background-color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    position: relative;
    z-index: 1;
}

.icon-circle i {
    transition: transform 0.4s ease;
}

.product-item:hover .icon-circle {
    background-color: var(--primary-dark);
    color: var(--white);
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(107, 91, 78, 0.3);
}

.product-item:hover .icon-circle i {
    transform: rotateY(180deg);
}

.product-item span {
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 1rem;
    color: var(--primary-text);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.product-item:hover span {
    color: var(--primary-dark);
}

.cta-center {
    margin-top: 5rem;
}

.limited-edition {
    position: relative;
    padding: 6rem 0;
    background-color: transparent;
    overflow: hidden;
}

.limited-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--dark-section); 
    opacity: 1;
    z-index: 0;
}

.limited-bg-overlay::after {
     content: '';
     position: absolute;
     width: 100%; height: 100%; top:0; left:0;
     background-image: url('https://images.unsplash.com/photo-1608248597279-f99d160bfbc8?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80');
     background-size: cover;
     background-position: center;
     opacity: 0.15;
     mix-blend-mode: overlay;
}

.limited-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.limited-img {
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    height: 450px;
    position: relative;
}

.limited-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.limited-img:hover img {
    transform: scale(1.05);
}

.limited-content {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem;
    border-radius: 4px;
    text-align: center;
}

.limited-content h2 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.limited-content p {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.ritual {
    padding: var(--section-padding);
    background-color: transparent;
}

.ritual-steps {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.ritual-step {
    text-align: center;
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    padding: 2rem;
    border: 1px dashed rgba(107, 91, 78, 0.3);
    border-radius: 8px;
    position: relative;
}

.step-number {
    font-family: var(--font-serif);
    font-size: 4rem;
    color: var(--accent-light);
    line-height: 1;
    margin-bottom: 1rem;
    display: block;
    font-weight: 700;
}

.step-content h4 {
    margin-bottom: 1rem;
}

.about {
    padding: var(--section-padding);
    background-color: transparent;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.about-content {
    padding-right: 2rem;
}

.big-quote {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    line-height: 1.3;
    color: var(--primary-dark);
    margin-bottom: 2rem;
}

.about-image img {
    border-radius: 12px;
    height: 600px;
    width: 100%;
    box-shadow: 20px -20px 0px rgba(107, 91, 78, 0.1);
}

.journal {
    padding: var(--section-padding);
    background-color: transparent;
}

.journal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.journal-card {
    background: transparent;
    cursor: pointer;
}

.journal-thumb {
    height: 250px;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.journal-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.journal-card:hover .journal-thumb img {
    transform: scale(1.05);
}

.journal-meta {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--secondary-text);
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.journal-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.read-more {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.read-more::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    background: var(--primary-dark);
    bottom: -2px;
    left: 0;
    transition: width 0.3s;
}

.journal-card:hover .read-more::after {
    width: 100%;
}

.testimonials {
    padding: 8rem 0;
    background-color: transparent;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.testimonial-slider-wrapper {
    width: 100%;
    margin-top: 5rem;
    position: relative;
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.testimonial-track {
    display: flex;
    gap: 2rem;
    width: max-content;
    padding: 2rem 0;
}

.testimonial-card {
    background: #fff;
    padding: 3rem 2rem;
    border-radius: 4px;
    text-align: left;
    position: relative;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
    border-top: 4px solid var(--primary-dark);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-width: 400px;
    max-width: 400px;
    user-select: none;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border: 1px solid #f0f0f0;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(107, 91, 78, 0.15);
    border-color: var(--gold-accent);
}

.card-quote-icon {
    font-size: 2.5rem;
    color: rgba(107, 91, 78, 0.15);
    margin-bottom: 1.5rem;
    line-height: 1;
}

.testimonial-text {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-style: italic;
    color: var(--primary-text);
    margin-bottom: 2rem;
    line-height: 1.7;
    flex-grow: 1;
}

.user-profile {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
    border-top: 1px solid rgba(0,0,0,0.05);
    padding-top: 1.5rem;
}

.user-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #ddd;
    overflow: hidden;
    border: 2px solid white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-info h5 {
    font-size: 1.1rem;
    margin: 0;
    font-family: var(--font-sans);
    font-weight: 700;
    color: var(--primary-dark);
}

.user-info span {
    font-size: 0.8rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-top: 2px;
}

.t-stars {
    color: var(--gold-accent);
    font-size: 0.9rem;
    margin-left: auto;
}

.faq-section {
    padding: var(--section-padding);
    background-color: transparent;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

details.faq-item {
    background: #fff;
    margin-bottom: 1rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    overflow: hidden;
}

details.faq-item[open] {
    box-shadow: 0 8px 25px rgba(107, 91, 78, 0.1);
}

summary {
    padding: 1.5rem 2rem;
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 1.2rem;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--primary-text);
}

summary::-webkit-details-marker {
    display: none;
}

.faq-icon {
    font-size: 1rem;
    color: var(--primary-dark);
    transition: transform 0.3s ease;
}

details[open] .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 2rem 2rem 2rem;
    color: var(--secondary-text);
    line-height: 1.6;
    animation: sweep 0.5s ease-in-out;
}

@keyframes sweep {
    0% { opacity: 0; transform: translateY(-10px); }
    100% { opacity: 1; transform: translateY(0); }
}

.main-wrapper {
    position: relative;
    z-index: 2;
    background-color: var(--bg-body);
    margin-bottom: 0;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: background-color 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.modern-footer {
    background-color: var(--primary-dark);
    color: #ffffff;
    padding: 6rem 0 2rem;
    position: sticky;
    bottom: 0;
    z-index: 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-brand h2 {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    color: #fff;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    line-height: 1.8;
    max-width: 300px;
}

.footer-col h4 {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 1.5rem;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold-accent);
    padding-left: 5px;
}

.contact-info li {
    display: flex;
    gap: 10px;
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    align-items: flex-start;
}

.contact-info i {
    margin-top: 5px;
    color: var(--gold-accent);
}

.newsletter-form {
    position: relative;
    margin-top: 1rem;
}

.newsletter-input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.3);
    padding: 10px 0;
    color: #fff;
    font-family: var(--font-sans);
    outline: none;
    transition: border-color 0.3s;
}

.newsletter-input:focus {
    border-bottom-color: var(--gold-accent);
}

.newsletter-btn {
    position: absolute;
    right: 0;
    top: 10px;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    transition: color 0.3s;
}

.newsletter-btn:hover {
    color: var(--gold-accent);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-links a {
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
}

.social-links a:hover {
    color: #fff;
    transform: translateY(-3px);
}

@media (max-width: 992px) {
    .hero h1 { font-size: 3.5rem; }
    .vertical-text { display: none; }
    .container { padding: 0 30px; }
    .testimonial-card { min-width: 320px; max-width: 320px; }
    .promo-content-wrapper { grid-template-columns: 1fr; }
    .promo-text-card { margin-right: 0; margin-bottom: -50px; }
    .promo-image-container { height: 500px; }
    .limited-grid { grid-template-columns: 1fr; }
    .limited-img { height: 300px; max-width: 400px; margin: 0 auto; }
    .limited-img:nth-child(3) { order: 3; }
    .limited-content { order: 2; }
    .limited-img:nth-child(1) { order: 1; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .charts-grid { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero-grid, .benefits-grid, .about-grid, .ritual-steps {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 4rem;
    }
    .footer-grid { grid-template-columns: 1fr; gap: 3rem; }
    .hero-grid { display: flex; flex-direction: column; }
    .benefits-image { order: -1; }
    .benefit-item { flex-direction: column; align-items: center; text-align: center; }
    .stats-container { flex-direction: column; gap: 2rem; }
    .about-content { padding-right: 0; order: 2; }
    .about-image { order: 1; }
    .section-title { font-size: 2.5rem; }
    .footer-bottom { flex-direction: column; gap: 1rem; }
    .promo-text-card h2 { font-size: 2.5rem; }
    .limited-content h2 { font-size: 2.2rem; }
    .hero-layout-column { padding-top: 100px; padding-bottom: 40px; }
    .hero h1 { font-size: 2.8rem; }
    .hero { background-position: center center; }
}