@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;1,400&family=Montserrat:wght@300;400;500;600&family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@400;600&display=swap');

/* =========================================
   GLOBAL RESET & TYPOGRAPHY
   ========================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #161A14;
  color: #F4F2EB;
  font-family: "Helvetica Neue", Helvetica, sans-serif;
  overflow-x: hidden;
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(22, 26, 20, 0.45);
  z-index: -1;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1400px;
  padding: 0 5%;
}

.hero-title {
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(4rem, 10vw, 12rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0.02em;
  color: #F4F2EB;
  margin: 0;
  text-transform: uppercase;
}

.title-line { display: block; }
.gold-text { color: #C8A97E; margin-left: 5%; }
.right-align { text-align: right; display: block; }

/* =========================================
   HERO CONTENT STACK (replaces the old
   absolutely-positioned tagline, which
   overlapped "THE" on smaller screens)
   ========================================= */
.hero-content-stacked {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 4vh, 3rem);
}

.hero-tagline {
  max-width: 600px;
}

.hero-tagline-title {
  color: #9B7E23;
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 500;
  margin-bottom: 12px;
  text-shadow: 3px 3px 12px rgba(0,0,0,0.9), 0px 0px 6px rgba(0,0,0,0.7);
}

.hero-tagline-sub {
  color: #F4F3EF;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: clamp(0.95rem, 1.4vw, 1.25rem);
  text-shadow: 2px 2px 10px rgba(0,0,0,0.9);
}

.enter-archive-link {
  position: absolute;
  bottom: 50px;
  right: 5%;
  color: #C8A97E;
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(200, 169, 126, 0.4);
  padding-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.enter-archive-link:hover {
  color: #F4F2EB;
  border-bottom-color: #F4F2EB;
}

/* =========================================
   HERO LINK ALIGNMENT FIX
   ========================================= */
.hero-action-links {
    position: relative;
    z-index: 99;
    display: flex;
    justify-content: flex-end;
    gap: 30px;
    margin-top: 20px;
    padding-right: 5%;
}

.hero-action-links .enter-archive-link {
    position: static !important;
    margin: 0 !important;
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    letter-spacing: 2px !important;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.9) !important;
}

/* =========================================
   HERO GHOST BUTTON
   ========================================= */
.hero-btn-ghost {
    display: inline-block;
    border: 1px solid #F4F3EF;
    color: #F4F3EF;
    text-decoration: none;
    padding: 12px 35px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 2px;
    background-color: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(2px);
    transition: all 0.3s ease;
}

.hero-btn-ghost:hover {
    background-color: #F4F3EF;
    color: #2D2D2D;
}

/* =========================================
   HERO "THE RITUALS" HOVER-REVEAL MENU
   ========================================= */
.ritual-hover-wrap {
    position: relative;
    display: inline-block;
}

.ritual-hover-menu {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 0;
    padding-top: 8px;
    min-width: 180px;
    background-color: #0B130E;
    border: 1px solid #D4AF37;
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
    pointer-events: none;
    z-index: 20;
}

.ritual-hover-menu a {
    color: #F4F3EF;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-decoration: none;
    padding: 14px 20px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    transition: color 0.2s ease, background-color 0.2s ease;
}

.ritual-hover-menu a:last-child {
    border-bottom: none;
}

.ritual-hover-menu a:hover {
    color: #D4AF37;
    background-color: rgba(212, 175, 55, 0.08);
}

.ritual-hover-menu.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

@media (hover: hover) and (pointer: fine) {
    .ritual-hover-wrap:hover .ritual-hover-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }
}

/* Viewport fix for smaller monitors/laptops (real hero classes only) */
@media screen and (max-width: 1400px) {
    .hero-title {
        font-size: clamp(3rem, 8vw, 8rem);
    }
}

/* =========================================
   PHILOSOPHY SECTION (consolidated — single
   source of truth, matches current index.html
   markup: .philosophy-section > .philosophy-
   image-container > img.philosophy-image, plus
   .philosophy-text-container)
   ========================================= */
.philosophy-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    background-color: #0B130E;
    padding: 0 0 100px 0;
}

.philosophy-image-container {
    width: 100%;
    max-width: 75%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    line-height: 0;
    padding-top: 0 !important;
}

