/**
 * Landing page styles — Love Amethyst Rose
 *
 * Brand tokens:
 *   --lar-gold:       #c9a96e
 *   --lar-dark:       #1a1a1a
 *   --lar-off-white:  #faf8f5
 *   --lar-text-light: #cccccc
 *   --lar-text-dark:  #555555
 *   --lar-heading:    'Josefin Sans', sans-serif
 */

/* ========================================
   0. TOKENS
   ======================================== */
.lar-landing {
    --lar-gold: #c9a96e;
    --lar-gold-hover: #b8944f;
    --lar-dark: #1a1a1a;
    --lar-darker: #111111;
    --lar-off-white: #faf8f5;
    --lar-text-light: #cccccc;
    --lar-text-dark: #555555;
    --lar-heading-font: 'Josefin Sans', sans-serif;
    --lar-body-font: inherit;
    --lar-container-width: 1200px;
    --lar-spacing-section: 64px;
    --lar-spacing-md: 32px;
    --lar-spacing-sm: 20px;
    --lar-radius: 2px;
}

/* ========================================
   0b. BARBERRY OVERRIDES
   ======================================== */

/* Hide top bar (language/currency switcher) */
.page-template-landing-home .topbar,
.page-template-landing-variant .topbar {
    display: none !important;
}

/* Hide default page header/title bar */
.page-template-landing-home .page-header,
.page-template-landing-variant .page-header {
    display: none;
}

/* Disable rellax parallax */
.page-template-landing-home .rellax,
.page-template-landing-variant .rellax {
    transform: none !important;
}

/* Remove content padding so hero goes edge-to-edge */
.page-template-landing-home #content-section,
.page-template-landing-variant #content-section {
    padding-top: 0;
}

/* Keep header overlaying but shrink the logo so it doesn't fight with hero text */
.page-template-landing-home .site-branding img,
.page-template-landing-variant .site-branding img {
    height: 100px !important;
}

/* Force white header elements on landing pages (over dark hero) */
.page-template-landing-home .header-inner,
.page-template-landing-variant .header-inner {
    color: #fff !important;
}

/* All links + text in header */
.page-template-landing-home .header-inner a,
.page-template-landing-variant .header-inner a,
.page-template-landing-home .header-inner .menu-title,
.page-template-landing-variant .header-inner .menu-title,
.page-template-landing-home .header-inner .menu-title span,
.page-template-landing-variant .header-inner .menu-title span,
.page-template-landing-home .header-inner .header-account a span,
.page-template-landing-variant .header-inner .header-account a span,
.page-template-landing-home .header-inner .header-cart-title,
.page-template-landing-variant .header-inner .header-cart-title {
    color: #fff !important;
}

/* Hamburger bars (Barberry uses burger_top/middle/bottom) */
.page-template-landing-home .header-inner .burger_top,
.page-template-landing-variant .header-inner .burger_top,
.page-template-landing-home .header-inner .burger_middle,
.page-template-landing-variant .header-inner .burger_middle,
.page-template-landing-home .header-inner .burger_bottom,
.page-template-landing-variant .header-inner .burger_bottom {
    background-color: #fff !important;
}

/* Search & cart SVG icons */
.page-template-landing-home .header-inner .header-search svg,
.page-template-landing-variant .header-inner .header-search svg,
.page-template-landing-home .header-inner .header-cart svg,
.page-template-landing-variant .header-inner .header-cart svg {
    fill: #fff !important;
    stroke: #fff !important;
}

/* Show the light logo, hide the dark one */
.page-template-landing-home .site-branding .site-logo,
.page-template-landing-variant .site-branding .site-logo {
    display: none !important;
}

.page-template-landing-home .site-branding .site-logo-light,
.page-template-landing-variant .site-branding .site-logo-light {
    display: inline-block !important;
}

/* ========================================
   1. GLOBAL / CONTAINER
   ======================================== */
.lar-landing {
    font-family: var(--lar-body-font);
    color: var(--lar-text-dark);
}

