/* ============================================================
   LOOPED JOYS — Content Pages
   pages.css: 404 · Terms & Conditions · Referral · Maintenance
   ============================================================ */

/* ── 404 ─────────────────────────────────────────────────────── */
.lj-404-wrap {
    min-height: calc(100vh - var(--header-h) - var(--announce-h));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--sp-20) var(--gutter);
    background: var(--clr-surface);
}

.lj-404-inner {
    text-align: center;
    max-width: 540px;
    position: relative;
    padding-top: var(--sp-20);
}

.lj-404-bg-num {
    font-family: var(--font-display);
    font-size: clamp(8rem, 22vw, 16rem);
    font-weight: 700;
    color: var(--clr-beige-dark);
    line-height: 1;
    letter-spacing: var(--ls-tight);
    pointer-events: none;
    user-select: none;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
    white-space: nowrap;
}

.lj-404-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--sp-5);
}

.lj-404-title {
    font-family: var(--font-display);
    font-size: var(--fs-3xl);
    font-weight: 600;
    color: var(--clr-brown);
    letter-spacing: var(--ls-tight);
    line-height: var(--lh-tight);
}

.lj-404-body {
    font-family: var(--font-body);
    font-size: var(--fs-md);
    color: var(--clr-text-muted);
    line-height: var(--lh-normal);
    max-width: 40ch;
}

.lj-404-actions {
    display: flex;
    gap: var(--sp-4);
    flex-wrap: wrap;
    justify-content: center;
    margin-top: var(--sp-3);
}

.lj-404-links {
    display: flex;
    gap: var(--sp-8);
    margin-top: var(--sp-6);
    padding-top: var(--sp-6);
    border-top: 1px solid var(--clr-border);
    flex-wrap: wrap;
    justify-content: center;
}

.lj-404-links a {
    font-family: var(--font-body);
    font-size: var(--fs-xs);
    font-weight: 600;
    letter-spacing: var(--ls-wider);
    text-transform: uppercase;
    color: var(--clr-text-muted);
    text-decoration: none;
    transition: color var(--tr-fast);
}

.lj-404-links a:hover {
    color: var(--clr-brown);
}

/* ── Terms & Conditions ─────────────────────────────────────── */
.lj-terms-hero {
    text-align: center;
    padding: var(--sp-20) var(--gutter) var(--sp-16);
    border-bottom: 1px solid var(--clr-border);
    background: var(--clr-surface);
}

.lj-terms-eyebrow {
    font-family: var(--font-body);
    font-size: var(--fs-xs);
    font-weight: 700;
    letter-spacing: var(--ls-widest);
    text-transform: uppercase;
    color: var(--clr-text-muted);
}

.lj-terms-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 300;
    font-style: italic;
    color: var(--clr-blush);
    letter-spacing: var(--ls-tight);
    line-height: var(--lh-tight);
    margin: var(--sp-3) 0 var(--sp-2);
}

.lj-terms-updated {
    font-family: var(--font-body);
    font-size: var(--fs-sm);
    color: var(--clr-text-muted);
    opacity: 0.65;
}

.lj-terms-outer {
    background: var(--clr-bg);
    padding: var(--sp-16) var(--gutter) var(--sp-24);
}

.lj-terms-wrap {
    max-width: 800px;
    margin: 0 auto;
}

/* Prose — applies to the_content() inside .lj-terms-content */
.lj-terms-content {
    display: flex;
    flex-direction: column;
    gap: var(--sp-16);
}

.lj-terms-content section { display: contents; }

.lj-terms-content h2 {
    font-family: var(--font-display);
    font-size: var(--fs-2xl);
    font-weight: 600;
    color: var(--clr-brown);
    letter-spacing: var(--ls-tight);
    margin-bottom: var(--sp-4);
}

.lj-terms-content p {
    font-family: var(--font-body);
    font-size: var(--fs-base);
    color: rgba(26, 26, 26, 0.88);
    line-height: var(--lh-loose);
}

.lj-terms-content strong {
    color: var(--clr-brown);
    font-weight: 700;
}

.lj-terms-content ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--sp-4);
    margin-top: var(--sp-4);
}

.lj-terms-content ul li {
    display: flex;
    align-items: flex-start;
    gap: var(--sp-4);
    font-family: var(--font-body);
    font-size: var(--fs-base);
    color: rgba(26, 26, 26, 0.88);
    line-height: var(--lh-normal);
}

.lj-terms-content ul li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: var(--r-full);
    background: var(--clr-blush);
    flex-shrink: 0;
    margin-top: 0.55em;
}

.lj-terms-content blockquote {
    margin-top: var(--sp-8);
    padding: var(--sp-6) var(--sp-8);
    border-radius: var(--r-lg);
    border: 1px solid var(--clr-beige-dark);
    background: var(--clr-cream-dark);
    font-family: var(--font-display);
    font-style: italic;
    font-size: var(--fs-md);
    color: var(--clr-brown);
    line-height: var(--lh-normal);
}

/* 2-col info cards */
.lj-terms-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-6);
    margin-top: var(--sp-8);
}

.lj-terms-card {
    border: 1px solid var(--clr-border);
    border-radius: var(--r-xl);
    padding: var(--sp-8);
    background: var(--clr-surface);
}

.lj-terms-card h4 {
    font-family: var(--font-display);
    font-size: var(--fs-lg);
    font-weight: 600;
    color: var(--clr-brown);
    margin-bottom: var(--sp-2);
}

.lj-terms-card p {
    font-size: var(--fs-sm) !important;
    color: var(--clr-text-muted) !important;
    line-height: var(--lh-normal) !important;
}

/* Terms footer */
.lj-terms-footer {
    margin-top: var(--sp-24);
    padding-top: var(--sp-12);
    border-top: 1px solid var(--clr-border);
    text-align: center;
}

.lj-terms-footer-note {
    font-family: var(--font-body);
    font-size: var(--fs-sm);
    color: var(--clr-text-muted);
    margin-bottom: var(--sp-8);
    max-width: 52ch;
    margin-left: auto;
    margin-right: auto;
    line-height: var(--lh-normal);
}

.lj-terms-actions {
    display: flex;
    gap: var(--sp-4);
    justify-content: center;
    flex-wrap: wrap;
}

/* ── Referral ────────────────────────────────────────────────── */
.lj-referral-outer {
    min-height: calc(100vh - var(--header-h) - var(--announce-h));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--sp-16) var(--gutter);
    background: var(--clr-bg);
}

.lj-referral-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1100px;
    width: 100%;
    background: var(--clr-surface);
    border-radius: var(--r-2xl);
    box-shadow: var(--sh-xl);
    overflow: hidden;
    min-height: 580px;
}

.lj-referral-img {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--clr-blush-pale) 0%, rgba(143, 178, 136, 0.12) 100%);
}

.lj-referral-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform var(--tr-slow);
}