.philosophy-image {
    width: 100%;
    max-height: 450px;
    object-fit: cover;
    border: none;
    box-shadow: none;
    border-radius: 4px;
    display: block;
}

.philosophy-text-container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding-top: 2.5rem;
}

/* --- Section subtitle style, kept as a single
   definition (this is the version that was already
   winning the cascade, so nothing visually changes) --- */
.section-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 3px;
    color: #C5A059;
    margin-bottom: 15px;
    text-transform: uppercase;
}

/* --- NOTE: the classes below (.philosophy-image-wrapper,
   .philosophy-img, .philosophy-text-wrapper, .philosophy-
   heading, .gold-italic, .philosophy-body, .read-story-link)
   are not used anywhere in index.html's current markup.
   Left in place in case ritual.html / legend.html / another
   page still references them — verify before deleting. --- */
.philosophy-image-wrapper {
  flex: 1 1 45%;
  min-width: 300px;
}

.philosophy-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.philosophy-text-wrapper {
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 300px;
  padding: 2rem 0;
}

.philosophy-heading {
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 2rem;
}

.gold-italic {
  color: #C8A97E;
  font-style: italic;
}

.philosophy-body {
  font-size: 1rem;
  line-height: 1.8;
  color: #C5C5C0;
  margin-bottom: 1.5rem;
  max-width: 90%;
}

.read-story-link {
  align-self: flex-start;
  margin-top: 2rem;
  color: #C8A97E;
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-bottom: 1px solid #C8A97E;
  padding-bottom: 5px;
  transition: opacity 0.3s ease;
}

.read-story-link:hover {
  opacity: 0.7;
}

/* =========================================
   APPENDIX A: RITUAL HUB STYLES (ritual.html)
   ========================================= */
.ritual-body {
    background-color: #F4F3EF;
    color: #2D2D2D;
    margin: 0;
    padding: 0;
}

.zardova-serif {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    margin-bottom: 15px;
}

.zardova-sans {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 30px;
}

.ritual-hero, .ritual-block {
    max-width: 700px;
    margin: 100px auto;
    text-align: center;
    padding: 0 20px;
}

.ritual-hero h1 {
    font-size: 3rem;
    margin-top: 50px;
}

.btn-ghost {
    display: inline-block;
    border: 1px solid #4A5D4E;
    color: #4A5D4E;
    text-decoration: none;
    padding: 12px 30px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-ghost:hover {
    background-color: #4A5D4E;
    color: #F4F3EF;
}

.forest-divider {
    width: 100%;
    height: 400px;
    background-image: url('assets/deep-forest.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 100px 0;
}

.forest-divider h3 {
    color: #ffffff;
    font-size: 2rem;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.back-link {
    display: inline-block;
    padding: 20px;
    color: #2D2D2D;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

/* =========================================
   SECTION C: THE HARVEST
   ========================================= */
.the-harvest {
    background-color: #12261A;
    padding: 0px 5%;
    display: flex;
    justify-content: center;
}

.harvest-container {
    display: flex;
    max-width: 1200px;
    align-items: center;
    gap: 50px;
}

.harvest-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
}

.harvest-product-img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0px 20px 30px rgba(0, 0, 0, 0.8));
}

.harvest-content {
    flex: 1;
    color: #F4F3EF;
}

.harvest-headline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    margin: 0 0 20px 0;
    line-height: 1.1;
}

.harvest-body {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 35px;
    font-weight: 300;
}

.btn-gold-solid {
    display: inline-block;
    background-color: #D4AF37;
    color: #1A3626;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-decoration: none;
    padding: 15px 40px;
    transition: all 0.3s ease;
    border: 1px solid #D4AF37;
}

.btn-gold-solid:hover {
    background-color: transparent;
    color: #D4AF37;
}

@media (max-width: 768px) {
    .harvest-container {
        flex-direction: column;
        text-align: center;
    }
}

/* =========================================
   SECTION D: THE THREE-STEP RITUAL TEASER
   ========================================= */
.ritual-teaser {
    background-color: #1A3626;
    padding: 80px 5%;
    text-align: center;
}