.lar-container {
    max-width: var(--lar-container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* ========================================
   2. BUTTONS
   ======================================== */
.lar-btn {
    display: inline-block;
    padding: 14px 40px;
    font-family: var(--lar-heading-font);
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid transparent;
    border-radius: var(--lar-radius);
    cursor: pointer;
    transition: all 0.3s ease;
}

.lar-btn--primary {
    background: var(--lar-gold);
    color: #fff;
    border-color: var(--lar-gold);
}

.lar-btn--primary:hover {
    background: var(--lar-gold-hover);
    border-color: var(--lar-gold-hover);
    color: #fff;
}

.lar-btn--outline {
    background: transparent;
    color: var(--lar-gold);
    border-color: var(--lar-gold);
}

.lar-btn--outline:hover {
    background: var(--lar-gold);
    color: #fff;
}

/* Outline on dark backgrounds */
.lar-hero .lar-btn--outline,
.lar-cta .lar-btn--outline {
    color: #fff;
    border-color: #fff;
}

.lar-hero .lar-btn--outline:hover,
.lar-cta .lar-btn--outline:hover {
    background: #fff;
    color: var(--lar-dark);
}

/* ========================================
   3. HERO
   ======================================== */
.lar-hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 90vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    text-align: center;
    overflow: hidden;
}

.lar-hero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    pointer-events: none;
}

.lar-hero__content {
    position: relative;
    z-index: 1;
    max-width: 720px;
    padding: 100px 24px 60px;
}

.lar-hero__eyebrow {
    font-family: var(--lar-heading-font);
    font-size: 0.75rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--lar-gold);
    margin: 0 0 40px;
}

.lar-hero__headline {
    font-family: var(--lar-heading-font);
    font-size: clamp(1.7rem, 4.7vw, 2.7rem);
    font-weight: 300;
    line-height: 1.2;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #fff;
    margin: 0 0 24px;
}

.lar-hero__headline-static {
    display: block;
}

.lar-hero__headline-animated {
    display: block;
    color: var(--lar-gold);
    min-height: 1.2em;
    font-size: clamp(2.3rem, 5.3vw, 3.2rem);
}

.lar-hero__headline-animated::after {
    content: '|';
    animation: lar-blink 0.8s step-end infinite;
    color: var(--lar-gold);
    font-weight: 100;
}

.lar-hero__headline-animated.lar-typed-done::after {
    display: none;
}

@keyframes lar-blink {
    50% { opacity: 0; }
}

.lar-hero__sub {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--lar-text-light);
    margin: 0 0 36px;
    letter-spacing: 0.02em;
}

.lar-hero__actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========================================
   4. PITCH SECTIONS (shared)
   ======================================== */
.lar-pitch {
    padding: var(--lar-spacing-section) 0;
}

.lar-pitch__header {
    text-align: center;
    margin-bottom: var(--lar-spacing-md);
}

/* Section header icons — centered above each title */
.lar-pitch__header::before {
    content: '';
    display: block;
    width: 36px;
    height: 36px;
    margin: 0 auto 16px;
    background-color: var(--lar-gold);
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    /* Default: diamond / crystal shape */
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 36 36' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18 2L2 18l16 16 16-16L18 2z' stroke='%23000' stroke-width='1.5'/%3E%3Cpath d='M18 8L8 18l10 10 10-10L18 8z' stroke='%23000' stroke-width='1' opacity='.4'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 36 36' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18 2L2 18l16 16 16-16L18 2z' stroke='%23000' stroke-width='1.5'/%3E%3Cpath d='M18 8L8 18l10 10 10-10L18 8z' stroke='%23000' stroke-width='1' opacity='.4'/%3E%3C/svg%3E");
}

/* Intention tiles — lotus / flower */
.lar-pitch--intention-tiles .lar-pitch__header::before {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 36 36' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18 6c-4 4-8 10-8 16h16c0-6-4-12-8-16z' stroke='%23000' stroke-width='1.5' stroke-linejoin='round'/%3E%3Cpath d='M10 22c-5-3-8-8-8-12 4 0 9 3 12 8' stroke='%23000' stroke-width='1.2' stroke-linecap='round'/%3E%3Cpath d='M26 22c5-3 8-8 8-12-4 0-9 3-12 8' stroke='%23000' stroke-width='1.2' stroke-linecap='round'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 36 36' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18 6c-4 4-8 10-8 16h16c0-6-4-12-8-16z' stroke='%23000' stroke-width='1.5' stroke-linejoin='round'/%3E%3Cpath d='M10 22c-5-3-8-8-8-12 4 0 9 3 12 8' stroke='%23000' stroke-width='1.2' stroke-linecap='round'/%3E%3Cpath d='M26 22c5-3 8-8 8-12-4 0-9 3-12 8' stroke='%23000' stroke-width='1.2' stroke-linecap='round'/%3E%3C/svg%3E");
}