.lj-referral-img:hover img {
    transform: scale(1.04);
}

.lj-referral-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--sp-12);
    text-align: center;
    flex-direction: column;
    gap: var(--sp-4);
}

.lj-referral-img-placeholder svg {
    width: 80px;
    height: 80px;
    color: var(--clr-blush-light);
}

.lj-referral-img-placeholder span {
    font-family: var(--font-display);
    font-size: var(--fs-xl);
    font-style: italic;
    color: var(--clr-blush);
    line-height: var(--lh-normal);
}

.lj-referral-panel {
    padding: var(--sp-14) var(--sp-12);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: var(--sp-8);
}

.lj-referral-eyebrow {
    font-family: var(--font-body);
    font-size: var(--fs-xs);
    font-weight: 700;
    letter-spacing: var(--ls-widest);
    text-transform: uppercase;
    color: var(--clr-sage-dark);
}

.lj-referral-title {
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 4vw, 3.5rem);
    font-weight: 600;
    color: var(--clr-brown);
    letter-spacing: var(--ls-tight);
    line-height: var(--lh-tight);
}

.lj-referral-desc {
    font-family: var(--font-body);
    font-size: var(--fs-md);
    color: var(--clr-text);
    line-height: var(--lh-normal);
    opacity: 0.85;
    max-width: 40ch;
}

.lj-referral-desc strong {
    color: var(--clr-brown);
    font-weight: 700;
}

.lj-referral-link-group {
    display: flex;
    flex-direction: column;
    gap: var(--sp-2);
}

.lj-referral-link-label {
    font-family: var(--font-body);
    font-size: var(--fs-xs);
    font-weight: 700;
    letter-spacing: var(--ls-wider);
    text-transform: uppercase;
    color: var(--clr-brown);
    display: block;
}

.lj-referral-link-box {
    display: flex;
    align-items: stretch;
    border: 1px solid var(--clr-blush-light);
    border-radius: var(--r-xl);
    background: var(--clr-cream-dark);
    overflow: hidden;
    transition: box-shadow var(--tr-fast);
}

.lj-referral-link-box:focus-within {
    box-shadow: 0 0 0 2px rgba(217, 123, 130, 0.2);
}

.lj-referral-link-box input[type="text"] {
    flex: 1;
    border: none;
    background: transparent;
    padding: var(--sp-4) var(--sp-5);
    font-family: var(--font-body);
    font-size: var(--fs-sm);
    color: var(--clr-brown);
    font-weight: 500;
    outline: none;
    min-width: 0;
}

.lj-referral-copy-btn {
    display: flex;
    align-items: center;
    gap: var(--sp-2);
    padding: 0 var(--sp-6);
    background: var(--clr-blush-pale);
    color: var(--clr-brown);
    border: none;
    border-left: 1px solid var(--clr-blush-light);
    font-family: var(--font-body);
    font-size: var(--fs-sm);
    font-weight: 700;
    cursor: pointer;
    transition: background var(--tr-fast), color var(--tr-fast);
    white-space: nowrap;
    min-height: 52px;
}

.lj-referral-copy-btn:hover {
    background: var(--clr-blush-light);
    color: #fff;
}

.lj-referral-copy-btn svg {
    width: 15px;
    height: 15px;
}

.lj-referral-copy-btn.copied {
    background: var(--clr-sage);
    color: #fff;
    border-left-color: var(--clr-sage);
}

.lj-referral-share-group {
    display: flex;
    flex-direction: column;
    gap: var(--sp-3);
}

.lj-referral-share-label {
    font-family: var(--font-body);
    font-size: var(--fs-xs);
    font-weight: 700;
    letter-spacing: var(--ls-widest);
    text-transform: uppercase;
    color: var(--clr-text-muted);
    display: block;
}

.lj-referral-share-btns {
    display: flex;
    gap: var(--sp-3);
    flex-wrap: wrap;
}

.lj-referral-share-btn {
    flex: 1;
    min-width: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--sp-2);
    height: 50px;
    border-radius: var(--r-full);
    border: none;
    font-family: var(--font-body);
    font-size: var(--fs-sm);
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition: filter var(--tr-fast), transform var(--tr-fast);
}

.lj-referral-share-btn:hover {
    filter: brightness(0.9);
    transform: translateY(-1px);
}

.lj-referral-share-btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.lj-referral-share-btn--whatsapp {
    background: var(--clr-sage);
    color: #fff;
}

.lj-referral-share-btn--instagram {
    background: var(--clr-sage);
    color: #fff;
}

.lj-referral-note {
    font-family: var(--font-body);
    font-size: 11px;
    color: var(--clr-text-muted);
    line-height: var(--lh-normal);
    text-align: center;
    opacity: 0.65;
    margin-top: var(--sp-2);
}

.lj-referral-note a {
    color: var(--clr-brown);
    text-decoration: underline;
}

.lj-referral-login-prompt {
    padding: var(--sp-8);
    background: var(--clr-cream-dark);
    border-radius: var(--r-lg);
    text-align: center;
    border: 1px dashed var(--clr-beige-dark);
}

.lj-referral-login-prompt p {
    font-family: var(--font-body);
    font-size: var(--fs-base);
    color: var(--clr-text-muted);
    margin-bottom: var(--sp-4);
    line-height: var(--lh-normal);
}

/* ── Maintenance Page ────────────────────────────────────────── */
.lj-maint-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: var(--clr-bg);
}

.lj-maint-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--sp-5) var(--sp-10);
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--clr-border);
    position: sticky;
    top: 0;
    z-index: var(--z-sticky);
}

.lj-maint-logo {
    font-family: var(--font-display);
    font-size: var(--fs-xl);
    font-weight: 600;
    font-style: italic;
    color: var(--clr-blush);
    text-decoration: none;
}

.lj-maint-badge {
    display: flex;
    align-items: center;
    gap: var(--sp-2);
    font-family: var(--font-body);
    font-size: var(--fs-xs);
    font-weight: 700;
    letter-spacing: var(--ls-widest);
    text-transform: uppercase;
    color: var(--clr-text-muted);
}

.lj-maint-badge svg {
    width: 15px;
    height: 15px;
    opacity: 0.5;
}

.lj-maint-main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--sp-16) var(--gutter);
}

.lj-maint-inner {
    max-width: 600px;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--sp-10);
}

.lj-maint-heading-wrap {
    display: flex;
    flex-direction: column;
    gap: var(--sp-3);
}

.lj-maint-eyebrow {
    font-family: var(--font-body);
    font-size: var(--fs-xs);
    font-weight: 700;
    letter-spacing: var(--ls-widest);
    text-transform: uppercase;
    color: var(--clr-text-muted);
}

.lj-maint-title {
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 6vw, 4rem);
    font-weight: 300;
    font-style: italic;
    color: var(--clr-text);
    letter-spacing: var(--ls-tight);
    line-height: var(--lh-tight);
}