.ritual-teaser-container {
    max-width: 1100px;
    margin: 0 auto;
}

.ritual-intro {
    font-family: 'Montserrat', sans-serif;
    color: #F4F3EF;
    font-size: 1.1rem;
    margin-bottom: 50px;
    font-style: italic;
    font-weight: 300;
}

.ritual-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.ritual-step {
    display: block;
    padding: 40px 20px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    background-color: rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, border-color 0.3s ease;
    text-decoration: none;
    cursor: pointer;
}

.ritual-step:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.7);
}

.step-title {
    font-family: 'Cormorant Garamond', serif;
    color: #D4AF37;
    font-size: 2rem;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.step-desc {
    font-family: 'Montserrat', sans-serif;
    color: #F4F3EF;
    font-size: 0.95rem;
    line-height: 1.6;
    font-weight: 300;
}

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

/* =========================================
   SECTION E: THE BRIDGE
   ========================================= */
.the-bridge {
    background-color: #12261A;
    padding: 100px 20px;
    text-align: center;
}

.bridge-container {
    max-width: 700px;
    margin: 0 auto;
}

.bridge-text {
    font-family: 'Cormorant Garamond', serif;
    color: #F4F3EF;
    font-size: 2.2rem;
    line-height: 1.5;
    font-style: italic;
    margin-bottom: 30px;
}

/* =========================================
   SECTION F: THE TRUST BAR
   ========================================= */
.trust-bar {
    background-color: #1A3626;
    padding: 25px 10px;
    text-align: center;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.trust-item {
    font-family: 'Montserrat', sans-serif;
    color: #C5A059;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
}

.trust-divider {
    color: #F4F3EF;
    margin: 0 15px;
    opacity: 0.3;
}

/* =========================================
   SECTION G: NEWSLETTER CAPTURE
   ========================================= */
.newsletter-capture {
    background-color: #12261A;
    padding: 100px 20px;
    text-align: center;
}

.newsletter-container {
    max-width: 650px;
    margin: 0 auto;
}

.newsletter-headline {
    font-family: 'Cormorant Garamond', serif;
    color: #F4F3EF;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.newsletter-sub {
    font-family: 'Montserrat', sans-serif;
    color: #F4F3EF;
    font-weight: 300;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.newsletter-input {
    padding: 15px 20px;
    font-family: 'Montserrat', sans-serif;
    border: 1px solid #D4AF37;
    background-color: rgba(255, 255, 255, 0.05);
    color: #F4F3EF;
    width: 60%;
    outline: none;
    font-size: 1rem;
}

.newsletter-input::placeholder {
    color: rgba(244, 243, 239, 0.6);
}

@media (max-width: 768px) {
    .newsletter-form {
        flex-direction: column;
    }
    .newsletter-input {
        width: 100%;
    }
    .trust-divider {
        display: none;
    }
    .trust-item {
        display: block;
        margin: 15px 0;
    }
}

/* =========================================
   THE LEGEND PAGE (ABOUT US) — legend.html
   ========================================= */
.legend-hero {
    background-color: #12261A;
    padding: 120px 20px 80px 20px;
    text-align: center;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

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

.legend-headline {
    font-family: 'Cormorant Garamond', serif;
    color: #D4AF37;
    font-size: 3rem;
    margin-bottom: 20px;
}

.legend-intro {
    font-family: 'Montserrat', sans-serif;
    color: #F4F3EF;
    font-size: 1.1rem;
    line-height: 1.8;
    font-weight: 300;
}

.legend-story {
    background-color: #1A3626;
    padding: 80px 20px;
}

.legend-story-container {
    max-width: 750px;
    margin: 0 auto;
}

.story-subheadline {
    font-family: 'Cormorant Garamond', serif;
    color: #D4AF37;
    font-size: 2.2rem;
    margin: 60px 0 20px 0;
    text-align: center;
}

.story-body {
    font-family: 'Montserrat', sans-serif;
    color: #F4F3EF;
    font-size: 1.05rem;
    line-height: 2;
    margin-bottom: 25px;
    font-weight: 300;
}

.story-signoff {
    font-family: 'Cormorant Garamond', serif;
    color: #D4AF37;
    font-size: 1.8rem;
    font-style: italic;
    text-align: center;
    margin-top: 60px;
    margin-bottom: 50px;
}

.legend-back-action {
    text-align: center;
    margin-top: 40px;
}

/* --- Consolidated: .legend-quote appeared twice with
   near-identical values; merged into one definition. --- */
.legend-quote {
    font-family: 'Cormorant Garamond', serif;
    color: #F4F4F0;
    font-size: 2rem;
    font-style: italic;
    font-weight: 400;
    margin-bottom: 30px;
}

/* =========================================
   RITUAL PAGE HERO (VIDEO BACKGROUND) — ritual.html
   ========================================= */
.ritual-hero-video {
    position: relative;
    padding: 150px 20px;
    text-align: center;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
    background-color: #0B130E;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.background-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: -2;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(18, 38, 26, 0.78);
    z-index: -1;
}

.ritual-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.ritual-headline {
    font-family: 'Cormorant Garamond', serif;
    color: #D4AF37;
    font-size: 3.5rem;
    margin-bottom: 10px;
}

.ritual-subtitle {
    font-family: 'Montserrat', sans-serif;
    color: #F4F3EF;
    font-size: 1.2rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.ritual-intro-text {
    font-family: 'Montserrat', sans-serif;
    color: #F4F3EF;
    font-size: 1.1rem;
    line-height: 1.8;
    font-weight: 300;
}

/* =========================================
   RITUAL HERO ENHANCEMENTS
   ========================================= */
.ritual-hero-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 20px;
}

.ritual-hero-icon-line {
    width: 40px;
    height: 1px;
    background-color: rgba(212, 175, 55, 0.4);
}

.ritual-hero-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 24px 0;
}

.ritual-hero-divider span:not(.ritual-hero-divider-dot) {
    width: 60px;
    height: 1px;
    background-color: rgba(212, 175, 55, 0.4);
}

.ritual-hero-divider-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #D4AF37;
    display: inline-block;
}

.ritual-badges {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.ritual-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: opacity 0.25s ease;
}

.ritual-badges a.ritual-badge:hover {
    opacity: 0.75;
}

.ritual-badge-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ritual-badge-label {
    font-family: 'Inter', sans-serif;
    color: #F4F3EF;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.ritual-badges-secondary {
    margin-top: 24px;
}

/* =========================================
   WOODLAND WISDOM TEASER (top of ritual page)
   ========================================= */
.blog-teaser {
    background-color: #12261A;
    padding: 70px 20px;
    text-align: center;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.blog-teaser-title {
    font-family: 'Cormorant Garamond', serif;
    color: #F4F3EF;
    font-size: 2.5rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.blog-teaser-subtitle {
    font-family: 'Cormorant Garamond', serif;
    color: #D4AF37;
    font-style: italic;
    font-size: 1.1rem;
}

.blog-teaser-link {
    display: inline-block;
    margin-top: 20px;
    color: #D4AF37;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    border-bottom: 1px solid #D4AF37;
    padding-bottom: 3px;
    transition: opacity 0.3s ease;
}

.blog-teaser-link:hover {
    opacity: 0.7;
}

/* =========================================
   CURATED RITUALS SECTION (Morning/Evening/Weekly)
   ========================================= */
.curated-rituals {
    background-color: #0B130E;
    padding: 100px 20px;
    text-align: center;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.curated-rituals-container {
    max-width: 1000px;
    margin: 0 auto;
}

.curated-rituals-kicker {
    font-family: 'Inter', sans-serif;
    color: #D4AF37;
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.curated-rituals-headline {
    font-family: 'Cormorant Garamond', serif;
    color: #F4F3EF;
    font-size: 3rem;
    margin: 20px 0 40px 0;
    font-weight: 400;
}

.curated-rituals-headline em {
    color: #D4AF37;
    font-style: italic;
}

.curated-rituals-description {
    font-family: 'Montserrat', sans-serif;
    color: #F4F3EF;
    font-size: 1.05rem;
    line-height: 1.8;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto 40px auto;
}

.curated-rituals-cta {
    display: inline-block;
    border: 1px solid #D4AF37;
    color: #D4AF37;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 16px 32px;
    margin-bottom: 70px;
    transition: all 0.3s ease;
}

.curated-rituals-cta:hover {
    background-color: #D4AF37;
    color: #0B130E;
}

.curated-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.curated-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.curated-card-title {
    font-family: 'Cormorant Garamond', serif;
    color: #F4F3EF;
    font-size: 1.5rem;
    font-weight: 400;
    margin: 0;
}

.curated-card-sub {
    font-family: 'Inter', sans-serif;
    color: #A9B8A2;
    font-size: 0.9rem;
    margin: 0;
}

.curated-card-explore {
    font-family: 'Inter', sans-serif;
    color: #D4AF37;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    border-bottom: 1px solid #D4AF37;
    padding-bottom: 2px;
    transition: opacity 0.3s ease;
}

.curated-card-explore:hover {
    opacity: 0.7;
}

@media (max-width: 768px) {
    .curated-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .ritual-badges {
        gap: 30px;
    }
}

/* =========================================
   SKINCARE RITUAL QUIZ MODAL
   ========================================= */
.quiz-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(11, 19, 14, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 20px;
}

.quiz-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

.quiz-modal {
    position: relative;
    background-color: #0B130E;
    border: 1px solid #D4AF37;
    max-width: 500px;
    width: 100%;
    padding: 50px 40px;
    text-align: center;
}

.quiz-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: transparent;
    border: none;
    color: #D4AF37;
    font-size: 1.8rem;
    cursor: pointer;
    line-height: 1;
}

.quiz-question {
    font-family: 'Cormorant Garamond', serif;
    color: #F4F3EF;
    font-size: 1.8rem;
    margin: 15px 0 30px 0;
    font-weight: 400;
}

.quiz-options {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.quiz-option {
    background: transparent;
    border: 1px solid rgba(212, 175, 55, 0.4);
    color: #F4F3EF;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    padding: 14px 20px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.quiz-option:hover {
    border-color: #D4AF37;
    background-color: rgba(212, 175, 55, 0.08);
}

.quiz-result-text {
    font-family: 'Montserrat', sans-serif;
    color: #A9B8A2;
    font-size: 1rem;
    margin-bottom: 30px;
}

/* =========================================
   BLOG PAGE (Woodland Wisdom)
   ========================================= */
.blog-hero {
    background-color: #12261A;
    padding: 100px 20px 60px 20px;
    text-align: center;
}

.blog-hero-title {
    font-family: 'Cormorant Garamond', serif;
    color: #F4F3EF;
    font-size: 3.5rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.blog-hero-subtitle {
    font-family: 'Cormorant Garamond', serif;
    color: #D4AF37;
    font-style: italic;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.blog-grid-section {
    background-color: #0B130E;
    padding: 60px 5% 120px 5%;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    max-width: 1300px;
    margin: 0 auto;
}

.blog-card {
    background-color: #0F1A13;
    border: 1px solid #1A3626;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    border-color: #D4AF37;
}

.blog-card-image {
    height: 220px;
    background-color: #12261A;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #1A3626;
}

.blog-card-image-placeholder {
    color: #4A5D4E;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
}

.blog-card-body {
    padding: 24px;
    text-align: left;
}

.blog-card-meta {
    font-family: 'Inter', sans-serif;
    color: #D4AF37;
    font-size: 0.75rem;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.blog-card-title {
    font-family: 'Cormorant Garamond', serif;
    color: #F4F3EF;
    font-size: 1.4rem;
    margin-bottom: 12px;
    font-weight: 600;
}

.blog-card-excerpt {
    font-family: 'Montserrat', sans-serif;
    color: #A9B8A2;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 18px;
}

.blog-card-link {
    font-family: 'Inter', sans-serif;
    color: #D4AF37;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    border-bottom: 1px solid #D4AF37;
    padding-bottom: 2px;
}

/* =========================================
   MOBILE-FRIENDLY FIXES
   ========================================= */
.ceremony-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.site-header-bar {
    flex-wrap: wrap;
    row-gap: 12px;
}

@media (max-width: 500px) {
    .site-header-bar {
        justify-content: center !important;
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
    .site-search-input {
        width: 120px !important;
    }
}

/* =========================================
   COMBINED LEGEND SECTION — legend.html
   ========================================= */
.legend-combine-section {
    background-color: #0B130E;
    padding: 120px 20px;
    text-align: center;
    display: flex;
    justify-content: center;
}

.legend-content {
    max-width: 800px;
}

.legend-title {
    font-family: 'Cormorant Garamond', serif;
    color: #D4AF37;
    font-size: 2.8rem;
    font-weight: 400;
    margin-bottom: 20px;
}

.legend-body {
    font-family: sans-serif;
    font-size: 1.1rem;
    color: #C3C7C4;
    line-height: 1.8;
    margin-bottom: 50px;
}

.legend-quote-secondary {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.4rem;
    color: #F4F4F0;
    font-style: italic;
    font-weight: 400;
    margin-bottom: 40px;
    line-height: 1.3;
}

/* --- Consolidated: .btn-gold-outline appeared twice with
   near-identical values; merged into one definition and
   given an explicit font-family so it can't silently
   inherit the wrong font. --- */
.btn-gold-outline {
    display: inline-block;
    background-color: transparent;
    color: #D4AF37;
    border: 1px solid #D4AF37;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 15px 40px;
    transition: all 0.3s ease;
}

.btn-gold-outline:hover {
    background-color: #D4AF37;
    color: #12261A;
}

/* =========================================
   COLLECTION & PRODUCT CARD HOVER EFFECTS
   ========================================= */
.collection-card {
    position: relative;
    border: 1px solid #1A3626;
    padding: 30px;
    background-color: #0A140C;
    cursor: pointer;
    transition: transform 0.3s ease, border-color 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

.collection-card:hover {
    transform: translateY(-6px);
    border-color: #D4AF37 !important;
    background-color: #0F1A13 !important;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(212, 175, 55, 0.15);
    z-index: 5;
}

.collection-card:hover h3 {
    color: #E8C158;
}

.collection-card:hover p {
    color: #C7D6C0;
}

.collection-card a {
    transition: color 0.3s ease, opacity 0.3s ease;
}

.collection-card:hover a {
    opacity: 0.9;
}

/* Hover preview dropdown — shows a quick product
   glance under the card. Gated to devices that
   actually support hover (mouse/trackpad), so
   touchscreens fall through to tap-to-open instead,
   which already works via openCollection(). */
.collection-preview {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin-top: 0;
    padding-top: 8px;
    background-color: transparent;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
    pointer-events: none;
    text-align: left;
}

.collection-preview-list {
    background-color: #0F1A13;
    border: 1px solid #D4AF37;
    padding: 16px 20px;
}

.collection-preview-list a {
    color: #F4F3EF;
    text-decoration: none;
    display: block;
    transition: color 0.2s ease;
}

.collection-preview-list a:hover {
    color: #D4AF37;
}

.product-highlight {
    animation: productFlash 1.6s ease;
}

@keyframes productFlash {
    0%, 100% { box-shadow: none; }
    20% { box-shadow: 0 0 0 3px #D4AF37; }
    80% { box-shadow: 0 0 0 3px #D4AF37; }
}

.collection-preview-list {
    list-style: none;
}

.collection-preview-list li {
    color: #F4F3EF;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    padding: 6px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.collection-preview-list li:last-child {
    border-bottom: none;
}

.collection-preview.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

@media (hover: hover) and (pointer: fine) {
    .collection-card:hover .collection-preview {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }
}

.product-card {
    transition: all 0.3s ease;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-4px);
    border: 1px solid #4A5D4E !important;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

/* =========================================
   SHOPPING CART
   ========================================= */
.cart-icon-btn {
    position: relative;
    background: transparent;
    border: none;
    color: #D4AF37;
    font-size: 1.3rem;
    cursor: pointer;
    padding: 4px;
    line-height: 1;
}

.cart-count-badge {
    position: absolute;
    top: -6px;
    right: -8px;
    background-color: #D4AF37;
    color: #0B130E;
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
}

.add-to-cart-btn {
    display: inline-block;
    background-color: #D4AF37;
    color: #1A3626;
    border: none;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 8px 18px;
    cursor: pointer;
    transition: opacity 0.25s ease;
}

.add-to-cart-btn:hover {
    opacity: 0.85;
}

.cart-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(11, 19, 14, 0.7);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 1998;
}

.cart-backdrop.is-open {
    opacity: 1;
    visibility: visible;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 400px;
    height: 100%;
    background-color: #0B130E;
    border-left: 1px solid rgba(212, 175, 55, 0.3);
    display: flex;
    flex-direction: column;
    padding: 30px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 1999;
}

.cart-drawer.is-open {
    transform: translateX(0);
}

.cart-drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.cart-drawer-header h3 {
    font-family: 'Cormorant Garamond', serif;
    color: #D4AF37;
    font-size: 1.6rem;
    font-weight: 400;
    margin: 0;
}

.cart-close-btn {
    background: transparent;
    border: none;
    color: #D4AF37;
    font-size: 1.6rem;
    cursor: pointer;
    line-height: 1;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
}

.cart-empty {
    color: #A9B8A2;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    text-align: center;
    margin-top: 40px;
}

.cart-item {
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    padding: 16px 0;
}

.cart-item-info {
    display: flex;
    justify-content: space-between;
    color: #F4F3EF;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.cart-item-price {
    color: #D4AF37;
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cart-item-controls button {
    background: transparent;
    border: 1px solid rgba(212, 175, 55, 0.4);
    color: #F4F3EF;
    width: 26px;
    height: 26px;
    cursor: pointer;
    font-size: 0.9rem;
}

.cart-item-controls span {
    color: #F4F3EF;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    min-width: 16px;
    text-align: center;
}

.cart-item-remove {
    margin-left: auto;
    background: transparent;
    border: none;
    color: #A9B8A2;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    text-decoration: underline;
    cursor: pointer;
    width: auto !important;
    height: auto !important;
}

.cart-drawer-footer {
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding-top: 20px;
    margin-top: 20px;
}

.cart-total-row {
    display: flex;
    justify-content: space-between;
    color: #F4F3EF;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.cart-checkout-btn {
    width: 100%;
    background-color: #D4AF37;
    color: #1A3626;
    border: none;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 15px;
    cursor: pointer;
    transition: opacity 0.25s ease;
}

.cart-checkout-btn:hover {
    opacity: 0.85;
}

.cart-checkout-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* =========================================
   SHOP ALL PRODUCTS PAGE
   ========================================= */
.shop-nav-link {
    display: inline-block;
    padding: 10px 20px;
    border: 1px solid rgba(212, 175, 55, 0.4);
    color: #D4AF37;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.25s ease;
}

.shop-nav-link:hover {
    background-color: #D4AF37;
    color: #1A3626;
}

.shop-collection {
    padding: 60px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.shop-collection-title {
    color: #D4AF37;
    font-family: 'Garamond', serif;
    font-size: 2rem;
    margin-bottom: 5px;
}

.shop-collection-sub {
    color: #A9B8A2;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px;
}

.shop-product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.shop-product {
    text-align: left;
}

.shop-product-image {
    background-color: #0A140C;
    height: 260px;
    border: 1px solid #1A3626;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.shop-product-image span {
    color: #4A5D4E;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
}

.shop-product h4 {
    color: #F4F3EF;
    font-size: 16px;
    margin: 0 0 5px 0;
    font-weight: 600;
}

.shop-product p {
    color: #D4AF37;
    font-size: 14px;
    margin: 0 0 10px 0;
}

.shop-product-latin {
    font-style: italic;
    font-size: 12px !important;
}

/* =========================================
   RITUAL BOX CARDS (the-rituals.html)
   ========================================= */
.ritual-box-card {
    background-color: #12261A;
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 30px;
    text-align: left;
}

.ritual-box-image {
    background-color: #0A140C;
    height: 280px;
    border: 1px solid #1A3626;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.ritual-box-image span {
    color: #4A5D4E;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
}

.ritual-box-card h3 {
    color: #D4AF37;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    margin: 0 0 8px 0;
}

.ritual-box-tag {
    color: #D4AF37;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
}

.ritual-box-desc {
    color: #C5C7C2;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.ritual-box-includes {
    color: #A9B8A2;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-style: italic;
    margin-bottom: 20px;
}

.ritual-box-price {
    color: #F4F3EF;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    margin-bottom: 20px;
}