/* Crystal education — sparkle */
.lar-pitch--crystal-edu .lar-pitch__header::before {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 36 36' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18 2v32M2 18h32M7 7l22 22M29 7L7 29' stroke='%23000' stroke-width='1.2' stroke-linecap='round'/%3E%3Ccircle cx='18' cy='18' r='3' stroke='%23000' stroke-width='1.5'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 36 36' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18 2v32M2 18h32M7 7l22 22M29 7L7 29' stroke='%23000' stroke-width='1.2' stroke-linecap='round'/%3E%3Ccircle cx='18' cy='18' r='3' stroke='%23000' stroke-width='1.5'/%3E%3C/svg%3E");
}

/* New arrivals — star burst */
.lar-pitch--new-arrivals .lar-pitch__header::before {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 36 36' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18 2l3 10h10l-8 6 3 10-8-6-8 6 3-10-8-6h10l3-10z' stroke='%23000' stroke-width='1.3' stroke-linejoin='round'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 36 36' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18 2l3 10h10l-8 6 3 10-8-6-8 6 3-10-8-6h10l3-10z' stroke='%23000' stroke-width='1.3' stroke-linejoin='round'/%3E%3C/svg%3E");
}

/* Social proof — chat bubble */
.lar-pitch--social-proof .lar-pitch__header::before {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 36 36' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 6h28v18H14l-6 6v-6H4V6z' stroke='%23000' stroke-width='1.5' stroke-linejoin='round'/%3E%3Cpath d='M10 13h16M10 18h10' stroke='%23000' stroke-width='1.2' stroke-linecap='round'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 36 36' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 6h28v18H14l-6 6v-6H4V6z' stroke='%23000' stroke-width='1.5' stroke-linejoin='round'/%3E%3Cpath d='M10 13h16M10 18h10' stroke='%23000' stroke-width='1.2' stroke-linecap='round'/%3E%3C/svg%3E");
}

/* Email capture — envelope */
.lar-pitch--email-capture .lar-pitch__header::before {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 36 36' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='3' y='8' width='30' height='20' rx='2' stroke='%23000' stroke-width='1.5'/%3E%3Cpath d='M3 10l15 10 15-10' stroke='%23000' stroke-width='1.5' stroke-linejoin='round'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 36 36' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='3' y='8' width='30' height='20' rx='2' stroke='%23000' stroke-width='1.5'/%3E%3Cpath d='M3 10l15 10 15-10' stroke='%23000' stroke-width='1.5' stroke-linejoin='round'/%3E%3C/svg%3E");
}

/* Zodiac grid — zodiac wheel */
.lar-pitch--zodiac-grid .lar-pitch__header::before {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 36 36' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='18' cy='18' r='15' stroke='%23000' stroke-width='1.5'/%3E%3Ccircle cx='18' cy='18' r='8' stroke='%23000' stroke-width='1'/%3E%3Cpath d='M18 3v6M18 27v6M3 18h6M27 18h6M7.4 7.4l4.2 4.2M24.4 24.4l4.2 4.2M28.6 7.4l-4.2 4.2M11.6 24.4l-4.2 4.2' stroke='%23000' stroke-width='1' stroke-linecap='round'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 36 36' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='18' cy='18' r='15' stroke='%23000' stroke-width='1.5'/%3E%3Ccircle cx='18' cy='18' r='8' stroke='%23000' stroke-width='1'/%3E%3Cpath d='M18 3v6M18 27v6M3 18h6M27 18h6M7.4 7.4l4.2 4.2M24.4 24.4l4.2 4.2M28.6 7.4l-4.2 4.2M11.6 24.4l-4.2 4.2' stroke='%23000' stroke-width='1' stroke-linecap='round'/%3E%3C/svg%3E");
}

/* Sizing — ruler / measure */
.lar-pitch--sizing .lar-pitch__header::before {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 36 36' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='2' y='12' width='32' height='12' rx='2' stroke='%23000' stroke-width='1.5'/%3E%3Cpath d='M8 12v5M14 12v7M20 12v5M26 12v7' stroke='%23000' stroke-width='1.2' stroke-linecap='round'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 36 36' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='2' y='12' width='32' height='12' rx='2' stroke='%23000' stroke-width='1.5'/%3E%3Cpath d='M8 12v5M14 12v7M20 12v5M26 12v7' stroke='%23000' stroke-width='1.2' stroke-linecap='round'/%3E%3C/svg%3E");
}

/* Charms — charm pendant */
.lar-pitch--charms .lar-pitch__header::before {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 36 36' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='18' cy='8' r='4' stroke='%23000' stroke-width='1.5'/%3E%3Cpath d='M18 12v4' stroke='%23000' stroke-width='1.5'/%3E%3Cpath d='M10 20l8 14 8-14H10z' stroke='%23000' stroke-width='1.5' stroke-linejoin='round'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 36 36' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='18' cy='8' r='4' stroke='%23000' stroke-width='1.5'/%3E%3Cpath d='M18 12v4' stroke='%23000' stroke-width='1.5'/%3E%3Cpath d='M10 20l8 14 8-14H10z' stroke='%23000' stroke-width='1.5' stroke-linejoin='round'/%3E%3C/svg%3E");
}