.lj-maint-desc {
    font-family: var(--font-body);
    font-size: var(--fs-md);
    color: var(--clr-text-muted);
    line-height: var(--lh-normal);
    max-width: 44ch;
    margin: 0 auto;
}

.lj-maint-eta-box {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: var(--sp-2);
    padding: var(--sp-6) var(--sp-10);
    background: var(--clr-surface);
    border: 1px solid var(--clr-border);
    border-radius: var(--r-xl);
    box-shadow: var(--sh-sm);
}

.lj-maint-eta-label {
    font-family: var(--font-body);
    font-size: var(--fs-xs);
    font-weight: 700;
    letter-spacing: var(--ls-widest);
    text-transform: uppercase;
    color: var(--clr-text-muted);
}

.lj-maint-eta-val {
    font-family: var(--font-display);
    font-size: var(--fs-lg);
    font-weight: 600;
    color: var(--clr-text);
}

.lj-maint-notify {
    width: 100%;
    max-width: 420px;
    display: flex;
    flex-direction: column;
    gap: var(--sp-3);
    align-items: center;
}

.lj-maint-notify > p {
    font-family: var(--font-body);
    font-size: var(--fs-sm);
    font-weight: 600;
    color: var(--clr-text-muted);
}

.lj-maint-notify-form {
    display: flex;
    width: 100%;
    gap: var(--sp-2);
}

.lj-maint-input {
    flex: 1;
    padding: var(--sp-4) var(--sp-5);
    border: 1px solid var(--clr-border-dark);
    border-radius: var(--r-md);
    background: var(--clr-surface);
    font-family: var(--font-body);
    font-size: var(--fs-base);
    color: var(--clr-text);
    outline: none;
    transition: border-color var(--tr-fast), box-shadow var(--tr-fast);
}

.lj-maint-input:focus {
    border-color: var(--clr-blush);
    box-shadow: 0 0 0 2px rgba(217, 123, 130, 0.15);
}

.lj-maint-input::placeholder {
    color: var(--clr-text-muted);
    opacity: 0.6;
}

.lj-maint-submit {
    padding: var(--sp-4) var(--sp-6);
    background: var(--clr-text);
    color: #fff;
    border: none;
    border-radius: var(--r-md);
    font-family: var(--font-body);
    font-size: var(--fs-sm);
    font-weight: 700;
    cursor: pointer;
    transition: background var(--tr-fast);
    white-space: nowrap;
}

.lj-maint-submit:hover {
    background: var(--clr-blush);
}

.lj-maint-socials {
    display: flex;
    gap: var(--sp-8);
    justify-content: center;
}

.lj-maint-social-link {
    color: var(--clr-text-muted);
    display: flex;
    align-items: center;
    text-decoration: none;
    opacity: 0.5;
    transition: opacity var(--tr-fast), color var(--tr-fast);
}

.lj-maint-social-link:hover {
    opacity: 1;
    color: var(--clr-text);
}

.lj-maint-social-link svg {
    width: 20px;
    height: 20px;
}

.lj-maint-footer {
    padding: var(--sp-6) var(--sp-10);
    background: var(--clr-surface);
    border-top: 1px solid var(--clr-border);
}

.lj-maint-footer-inner {
    max-width: var(--container);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--sp-4);
    flex-wrap: wrap;
}

.lj-maint-footer-copy {
    font-family: var(--font-body);
    font-size: var(--fs-xs);
    color: var(--clr-text-muted);
    opacity: 0.6;
}

.lj-maint-footer-links {
    display: flex;
    gap: var(--sp-6);
}

.lj-maint-footer-links a {
    font-family: var(--font-body);
    font-size: var(--fs-xs);
    color: var(--clr-text-muted);
    text-decoration: none;
    opacity: 0.6;
    transition: opacity var(--tr-fast);
}

.lj-maint-footer-links a:hover {
    opacity: 1;
}

/* ══════════════════════════════════════════════════════════════
   BRAND STORY
   ══════════════════════════════════════════════════════════════ */

.lj-story-hero {
    text-align: center;
    padding: var(--sp-24) var(--gutter) var(--sp-20);
    border-bottom: 1px solid var(--clr-border);
}

.lj-story-eyebrow {
    font-family: var(--font-body);
    font-size: var(--fs-xs);
    letter-spacing: var(--ls-widest);
    text-transform: uppercase;
    color: var(--clr-text-muted);
    margin-bottom: var(--sp-5);
    display: block;
}

.lj-story-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
    color: var(--clr-sage);
    letter-spacing: var(--ls-tight);
    line-height: var(--lh-tight);
    margin-bottom: var(--sp-8);
}

.lj-story-rule {
    width: 64px;
    height: 1px;
    background: var(--clr-blush);
    margin: 0 auto var(--sp-8);
    border: none;
}

.lj-story-quote {
    font-family: var(--font-display);
    font-size: var(--fs-lg);
    font-style: italic;
    font-weight: 300;
    color: var(--clr-text-muted);
    line-height: var(--lh-normal);
    max-width: 52ch;
    margin: 0 auto;
}

/* Story sections */
.lj-story-section {
    padding: var(--sp-24) var(--gutter);
}

.lj-story-section--tinted {
    background: var(--clr-cream-dark);
}

.lj-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-20);
    align-items: center;
    max-width: var(--container);
    margin: 0 auto;
}

.lj-story-text-col {
    display: flex;
    flex-direction: column;
    gap: var(--sp-8);
}

.lj-story-h2 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 600;
    color: var(--clr-sage-dark);
    letter-spacing: var(--ls-tight);
    line-height: var(--lh-tight);
}

.lj-story-prose p {
    font-family: var(--font-body);
    font-size: var(--fs-base);
    color: var(--clr-text-muted);
    line-height: var(--lh-loose);
    font-weight: 400;
}

.lj-story-prose p + p {
    margin-top: var(--sp-4);
}

.lj-story-pullquote {
    background: rgba(217, 123, 130, 0.06);
    border-left: 4px solid var(--clr-blush);
    padding: var(--sp-6) var(--sp-8);
    font-family: var(--font-display);
    font-style: italic;
    font-size: var(--fs-xl);
    color: var(--clr-blush);
    line-height: var(--lh-normal);
}

/* Image column */
.lj-story-img-wrap {
    position: relative;
}

.lj-story-img-wrap img {
    width: 100%;
    height: 560px;
    object-fit: cover;
    border-radius: var(--r-sm);
    display: block;
    filter: grayscale(20%);
    transition: filter var(--tr-slow);
    box-shadow: var(--sh-md);
}

.lj-story-img-wrap:hover img {
    filter: grayscale(0%);
}

.lj-story-img-wrap::after {
    content: '';
    position: absolute;
    inset: 16px -16px -16px 16px;
    border: 1px solid var(--clr-beige-dark);
    border-radius: var(--r-sm);
    z-index: -1;
    pointer-events: none;
}