/* Upgrade beads — link chain */
.lar-pitch--upgrade-beads .lar-pitch__header::before {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 36 36' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15 21l6-6' stroke='%23000' stroke-width='1.5' stroke-linecap='round'/%3E%3Cpath d='M10 22l-2 2a5 5 0 007 7l2-2' stroke='%23000' stroke-width='1.5' stroke-linecap='round'/%3E%3Cpath d='M26 14l2-2a5 5 0 00-7-7l-2 2' stroke='%23000' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 36 36' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15 21l6-6' stroke='%23000' stroke-width='1.5' stroke-linecap='round'/%3E%3Cpath d='M10 22l-2 2a5 5 0 007 7l2-2' stroke='%23000' stroke-width='1.5' stroke-linecap='round'/%3E%3Cpath d='M26 14l2-2a5 5 0 00-7-7l-2 2' stroke='%23000' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
}

/* Buying guide — compass */
.lar-pitch--buying-guide .lar-pitch__header::before {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 36 36' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='18' cy='18' r='15' stroke='%23000' stroke-width='1.5'/%3E%3Cpath d='M22 10l-10 6 4 10 10-6-4-10z' stroke='%23000' stroke-width='1.3' stroke-linejoin='round'/%3E%3Ccircle cx='18' cy='18' r='2' stroke='%23000' stroke-width='1'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 36 36' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='18' cy='18' r='15' stroke='%23000' stroke-width='1.5'/%3E%3Cpath d='M22 10l-10 6 4 10 10-6-4-10z' stroke='%23000' stroke-width='1.3' stroke-linejoin='round'/%3E%3Ccircle cx='18' cy='18' r='2' stroke='%23000' stroke-width='1'/%3E%3C/svg%3E");
}

/* Collection grid — grid layout */
.lar-pitch--collection-grid .lar-pitch__header::before {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 36 36' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='3' y='3' width='12' height='12' rx='2' stroke='%23000' stroke-width='1.5'/%3E%3Crect x='21' y='3' width='12' height='12' rx='2' stroke='%23000' stroke-width='1.5'/%3E%3Crect x='3' y='21' width='12' height='12' rx='2' stroke='%23000' stroke-width='1.5'/%3E%3Crect x='21' y='21' width='12' height='12' rx='2' stroke='%23000' stroke-width='1.5'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 36 36' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='3' y='3' width='12' height='12' rx='2' stroke='%23000' stroke-width='1.5'/%3E%3Crect x='21' y='3' width='12' height='12' rx='2' stroke='%23000' stroke-width='1.5'/%3E%3Crect x='3' y='21' width='12' height='12' rx='2' stroke='%23000' stroke-width='1.5'/%3E%3Crect x='21' y='21' width='12' height='12' rx='2' stroke='%23000' stroke-width='1.5'/%3E%3C/svg%3E");
}

/* Spotlights — magnifying glass */
.lar-pitch--spotlights .lar-pitch__header::before {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 36 36' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='16' cy='16' r='11' stroke='%23000' stroke-width='1.5'/%3E%3Cpath d='M25 25l8 8' stroke='%23000' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 36 36' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='16' cy='16' r='11' stroke='%23000' stroke-width='1.5'/%3E%3Cpath d='M25 25l8 8' stroke='%23000' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
}

/* Events — calendar */
.lar-pitch--events .lar-pitch__header::before {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 36 36' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='3' y='6' width='30' height='26' rx='2' stroke='%23000' stroke-width='1.5'/%3E%3Cpath d='M3 14h30M11 3v6M25 3v6' stroke='%23000' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 36 36' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='3' y='6' width='30' height='26' rx='2' stroke='%23000' stroke-width='1.5'/%3E%3Cpath d='M3 14h30M11 3v6M25 3v6' stroke='%23000' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
}

.lar-pitch__title {
    font-family: var(--lar-heading-font);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 300;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin: 0 0 12px;
}

.lar-pitch__sub {
    font-size: 1rem;
    color: var(--lar-text-dark);
    margin: 0 auto;
    letter-spacing: 0.02em;
    max-width: 600px;
    line-height: 1.7;
}

.lar-pitch__footer {
    text-align: center;
    margin-top: var(--lar-spacing-sm);
}

.lar-section-footer {
    text-align: center;
    margin-top: var(--lar-spacing-sm);
}