/* Stats grid in story */
.lj-story-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-8);
    padding-top: var(--sp-4);
}

.lj-story-stat-val {
    font-family: var(--font-display);
    font-size: var(--fs-2xl);
    font-weight: 600;
    color: var(--clr-sage-dark);
    display: block;
    margin-bottom: var(--sp-1);
}

.lj-story-stat-label {
    font-family: var(--font-body);
    font-size: var(--fs-xs);
    font-weight: 700;
    letter-spacing: var(--ls-widest);
    text-transform: uppercase;
    color: var(--clr-text-muted);
}

/* Philosophy section */
.lj-story-philosophy {
    padding: var(--sp-32) var(--gutter);
    text-align: center;
}

.lj-story-philosophy-icon {
    color: var(--clr-blush);
    margin-bottom: var(--sp-8);
}

.lj-story-philosophy-icon svg {
    width: 40px;
    height: 40px;
}

.lj-story-philosophy-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 600;
    font-style: italic;
    color: var(--clr-sage-dark);
    letter-spacing: var(--ls-tight);
    margin-bottom: var(--sp-12);
}

.lj-story-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-12);
    max-width: 860px;
    margin: 0 auto;
    text-align: left;
}

.lj-story-pillar h3 {
    font-family: var(--font-display);
    font-size: var(--fs-xl);
    font-weight: 700;
    color: var(--clr-text);
    margin-bottom: var(--sp-3);
}

.lj-story-pillar p {
    font-family: var(--font-body);
    font-size: var(--fs-base);
    color: var(--clr-text-muted);
    line-height: var(--lh-normal);
    font-weight: 400;
}

/* CTA band */
.lj-story-cta-wrap {
    padding: var(--sp-24) var(--gutter);
    border-top: 1px solid var(--clr-border);
}

.lj-story-cta-band {
    background: var(--clr-sage);
    border-radius: var(--r-sm);
    padding: var(--sp-20) var(--sp-16);
    text-align: center;
    position: relative;
    overflow: hidden;
    max-width: var(--container);
    margin: 0 auto;
}

.lj-story-cta-band::before,
.lj-story-cta-band::after {
    content: '';
    position: absolute;
    border-radius: var(--r-full);
    background: rgba(255,255,255,0.06);
    pointer-events: none;
}

.lj-story-cta-band::before {
    width: 300px;
    height: 300px;
    top: -80px;
    right: -80px;
}

.lj-story-cta-band::after {
    width: 200px;
    height: 200px;
    bottom: -60px;
    left: -60px;
}

.lj-story-cta-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    font-style: italic;
    color: #fff;
    letter-spacing: var(--ls-tight);
    margin-bottom: var(--sp-4);
    position: relative;
    z-index: 1;
}

.lj-story-cta-sub {
    font-family: var(--font-body);
    font-size: var(--fs-xs);
    font-weight: 700;
    letter-spacing: var(--ls-widest);
    text-transform: uppercase;
    color: rgba(255,255,255,0.75);
    margin-bottom: var(--sp-10);
    position: relative;
    z-index: 1;
}

.lj-story-cta-btn {
    position: relative;
    z-index: 1;
    display: inline-block;
    background: #fff;
    color: var(--clr-sage-dark);
    padding: var(--sp-4) var(--sp-12);
    border-radius: var(--r-full);
    font-family: var(--font-body);
    font-size: var(--fs-xs);
    font-weight: 700;
    letter-spacing: var(--ls-widest);
    text-transform: uppercase;
    text-decoration: none;
    transition: background var(--tr-fast), color var(--tr-fast);
}

.lj-story-cta-btn:hover {
    background: var(--clr-blush);
    color: #fff;
}

/* ══════════════════════════════════════════════════════════════
   THANK YOU / ORDER CONFIRMED
   ══════════════════════════════════════════════════════════════ */

/* Hide WC defaults that bleed through — page title + any residual hook output */
.woocommerce-order-received .entry-title,
.woocommerce-order-received .page-title,
.woocommerce-order-received h1.title,
.thankyou-main .woocommerce-order-overview,
.thankyou-main .woocommerce-order-details,
.thankyou-main .woocommerce-customer-details,
.thankyou-main .woocommerce-thankyou-order-received,
.thankyou-main p.woocommerce-notice,
.thankyou-main .woocommerce-bacs-bank-details,
.thankyou-main .wc_payment_method {
    display: none !important;
}

.thankyou-main {
    background: var(--clr-surface);
}

.thankyou-main .container {
    max-width: 1024px;
    padding: 0 var(--gutter);
    margin: 0 auto;
}

.thankyou-header {
    padding: var(--sp-12) var(--gutter) var(--sp-10);
    text-align: center;
    border-bottom: 1px solid var(--clr-border);
}

.thankyou-header__icon {
    width: 68px;
    height: 68px;
    border-radius: var(--r-full);
    background: rgba(143, 178, 136, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--sp-5);
}

.thankyou-header__icon svg {
    width: 32px;
    height: 32px;
    color: var(--clr-sage-dark);
    stroke-width: 2.5;
}

.thankyou-header__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 400;
    font-style: italic;
    color: var(--clr-text);
    letter-spacing: var(--ls-tight);
    line-height: var(--lh-tight);
    margin-bottom: var(--sp-3);
}

.thankyou-header__sub {
    font-family: var(--font-body);
    font-size: var(--fs-md);
    color: var(--clr-text-muted);
    line-height: var(--lh-normal);
    max-width: 44ch;
    margin: 0 auto var(--sp-3);
}

.thankyou-header__sub em {
    color: var(--clr-blush);
    font-style: italic;
    font-weight: 600;
}

.thankyou-header__order-id {
    font-family: var(--font-body);
    font-size: var(--fs-sm);
    font-weight: 700;
    color: var(--clr-text-muted);
}

.thankyou-header__order-date {
    font-weight: 400;
    opacity: 0.6;
}

/* Layout grid */
.thankyou-layout {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: var(--sp-16);
    padding: var(--sp-16) 0 var(--sp-16);
    align-items: start;
}

/* Summary heading */
.thankyou-summary__heading {
    font-family: var(--font-display);
    font-size: var(--fs-2xl);
    font-weight: 600;
    color: var(--clr-text);
    letter-spacing: var(--ls-tight);
    margin-bottom: var(--sp-2);
}

/* Item list */
.thankyou-items {
    display: flex;
    flex-direction: column;
    gap: var(--sp-8);
    margin-top: var(--sp-8);
}

.thankyou-item {
    display: flex;
    gap: var(--sp-6);
    align-items: center;
}

.thankyou-item__image {
    width: 112px;
    height: 112px;
    flex-shrink: 0;
    border-radius: var(--r-xl);
    overflow: hidden;
    background: var(--clr-cream-dark);
    border: 1px solid var(--clr-border);
}

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

.thankyou-item__details {
    flex: 1;
    min-width: 0;
}

.thankyou-item__name {
    font-family: var(--font-display);
    font-size: var(--fs-xl);
    font-weight: 700;
    color: var(--clr-text);
    margin-bottom: var(--sp-1);
}

.thankyou-item__name a {
    color: inherit;
    text-decoration: none;
}

.thankyou-item__name a:hover {
    color: var(--clr-blush);
}

.wc-item-meta {
    font-family: var(--font-body);
    font-size: var(--fs-sm);
    color: var(--clr-text-muted);
    margin-bottom: var(--sp-2);
}

.thankyou-item__meta {
    display: flex;
    align-items: center;
    gap: var(--sp-4);
    margin-top: var(--sp-2);
}

.thankyou-item__price {
    font-family: var(--font-body);
    font-size: var(--fs-lg);
    font-weight: 700;
    color: var(--clr-blush);
}

.thankyou-item__qty {
    font-family: var(--font-display);
    font-size: var(--fs-sm);
    font-style: italic;
    color: var(--clr-text-muted);
}

/* Totals */
.thankyou-totals {
    margin-top: var(--sp-12);
    padding-top: var(--sp-8);
    border-top: 1px solid var(--clr-border);
    display: flex;
    flex-direction: column;
    gap: var(--sp-3);
}

.thankyou-totals__row {
    display: flex;
    justify-content: space-between;
    font-family: var(--font-body);
    font-size: var(--fs-base);
    color: var(--clr-text-muted);
}

.thankyou-totals__free {
    color: var(--clr-sage-dark);
    font-weight: 500;
}

.thankyou-totals__row--grand {
    font-family: var(--font-display);
    font-size: var(--fs-2xl);
    font-weight: 700;
    color: var(--clr-text);
    margin-top: var(--sp-4);
    padding-top: var(--sp-4);
    border-top: 1px solid var(--clr-border-dark);
}

.thankyou-totals__grand-amount {
    color: var(--clr-blush);
}

/* Delivery card */
.thankyou-delivery-card {
    background: var(--clr-cream-dark);
    border: 1px solid var(--clr-border);
    border-radius: var(--r-2xl);
    padding: var(--sp-8);
    display: flex;
    flex-direction: column;
    gap: var(--sp-4);
}

.thankyou-delivery-card__icon {
    display: flex;
    align-items: center;
    gap: var(--sp-3);
    font-family: var(--font-body);
    font-size: var(--fs-sm);
    font-weight: 700;
    color: var(--clr-text);
}

.thankyou-delivery-card__icon svg {
    width: 20px;
    height: 20px;
    color: var(--clr-sage-dark);
}

.thankyou-delivery-card__date {
    font-family: var(--font-display);
    font-size: var(--fs-3xl);
    font-weight: 700;
    color: var(--clr-text);
    line-height: 1;
}

.thankyou-delivery-card__note {
    font-family: var(--font-body);
    font-size: var(--fs-sm);
    color: var(--clr-text-muted);
    line-height: var(--lh-normal);
}

.thankyou-delivery-card__progress {
    padding-top: var(--sp-5);
    border-top: 1px solid var(--clr-border-dark);
}

.thankyou-delivery-card__progress-label {
    font-family: var(--font-body);
    font-size: var(--fs-xs);
    font-weight: 700;
    letter-spacing: var(--ls-wider);
    text-transform: uppercase;
    color: var(--clr-text-muted);
    display: block;
    margin-bottom: var(--sp-3);
}

.thankyou-delivery-card__track {
    width: 100%;
    height: 6px;
    background: var(--clr-beige-dark);
    border-radius: var(--r-full);
    overflow: hidden;
}

.thankyou-delivery-card__fill {
    height: 100%;
    background: var(--clr-sage);
    border-radius: var(--r-full);
    transition: width 0.6s ease;
}

/* Address card */
.thankyou-address-card {
    background: var(--clr-surface);
    border: 1px solid var(--clr-border);
    border-radius: var(--r-xl);
    padding: var(--sp-6) var(--sp-8);
}

.thankyou-address-card__label {
    font-family: var(--font-body);
    font-size: var(--fs-xs);
    font-weight: 700;
    letter-spacing: var(--ls-wider);
    text-transform: uppercase;
    color: var(--clr-text-muted);
    margin-bottom: var(--sp-3);
}

.thankyou-address-card__address {
    font-family: var(--font-body);
    font-size: var(--fs-sm);
    color: var(--clr-text-muted);
    line-height: var(--lh-normal);
    font-style: normal;
}

/* Action buttons */
.thankyou-actions {
    display: flex;
    flex-direction: column;
    gap: var(--sp-3);
}

.btn--full {
    width: 100%;
    text-align: center;
    justify-content: center;
}

.thankyou-actions__help {
    font-family: var(--font-body);
    font-size: var(--fs-sm);
    color: var(--clr-text-muted);
    text-align: center;
    line-height: var(--lh-normal);
}

.thankyou-actions__help a {
    color: var(--clr-blush);
    text-decoration: none;
    font-weight: 500;
}

.thankyou-actions__help a:hover {
    text-decoration: underline;
}

/* Lovingly section */
.thankyou-lovingly {
    margin-top: var(--sp-24);
    padding: var(--sp-16) var(--gutter);
    border-top: 1px solid var(--clr-border);
    text-align: center;
}

.thankyou-lovingly__label {
    font-family: var(--font-body);
    font-size: var(--fs-xs);
    font-weight: 700;
    letter-spacing: var(--ls-widest);
    text-transform: uppercase;
    color: var(--clr-text-muted);
    display: block;
    margin-bottom: var(--sp-10);
}

.thankyou-lovingly__imgs {
    display: flex;
    justify-content: center;
    gap: var(--sp-8);
    flex-wrap: wrap;
}

.thankyou-lovingly__img {
    width: 88px;
    height: 88px;
    border-radius: var(--r-full);
    overflow: hidden;
    border: 4px solid var(--clr-surface);
    box-shadow: var(--sh-md);
    transition: transform var(--tr-base);
    background: var(--clr-cream-dark);
}

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

.thankyou-lovingly__img:hover {
    transform: scale(1.1);
}

/* Fallback */
.thankyou-fallback {
    max-width: 480px;
    margin: var(--sp-20) auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: var(--sp-4);
}

/* ══════════════════════════════════════════════════════════════
   SALE LANDING PAGE
   ══════════════════════════════════════════════════════════════ */

.lj-sale-page {
    font-family: var(--font-body);
    background: var(--clr-surface);
    color: var(--clr-text);
    overflow-x: hidden;
}

/* Announcement bar */
.lj-sale-announce {
    background: var(--clr-sage);
    color: #fff;
    text-align: center;
    padding: var(--sp-3) var(--gutter);
    position: sticky;
    top: 0;
    z-index: var(--z-sticky);
}