/* Alternating backgrounds */
.lar-pitch--sizing {
    padding: 0;
    background: var(--lar-off-white);
}

.lar-pitch--latest-beads {
    background: #fff;
}

.lar-pitch--charms {
    background: var(--lar-off-white);
}

.lar-pitch--events {
    background: #fff;
}

/* ========================================
   5. ONE SIZE FITS ALL — 50/50 SPLIT
   ======================================== */
.lar-sizing-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
}

.lar-sizing-split__text {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--lar-spacing-section) 48px;
    background: var(--lar-off-white);
}

.lar-sizing-split__text-inner {
    max-width: 420px;
}

.lar-sizing-split__text .lar-pitch__title {
    text-align: left;
}

.lar-sizing-split__text .lar-pitch__sub {
    text-align: left;
    margin: 0 0 32px;
    max-width: none;
}

.lar-sizing-split__carousel {
    position: relative;
}

/* ========================================
   6. CAROUSEL
   ======================================== */
.lar-carousel {
    position: relative;
    width: 100%;
    height: 100%;
}

.lar-carousel__track {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 400px;
    background: var(--lar-dark);
}

.lar-carousel__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.lar-carousel__slide--active {
    opacity: 1;
}

.lar-carousel__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(1.25) contrast(1.08) brightness(1.04);
    box-shadow: inset 0 0 180px rgba(0, 0, 0, 0.55);
}

/* Warm radiant vignette overlay */
.lar-carousel__slide::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: radial-gradient(
        ellipse 70% 70% at center,
        transparent 40%,
        rgba(160, 120, 60, 0.15) 80%,
        rgba(80, 50, 20, 0.35) 100%
    );
    pointer-events: none;
}

/* Quote overlay */
.lar-carousel__quote {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2;
    padding: 85px 40px 100px;
    background: linear-gradient(rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.5) 60%, transparent 100%);
    pointer-events: none;
}

.lar-carousel__quote p {
    font-family: var(--lar-heading-font);
    font-size: clamp(1.35rem, 2.5vw, 1.8rem);
    font-weight: 400;
    font-style: italic;
    line-height: 1.45;
    color: #fff;
    margin: 0;
    text-align: center;
    letter-spacing: 0.03em;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7), 0 0 20px rgba(0, 0, 0, 0.3);
}

/* Nav buttons */
.lar-carousel__btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    background: rgba(0, 0, 0, 0.4);
    color: #fff;
    border: none;
    width: 44px;
    height: 44px;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    border-radius: 50%;
    transition: background 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lar-carousel__btn:hover {
    background: rgba(0, 0, 0, 0.7);
}

.lar-carousel__btn--prev {
    left: 16px;
}

.lar-carousel__btn--next {
    right: 16px;
}

/* Dots */
.lar-carousel__dots {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 2;
}

/* Push dots up when quote is present */
.lar-carousel__quote ~ .lar-carousel__dots {
    /* dots are outside quote, so this won't apply — kept in track-level dots */
}

.lar-carousel__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid #fff;
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: background 0.3s ease;
}

.lar-carousel__dot--active {
    background: #fff;
}

/* ========================================
   7. PRODUCT GRID
   ======================================== */
.lar-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.lar-product-card__link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.lar-product-card__image-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    background: var(--lar-off-white);
    border-radius: var(--lar-radius);
}

.lar-product-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.lar-product-card__link:hover .lar-product-card__image {
    transform: scale(1.05);
}

.lar-product-card__info {
    padding: 16px 4px 0;
    text-align: center;
}

.lar-product-card__name {
    font-family: var(--lar-heading-font);
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin: 0 0 4px;
    color: var(--lar-dark);
}

.lar-product-card__price {
    font-size: 0.85rem;
    color: var(--lar-gold);
}

/* ========================================
   8. EVENTS SECTION
   ======================================== */
.lar-pitch--events .lar-pitch__sub {
    max-width: 700px;
}

.lar-events-shortcode {
    margin-bottom: 48px;
}

/* ========================================
   9. FINAL CTA
   ======================================== */
.lar-cta {
    padding: var(--lar-spacing-section) 0;
    background: var(--lar-darker);
    text-align: center;
}

.lar-cta__headline {
    font-family: var(--lar-heading-font);
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 300;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #fff;
    margin: 0 0 12px;
}

.lar-cta__sub {
    font-size: 1rem;
    color: var(--lar-text-light);
    margin: 0 0 36px;
    letter-spacing: 0.05em;
}

/* ========================================
   10. REVEAL ANIMATION
   ======================================== */