.lj-sale-announce p {
    font-family: var(--font-body);
    font-size: var(--fs-xs);
    font-weight: 700;
    letter-spacing: var(--ls-widest);
    text-transform: uppercase;
}

/* Custom sale header */
.lj-sale-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--sp-5) var(--sp-10);
    border-bottom: 1px solid var(--clr-border);
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    position: sticky;
    top: 44px;
    z-index: calc(var(--z-sticky) - 1);
}

.lj-sale-header-brand {
    display: flex;
    align-items: center;
    gap: var(--sp-3);
    font-family: var(--font-display);
    font-size: var(--fs-xl);
    font-weight: 700;
    color: var(--clr-text);
    letter-spacing: var(--ls-tight);
    text-decoration: none;
}

.lj-sale-header-brand svg {
    width: 28px;
    height: 28px;
    color: var(--clr-blush);
    flex-shrink: 0;
}

.lj-sale-nav {
    display: flex;
    align-items: center;
    gap: var(--sp-8);
}

.lj-sale-nav a {
    font-family: var(--font-body);
    font-size: var(--fs-xs);
    font-weight: 700;
    letter-spacing: var(--ls-widest);
    text-transform: uppercase;
    color: var(--clr-text-muted);
    text-decoration: none;
    transition: color var(--tr-fast);
}

.lj-sale-nav a:hover {
    color: var(--clr-blush);
}

.lj-sale-cart-btn {
    display: flex;
    align-items: center;
    gap: var(--sp-2);
    background: var(--clr-text);
    color: #fff;
    border: none;
    border-radius: var(--r-full);
    padding: var(--sp-2) var(--sp-6);
    font-family: var(--font-body);
    font-size: var(--fs-xs);
    font-weight: 700;
    letter-spacing: var(--ls-widest);
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
    transition: background var(--tr-fast);
}

.lj-sale-cart-btn:hover {
    background: var(--clr-blush);
}

/* Hero */
.lj-sale-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-16);
    align-items: center;
    max-width: var(--container-wide);
    margin: 0 auto;
    padding: var(--sp-16) var(--sp-10) var(--sp-24);
}

.lj-sale-hero-content {
    display: flex;
    flex-direction: column;
    gap: var(--sp-8);
}

.lj-sale-hero-eyebrow {
    font-family: var(--font-body);
    font-size: var(--fs-xs);
    font-weight: 700;
    letter-spacing: var(--ls-widest);
    text-transform: uppercase;
    color: var(--clr-blush);
}

.lj-sale-hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.75rem, 6vw, 4.5rem);
    font-weight: 700;
    color: var(--clr-text);
    letter-spacing: -0.04em;
    line-height: 1.05;
}

.lj-sale-hero-title em {
    font-weight: 300;
    font-style: italic;
}

.lj-sale-hero-desc {
    font-family: var(--font-body);
    font-size: var(--fs-md);
    color: var(--clr-text-muted);
    line-height: var(--lh-normal);
    max-width: 38ch;
}

/* Countdown */
.lj-sale-countdown {
    display: flex;
    align-items: center;
    gap: var(--sp-4);
    padding: var(--sp-5) 0;
    border-top: 1px solid var(--clr-border);
    border-bottom: 1px solid var(--clr-border);
}

.lj-sale-countdown-unit {
    display: flex;
    flex-direction: column;
    gap: var(--sp-1);
}

.lj-sale-countdown-unit__label {
    font-family: var(--font-body);
    font-size: var(--fs-xs);
    font-weight: 700;
    letter-spacing: var(--ls-wider);
    text-transform: uppercase;
    color: var(--clr-text-muted);
}

.lj-sale-countdown-unit__val {
    font-family: var(--font-display);
    font-size: var(--fs-3xl);
    font-weight: 300;
    color: var(--clr-text);
    line-height: 1;
    min-width: 2ch;
}

.lj-sale-countdown-sep {
    font-family: var(--font-display);
    font-size: var(--fs-2xl);
    font-weight: 300;
    color: var(--clr-beige-dark);
    margin-top: var(--sp-4);
}

.lj-sale-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--sp-3);
    background: var(--clr-blush);
    color: #fff;
    padding: var(--sp-4) var(--sp-10);
    border-radius: var(--r-full);
    font-family: var(--font-body);
    font-size: var(--fs-sm);
    font-weight: 700;
    letter-spacing: var(--ls-widest);
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(217, 123, 130, 0.25);
    transition: transform var(--tr-base), filter var(--tr-fast);
    width: fit-content;
}

.lj-sale-cta-btn:hover {
    transform: scale(1.02);
    filter: brightness(0.94);
}

.lj-sale-cta-btn svg {
    width: 16px;
    height: 16px;
}

/* Hero image */
.lj-sale-hero-img-wrap {
    position: relative;
}

.lj-sale-hero-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: var(--r-xl);
    display: block;
    box-shadow: var(--sh-lg);
}

.lj-sale-hero-img-placeholder {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: var(--r-xl);
    background: var(--clr-cream-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: var(--fs-xl);
    font-style: italic;
    color: var(--clr-blush-light);
}

.lj-sale-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 88px;
    height: 88px;
    border-radius: var(--r-full);
    background: var(--clr-blush);
    border: 8px solid var(--clr-surface);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--sh-xl);
    color: #fff;
}

.lj-sale-badge__pct {
    font-family: var(--font-display);
    font-size: var(--fs-xl);
    font-weight: 700;
    line-height: 1;
}

.lj-sale-badge__off {
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: var(--ls-wider);
    text-transform: uppercase;
}

/* Flash sale section */
.lj-sale-products-wrap {
    max-width: var(--container-wide);
    margin: 0 auto;
    padding: 0 var(--sp-10) var(--sp-24);
}

.lj-sale-section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    border-bottom: 1px solid var(--clr-border);
    padding-bottom: var(--sp-6);
    margin-bottom: var(--sp-12);
}

.lj-sale-section-title {
    font-family: var(--font-display);
    font-size: var(--fs-3xl);
    font-weight: 700;
    color: var(--clr-text);
    letter-spacing: var(--ls-tight);
}

.lj-sale-section-sub {
    font-family: var(--font-body);
    font-size: var(--fs-sm);
    color: var(--clr-text-muted);
    margin-top: var(--sp-1);
}

.lj-sale-view-all {
    font-family: var(--font-body);
    font-size: var(--fs-xs);
    font-weight: 700;
    letter-spacing: var(--ls-widest);
    text-transform: uppercase;
    color: var(--clr-text);
    text-decoration: none;
    border-bottom: 2px solid var(--clr-blush);
    padding-bottom: 2px;
}

.lj-sale-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-12);
}

.lj-sale-product-card {
    display: flex;
    flex-direction: column;
    gap: var(--sp-4);
}

.lj-sale-product-card__img-wrap {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    border-radius: var(--r-xl);
    background: var(--clr-cream-dark);
}

.lj-sale-product-card__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform var(--tr-slow);
}

.lj-sale-product-card:hover .lj-sale-product-card__img-wrap img {
    transform: scale(1.05);
}

.lj-sale-product-card__badge {
    position: absolute;
    top: var(--sp-4);
    right: var(--sp-4);
    background: var(--clr-blush);
    color: #fff;
    padding: 3px var(--sp-3);
    border-radius: var(--r-full);
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: var(--ls-widest);
    text-transform: uppercase;
}

.lj-sale-product-card__name {
    font-family: var(--font-display);
    font-size: var(--fs-lg);
    font-weight: 700;
    color: var(--clr-text);
}

.lj-sale-product-card__prices {
    display: flex;
    align-items: center;
    gap: var(--sp-3);
}

.lj-sale-product-card__price {
    font-family: var(--font-body);
    font-size: var(--fs-lg);
    font-weight: 700;
    color: var(--clr-text);
}

.lj-sale-product-card__original {
    font-family: var(--font-body);
    font-size: var(--fs-sm);
    color: var(--clr-text-muted);
    text-decoration: line-through;
    opacity: 0.6;
}

/* Bundle section */
.lj-sale-bundle-wrap {
    max-width: var(--container-wide);
    margin: 0 auto;
    padding: 0 var(--sp-10) var(--sp-24);
}

.lj-sale-bundle {
    background: var(--clr-text);
    color: #fff;
    border-radius: var(--r-xl);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.lj-sale-bundle__content {
    padding: var(--sp-16) var(--sp-14);
    display: flex;
    flex-direction: column;
    gap: var(--sp-6);
    justify-content: center;
}

.lj-sale-bundle__eyebrow {
    font-family: var(--font-body);
    font-size: var(--fs-xs);
    font-weight: 700;
    letter-spacing: var(--ls-widest);
    text-transform: uppercase;
    color: var(--clr-blush);
}

.lj-sale-bundle__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    letter-spacing: var(--ls-tight);
    line-height: var(--lh-tight);
}

.lj-sale-bundle__desc {
    font-family: var(--font-body);
    font-size: var(--fs-md);
    color: rgba(255,255,255,0.6);
    line-height: var(--lh-normal);
    max-width: 38ch;
}

.lj-sale-bundle__btn {
    display: inline-flex;
    align-items: center;
    background: var(--clr-blush);
    color: #fff;
    padding: var(--sp-4) var(--sp-10);
    border-radius: var(--r-full);
    font-family: var(--font-body);
    font-size: var(--fs-xs);
    font-weight: 700;
    letter-spacing: var(--ls-widest);
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: filter var(--tr-fast);
    width: fit-content;
}

.lj-sale-bundle__btn:hover {
    filter: brightness(0.9);
}

.lj-sale-bundle__img {
    background-size: cover;
    background-position: center;
    min-height: 400px;
}

/* Sale footer */
.lj-sale-footer {
    border-top: 1px solid var(--clr-border);
    padding: var(--sp-16) var(--sp-10);
    text-align: center;
}

.lj-sale-footer-brand {
    font-family: var(--font-display);
    font-size: var(--fs-xl);
    font-weight: 700;
    color: var(--clr-text);
    letter-spacing: var(--ls-tight);
    margin-bottom: var(--sp-2);
}

.lj-sale-footer-tag {
    font-family: var(--font-display);
    font-size: var(--fs-base);
    font-style: italic;
    color: var(--clr-text-muted);
    margin-bottom: var(--sp-8);
}

.lj-sale-footer-links {
    display: flex;
    justify-content: center;
    gap: var(--sp-10);
    margin-bottom: var(--sp-8);
}

.lj-sale-footer-links a {
    font-family: var(--font-body);
    font-size: var(--fs-xs);
    font-weight: 700;
    letter-spacing: var(--ls-widest);
    text-transform: uppercase;
    color: var(--clr-text-muted);
    text-decoration: none;
    transition: color var(--tr-fast);
}

.lj-sale-footer-links a:hover {
    color: var(--clr-blush);
}

.lj-sale-footer-heart {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--sp-2);
    color: var(--clr-blush);
    opacity: 0.6;
    font-family: var(--font-body);
    font-size: var(--fs-xs);
    font-weight: 700;
    letter-spacing: var(--ls-widest);
    text-transform: uppercase;
    margin-bottom: var(--sp-5);
}

.lj-sale-footer-heart svg {
    width: 14px;
    height: 14px;
}

.lj-sale-footer-copy {
    font-family: var(--font-body);
    font-size: var(--fs-xs);
    color: var(--clr-text-muted);
    opacity: 0.35;
    letter-spacing: var(--ls-widest);
    text-transform: uppercase;
}

/* Floating cart */
.lj-sale-float-cart {
    position: fixed;
    bottom: var(--sp-10);
    right: var(--sp-10);
    z-index: var(--z-modal);
}

.lj-sale-float-cart a {
    width: 60px;
    height: 60px;
    border-radius: var(--r-full);
    background: var(--clr-text);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--sh-xl);
    text-decoration: none;
    transition: transform var(--tr-base), background var(--tr-fast);
}

.lj-sale-float-cart a:hover {
    transform: scale(1.1);
    background: var(--clr-blush);
}

.lj-sale-float-cart svg {
    width: 22px;
    height: 22px;
}

/* ══════════════════════════════════════════════════════════════
   CONTACT PAGE
   ══════════════════════════════════════════════════════════════ */

.lj-contact-wrap {
    max-width: var(--container);
    margin: 0 auto;
    padding: var(--sp-24) var(--gutter);
}

.lj-contact-grid {
    display: grid;
    grid-template-columns: 7fr 5fr;
    gap: var(--sp-24);
    align-items: start;
}

/* Left: form */
.lj-contact-heading {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    color: var(--clr-text);
    letter-spacing: var(--ls-tight);
    margin-bottom: var(--sp-4);
}

.lj-contact-subheading {
    font-family: var(--font-body);
    font-size: var(--fs-md);
    color: var(--clr-text-muted);
    line-height: var(--lh-normal);
    max-width: 44ch;
    margin-bottom: var(--sp-14);
}

.lj-contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--sp-10);
}

.lj-contact-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-10);
}

.lj-contact-field {
    display: flex;
    flex-direction: column;
    gap: var(--sp-1);
}

.lj-contact-label {
    font-family: var(--font-body);
    font-size: var(--fs-xs);
    font-weight: 700;
    letter-spacing: var(--ls-widest);
    text-transform: uppercase;
    color: var(--clr-text-muted);
}

/* Bottom-border inputs */
.lj-contact-input,
.lj-contact-select,
.lj-contact-textarea {
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--clr-border-dark);
    border-radius: 0;
    padding: var(--sp-3) 0;
    font-family: var(--font-body);
    font-size: var(--fs-base);
    color: var(--clr-text);
    outline: none;
    transition: border-color var(--tr-fast);
    width: 100%;
}