.lar-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.lar-reveal.lar-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger product cards */
.lar-products-grid .lar-reveal:nth-child(2) { transition-delay: 0.1s; }
.lar-products-grid .lar-reveal:nth-child(3) { transition-delay: 0.2s; }
.lar-products-grid .lar-reveal:nth-child(4) { transition-delay: 0.3s; }
.lar-products-grid .lar-reveal:nth-child(5) { transition-delay: 0.4s; }
.lar-products-grid .lar-reveal:nth-child(6) { transition-delay: 0.5s; }
.lar-products-grid .lar-reveal:nth-child(7) { transition-delay: 0.6s; }
.lar-products-grid .lar-reveal:nth-child(8) { transition-delay: 0.7s; }

/* ========================================
   11. TRUST BAR
   ======================================== */
.lar-trust-bar {
    background: var(--lar-dark);
    padding: 16px 0;
}

.lar-trust-bar__list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.lar-trust-bar__item {
    font-family: var(--lar-heading-font);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--lar-gold);
}

.lar-trust-bar__item + .lar-trust-bar__item::before {
    content: '\2022';
    margin-right: 32px;
    color: rgba(201, 169, 110, 0.4);
}

/* ========================================
   12. ZODIAC GRID
   ======================================== */
.lar-zodiac-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.lar-zodiac-tile {
    display: block;
    text-decoration: none;
    text-align: center;
    color: inherit;
    transition: transform 0.3s ease;
}

.lar-zodiac-tile:hover {
    transform: translateY(-4px);
}

.lar-zodiac-tile__image-wrap {
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: var(--lar-radius);
    background: var(--lar-off-white);
    margin-bottom: 12px;
}

.lar-zodiac-tile__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.lar-zodiac-tile:hover .lar-zodiac-tile__image {
    transform: scale(1.05);
}

.lar-zodiac-tile__sign {
    display: block;
    font-family: var(--lar-heading-font);
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--lar-dark);
    margin-bottom: 4px;
}

.lar-zodiac-tile__price {
    font-size: 0.8rem;
    color: var(--lar-gold);
}

/* Variant-specific backgrounds */
.lar-pitch--zodiac-grid {
    background: #fff;
}

.lar-pitch--upgrade-beads {
    background: var(--lar-off-white);
}

.lar-pitch--transferable {
    background: #fff;
}

/* ========================================
   13. SOCIAL PROOF
   ======================================== */
.lar-pitch--social-proof {
    background: var(--lar-off-white);
}

.lar-quotes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.lar-quote-card {
    background: #fff;
    padding: 32px;
    border-left: 3px solid var(--lar-gold);
    margin: 0;
}

.lar-quote-card__text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--lar-text-dark);
    margin: 0 0 16px;
    font-style: italic;
}

.lar-quote-card__author {
    font-family: var(--lar-heading-font);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--lar-gold);
    font-style: normal;
}

/* ========================================
   14. EMAIL CAPTURE
   ======================================== */
.lar-pitch--email-capture {
    background: var(--lar-darker);
}

.lar-email-capture {
    text-align: center;
}

.lar-pitch--email-capture .lar-pitch__title {
    color: #fff;
}

.lar-pitch--email-capture .lar-pitch__sub {
    color: var(--lar-text-light);
}

.lar-email-capture__fallback {
    margin-top: 24px;
}

/* ========================================
   15. ANNOUNCEMENT BAR
   ======================================== */
.lar-announcement-bar {
    position: relative;
    background: var(--lar-gold);
    padding: 10px 48px 10px 24px;
    text-align: center;
    z-index: 9999;
}

.lar-announcement-bar.lar-hidden {
    display: none;
}

.lar-announcement-bar__text {
    font-family: var(--lar-heading-font);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #fff;
    margin: 0;
}

.lar-announcement-bar__label {
    display: inline-block;
    background: rgba(0, 0, 0, 0.2);
    padding: 2px 10px;
    border-radius: 2px;
    margin-right: 8px;
    font-weight: 600;
}

.lar-announcement-bar__countdown {
    font-weight: 600;
}

.lar-announcement-bar__close {
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #fff;
    font-size: 1.25rem;
    cursor: pointer;
    padding: 4px 8px;
    line-height: 1;
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

.lar-announcement-bar__close:hover {
    opacity: 1;
}

/* ========================================
   16. PRODUCT SPOTLIGHTS (50/50)
   ======================================== */
.lar-pitch--spotlights {
    background: #fff;
    padding-bottom: 0;
}

.lar-spotlight {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
}

.lar-spotlight--reversed {
    direction: rtl;
}

.lar-spotlight--reversed > * {
    direction: ltr;
}

.lar-spotlight__image {
    overflow: hidden;
    background: var(--lar-off-white);
}

.lar-spotlight__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.lar-spotlight__text {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 48px;
    background: var(--lar-off-white);
}

.lar-spotlight--reversed .lar-spotlight__text {
    background: #fff;
}

.lar-spotlight__text-inner {
    max-width: 400px;
}

.lar-spotlight__name {
    font-family: var(--lar-heading-font);
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: 300;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin: 0 0 8px;
    color: var(--lar-dark);
}

.lar-spotlight__price {
    display: block;
    font-size: 1.1rem;
    color: var(--lar-gold);
    margin-bottom: 16px;
}

.lar-spotlight__desc {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--lar-text-dark);
    margin: 0 0 24px;
}

/* ========================================
   17. (removed — merged into section 21)
   ======================================== */

/* ========================================
   18. INTENTION TILES
   ======================================== */
.lar-pitch--intention-tiles {
    background: var(--lar-cream);
}

.lar-intention-grid {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.lar-intention-tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-decoration: none;
    color: inherit;
    width: 190px;
    padding-bottom: 12px;
}

.lar-intention-tile__image-wrap {
    width: 170px;
    height: 170px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--lar-gold);
    position: relative;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.lar-intention-tile__image-wrap::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 15%;
    width: 70%;
    height: 12px;
    background: radial-gradient(ellipse, rgba(0, 0, 0, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.lar-intention-tile:hover .lar-intention-tile__image-wrap {
    border-color: var(--lar-dark);
    transform: translateY(-4px);
}

.lar-intention-tile:hover .lar-intention-tile__image-wrap::after {
    opacity: 0.6;
}

.lar-intention-tile__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.lar-intention-tile:hover .lar-intention-tile__image {
    transform: scale(1.1);
}

.lar-intention-tile__title {
    font-family: var(--lar-heading-font);
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin: 16px 0 4px;
    color: var(--lar-dark);
}

.lar-intention-tile__crystal {
    display: block;
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--lar-gold);
    margin-bottom: 8px;
}

.lar-intention-tile__desc {
    font-size: 0.78rem;
    color: var(--lar-text-dark);
    margin: 0;
    line-height: 1.5;
}

/* ========================================
   19. CRYSTAL EDUCATION
   ======================================== */
.lar-pitch--crystal-edu {
    background: var(--lar-off-white);
}

.lar-crystal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.lar-crystal-card {
    display: block;
    background: #fff;
    border-radius: var(--lar-radius);
    text-align: center;
    text-decoration: none;
    color: inherit;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lar-crystal-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.lar-crystal-card__image-wrap {
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--lar-cream);
}

.lar-crystal-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.lar-crystal-card:hover .lar-crystal-card__image {
    transform: scale(1.05);
}

.lar-crystal-card__text {
    padding: 20px 16px 24px;
}

.lar-crystal-card__name {
    font-family: var(--lar-heading-font);
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin: 0 0 4px;
    color: var(--lar-dark);
}

.lar-crystal-card__property {
    display: block;
    font-size: 0.8rem;
    color: var(--lar-gold);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.lar-crystal-card__desc {
    font-size: 0.85rem;
    color: var(--lar-text-dark);
    line-height: 1.6;
    margin: 0;
}

/* ========================================
   20. IDENTITY STATEMENTS
   ======================================== */
.lar-pitch--identity {
    background: #fff;
}

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

.lar-identity-block {
    text-align: center;
}

.lar-identity-block__icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    color: var(--lar-gold);
}

.lar-identity-block__icon svg {
    width: 100%;
    height: 100%;
}

.lar-identity-block__headline {
    font-family: var(--lar-heading-font);
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--lar-dark);
    margin: 0 0 12px;
    line-height: 1.5;
}

.lar-identity-block__body {
    font-size: 0.9rem;
    color: var(--lar-text-dark);
    line-height: 1.7;
    margin: 0;
}

/* ========================================
   21. BUYING GUIDE (dark "Build Your Set")
   ======================================== */
.lar-pitch--buying-guide {
    background: var(--lar-darker);
}

.lar-pitch--buying-guide .lar-pitch__title {
    color: #fff;
}

.lar-pitch--buying-guide .lar-pitch__sub {
    color: var(--lar-text-light);
}

/* Override section header icon color for dark background */
.lar-pitch--buying-guide .lar-pitch__header::before {
    background-color: var(--lar-gold);
}

.lar-pitch--buying-guide .lar-section-footer .lar-btn--primary {
    /* Already gold — no change needed, but ensure it pops on dark */
}