.lj-contact-input::placeholder,
.lj-contact-textarea::placeholder {
    color: var(--clr-text-muted);
    opacity: 0.5;
}

.lj-contact-input:focus,
.lj-contact-select:focus,
.lj-contact-textarea:focus {
    border-bottom-color: var(--clr-sage);
}

.lj-contact-select {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0 center;
    padding-right: var(--sp-6);
}

.lj-contact-textarea {
    min-height: 100px;
    resize: vertical;
    line-height: var(--lh-normal);
}

.lj-contact-submit {
    display: inline-flex;
    align-items: center;
    padding: var(--sp-4) var(--sp-12);
    background: var(--clr-text);
    color: #fff;
    border: none;
    font-family: var(--font-body);
    font-size: var(--fs-sm);
    font-weight: 700;
    letter-spacing: var(--ls-widest);
    text-transform: uppercase;
    cursor: pointer;
    transition: background var(--tr-fast);
    width: fit-content;
}

.lj-contact-submit:hover {
    background: var(--clr-sage);
}

/* Form success/error notices */
.lj-contact-notice {
    padding: var(--sp-4) var(--sp-6);
    border-radius: var(--r-md);
    font-family: var(--font-body);
    font-size: var(--fs-sm);
    font-weight: 500;
}

.lj-contact-notice--success {
    background: rgba(143, 178, 136, 0.12);
    color: var(--clr-sage-dark);
    border: 1px solid var(--clr-sage-light);
}

.lj-contact-notice--error {
    background: rgba(224, 112, 112, 0.1);
    color: var(--clr-error);
    border: 1px solid rgba(224, 112, 112, 0.25);
}

/* Right: info panel */
.lj-contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--sp-12);
    padding-left: var(--sp-12);
    border-left: 1px solid var(--clr-border);
}

.lj-contact-avatar {
    display: flex;
    justify-content: flex-start;
}

.lj-contact-avatar img,
.lj-contact-avatar-placeholder {
    width: 160px;
    height: 160px;
    border-radius: var(--r-full);
    object-fit: cover;
}

.lj-contact-avatar-placeholder {
    background: linear-gradient(135deg, var(--clr-blush-pale), rgba(143, 178, 136, 0.15));
    display: flex;
    align-items: center;
    justify-content: center;
}

.lj-contact-avatar-placeholder svg {
    width: 60px;
    height: 60px;
    color: var(--clr-blush-light);
}

.lj-contact-details {
    display: flex;
    flex-direction: column;
    gap: var(--sp-10);
}

.lj-contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: var(--sp-5);
}

.lj-contact-detail-icon {
    color: var(--clr-brown);
    flex-shrink: 0;
    margin-top: 2px;
}

.lj-contact-detail-icon svg {
    width: 20px;
    height: 20px;
}

.lj-contact-detail-label {
    font-family: var(--font-body);
    font-size: var(--fs-xs);
    font-weight: 700;
    letter-spacing: var(--ls-wider);
    text-transform: uppercase;
    color: var(--clr-text);
    margin-bottom: var(--sp-1);
    display: block;
}

.lj-contact-detail-val {
    font-family: var(--font-body);
    font-size: var(--fs-base);
    color: var(--clr-text-muted);
    font-weight: 500;
}

.lj-contact-detail-note {
    font-family: var(--font-body);
    font-size: var(--fs-xs);
    color: var(--clr-text-muted);
    opacity: 0.6;
    margin-top: var(--sp-1);
    display: block;
}

.lj-contact-social-links {
    display: flex;
    gap: var(--sp-4);
    margin-top: var(--sp-2);
}

.lj-contact-social-links a {
    font-family: var(--font-body);
    font-size: var(--fs-sm);
    color: var(--clr-text-muted);
    text-decoration: none;
    transition: color var(--tr-fast);
}

.lj-contact-social-links a:hover {
    color: var(--clr-sage-dark);
}

.lj-contact-quote {
    padding-top: var(--sp-10);
    border-top: 1px solid var(--clr-border);
}

.lj-contact-quote p {
    font-family: var(--font-display);
    font-style: italic;
    font-size: var(--fs-md);
    color: var(--clr-text-muted);
    line-height: var(--lh-normal);
}

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 900px) {
    .lj-referral-card {
        grid-template-columns: 1fr;
    }
    .lj-referral-img {
        min-height: 280px;
        max-height: 360px;
    }
    .lj-referral-panel {
        padding: var(--sp-10) var(--sp-8);
    }
    .lj-story-grid {
        grid-template-columns: 1fr;
        gap: var(--sp-12);
    }
    .lj-story-img-wrap img {
        height: 400px;
    }
    .lj-story-pillars {
        grid-template-columns: 1fr;
        gap: var(--sp-8);
    }
    .thankyou-layout {
        grid-template-columns: 1fr;
    }
    .lj-sale-hero {
        grid-template-columns: 1fr;
    }
    .lj-sale-hero-img-wrap {
        order: -1;
    }
    .lj-sale-grid {
        grid-template-columns: 1fr 1fr;
    }
    .lj-sale-bundle {
        grid-template-columns: 1fr;
    }
    .lj-sale-bundle__img {
        min-height: 280px;
    }
    .lj-contact-grid {
        grid-template-columns: 1fr;
        gap: var(--sp-14);
    }
    .lj-contact-info {
        border-left: none;
        border-top: 1px solid var(--clr-border);
        padding-left: 0;
        padding-top: var(--sp-12);
    }
    .lj-sale-header {
        top: 44px;
        padding: var(--sp-4) var(--sp-6);
    }
}

@media (max-width: 640px) {
    .lj-terms-cards {
        grid-template-columns: 1fr;
    }
    .lj-404-bg-num {
        font-size: clamp(6rem, 30vw, 9rem);
    }
    .lj-404-links {
        gap: var(--sp-5);
    }
    .lj-maint-notify-form {
        flex-direction: column;
    }
    .lj-maint-nav {
        padding: var(--sp-4) var(--sp-6);
    }
    .lj-maint-footer-inner {
        flex-direction: column;
        text-align: center;
    }
    .lj-referral-share-btn {
        min-width: 100px;
    }
    .lj-story-cta-band {
        padding: var(--sp-12) var(--sp-8);
    }
    .lj-sale-grid {
        grid-template-columns: 1fr;
    }
    .lj-contact-row {
        grid-template-columns: 1fr;
        gap: var(--sp-8);
    }
    .lj-sale-nav {
        display: none;
    }
    .lj-sale-hero {
        padding: var(--sp-10) var(--sp-6) var(--sp-16);
    }
    .lj-sale-products-wrap,
    .lj-sale-bundle-wrap {
        padding-left: var(--sp-6);
        padding-right: var(--sp-6);
    }
    .thankyou-lovingly__imgs {
        gap: var(--sp-4);
    }
}