.lar-guide-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.lar-guide-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 32px 24px;
    text-align: center;
    border-radius: var(--lar-radius);
}

.lar-guide-card__icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
    color: var(--lar-gold);
}

.lar-guide-card__icon svg {
    width: 100%;
    height: 100%;
}

.lar-guide-card__tier {
    font-family: var(--lar-heading-font);
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin: 0 0 8px;
    color: #fff;
}

.lar-guide-card__desc {
    font-size: 0.85rem;
    color: var(--lar-text-light);
    line-height: 1.6;
    margin: 0 0 16px;
}

.lar-guide-card__price {
    display: block;
    font-family: var(--lar-heading-font);
    font-size: 1.5rem;
    color: var(--lar-gold);
    margin-bottom: 12px;
    letter-spacing: 0.05em;
}

.lar-guide-card__best {
    display: block;
    font-family: var(--lar-heading-font);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--lar-gold);
    opacity: 0.7;
}

/* ========================================
   22. NEW ARRIVALS
   ======================================== */
.lar-pitch--new-arrivals {
    background: #fff;
}

/* ========================================
   23. COLLECTION GRID
   ======================================== */
.lar-pitch--collection-grid {
    background: #fff;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
    .lar-products-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .lar-intention-tile {
        width: 160px;
    }

    .lar-intention-tile__image-wrap {
        width: 140px;
        height: 140px;
    }
}

@media (max-width: 768px) {
    .lar-landing {
        --lar-spacing-section: 48px;
    }

    .lar-hero {
        background-attachment: scroll;
    }

    .lar-hero__headline {
        font-size: clamp(1.6rem, 7vw, 2.5rem);
    }

    .lar-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    /* One Size Fits All — stack on mobile */
    .lar-sizing-split {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .lar-sizing-split__text {
        padding: var(--lar-spacing-section) 24px 32px;
        text-align: center;
    }

    .lar-sizing-split__text .lar-pitch__title,
    .lar-sizing-split__text .lar-pitch__sub {
        text-align: center;
    }

    .lar-sizing-split__text-inner {
        max-width: 500px;
    }

    .lar-sizing-split__carousel {
        /* Full width flush to container bottom */
        width: 100%;
    }

    .lar-carousel__track {
        min-height: 300px;
        aspect-ratio: 1 / 1;
    }

    .lar-carousel__btn {
        width: 36px;
        height: 36px;
        font-size: 1.2rem;
    }

    .lar-carousel__quote {
        padding: 52px 24px 80px;
    }

    .lar-carousel__quote p {
        font-size: 1.8rem;
    }

    .lar-btn {
        padding: 12px 32px;
    }

    /* Trust bar — stack */
    .lar-trust-bar__list {
        gap: 12px;
    }

    .lar-trust-bar__item + .lar-trust-bar__item::before {
        display: none;
    }

    /* Zodiac grid — 2 cols */
    .lar-zodiac-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    /* Quotes — single column */
    .lar-quotes-grid {
        grid-template-columns: 1fr;
    }

    /* Spotlights — stack */
    .lar-spotlight {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .lar-spotlight--reversed {
        direction: ltr;
    }

    .lar-spotlight__text {
        padding: 40px 24px;
    }

    /* Buying guide — stack */
    .lar-guide-grid {
        grid-template-columns: 1fr;
    }

    /* Intention tiles — smaller on mobile */
    .lar-intention-grid {
        gap: 10px;
    }

    .lar-intention-tile {
        width: 140px;
    }

    .lar-intention-tile__image-wrap {
        width: 120px;
        height: 120px;
    }

    /* Crystal grid — 2 cols */
    .lar-crystal-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Identity — single column on mobile */
    .lar-identity-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

}

@media (max-width: 480px) {
    .lar-hero {
        min-height: 55vh;
    }

    .lar-hero__content {
        padding: 133px 20px 60px;
    }

    .lar-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .lar-product-card__name {
        font-size: 0.75rem;
    }

    .lar-carousel__track {
        aspect-ratio: 1 / 1;
    }

    .lar-carousel__quote {
        padding: 28px 20px 60px;
    }

    .lar-carousel__quote p {
        font-size: 1.5rem;
    }

    /* Intention — single col on small */
    .lar-intention-grid {
        grid-template-columns: 1fr;
    }

    /* Crystal — single col */
    .lar-crystal-grid {
        grid-template-columns: 1fr;
    }

    /* Announcement bar — smaller text */
    .lar-announcement-bar__text {
        font-size: 0.65rem;
        letter-spacing: 0.1em;
    }
}
