/* =============================================================================
   SOUL SEARCH COUNSELING — Design System
   Tone: Elegant & Mystical + Warm
   ============================================================================= */

/* --- CSS Custom Properties --- */
:root {
    /* Colors — derived from brand (deep navy, gold, mystic purples) */
    --color-bg: #0d0f1a;
    --color-bg-warm: #111327;
    --color-bg-card: #161833;
    --color-bg-card-hover: #1c1f42;
    --color-surface: #1a1d3a;
    --color-border: rgba(195, 165, 100, 0.15);
    --color-border-light: rgba(195, 165, 100, 0.08);

    --color-gold: #c3a564;
    --color-gold-light: #d4b97a;
    --color-gold-dim: rgba(195, 165, 100, 0.4);

    --color-text: #e8e4dd;
    --color-text-muted: #9a9aad;
    --color-text-dim: #6b6b80;

    --color-accent-purple: #6b5b8a;
    --color-accent-lavender: #8a7aab;

    /* Typography */
    --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --fs-xs: 0.75rem;
    --fs-sm: 0.875rem;
    --fs-base: 1rem;
    --fs-md: 1.125rem;
    --fs-lg: 1.25rem;
    --fs-xl: 1.5rem;
    --fs-2xl: 2rem;
    --fs-3xl: 2.5rem;
    --fs-4xl: 3.25rem;
    --fs-5xl: 4rem;

    --fw-light: 300;
    --fw-regular: 400;
    --fw-medium: 500;
    --fw-semibold: 600;

    --lh-tight: 1.2;
    --lh-snug: 1.35;
    --lh-normal: 1.6;
    --lh-relaxed: 1.75;

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    --space-5xl: 8rem;

    /* Layout */
    --max-width: 1200px;
    --max-width-narrow: 800px;

    /* Radius */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    /* Transitions */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --duration-fast: 0.2s;
    --duration-normal: 0.35s;
    --duration-slow: 0.6s;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    font-size: var(--fs-base);
    font-weight: var(--fw-regular);
    line-height: var(--lh-normal);
    color: var(--color-text);
    background-color: var(--color-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

a {
    color: var(--color-gold);
    text-decoration: none;
    transition: color var(--duration-fast) var(--ease-out);
}

a:hover {
    color: var(--color-gold-light);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

/* --- Section Common --- */
.section-label {
    font-family: var(--font-body);
    font-size: var(--fs-xs);
    font-weight: var(--fw-semibold);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: var(--space-md);
}

.section-title {
    font-family: var(--font-display);
    font-size: var(--fs-3xl);
    font-weight: var(--fw-400);
    line-height: var(--lh-tight);
    color: var(--color-text);
    margin-bottom: var(--space-lg);
}

.section-subtitle {
    font-size: var(--fs-md);
    color: var(--color-text-muted);
    max-width: 560px;
    line-height: var(--lh-normal);
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-4xl);
}

.section-header .section-subtitle {
    margin-left: auto;
    margin-right: auto;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 0.875rem 2rem;
    font-family: var(--font-body);
    font-size: var(--fs-sm);
    font-weight: var(--fw-medium);
    letter-spacing: 0.04em;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--duration-normal) var(--ease-out);
    text-decoration: none;
    white-space: nowrap;
}

.btn--primary {
    background: linear-gradient(135deg, var(--color-gold), #b89555);
    color: var(--color-bg);
}

.btn--primary:hover {
    background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold));
    color: var(--color-bg);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(195, 165, 100, 0.3);
}

.btn--outline {
    background: transparent;
    color: var(--color-gold);
    border: 1px solid var(--color-gold-dim);
}

.btn--outline:hover {
    background: rgba(195, 165, 100, 0.08);
    border-color: var(--color-gold);
    color: var(--color-gold-light);
}

.btn--full {
    width: 100%;
}

/* --- Navigation --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-lg) 0;
    transition: all var(--duration-normal) var(--ease-out);
}

.navbar.scrolled {
    background: rgba(13, 15, 26, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: var(--space-md) 0;
    border-bottom: 1px solid var(--color-border-light);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-display);
    font-size: var(--fs-xl);
    font-weight: var(--fw-400);
    color: var(--color-text);
    text-decoration: none;
}

.nav-logo:hover {
    color: var(--color-gold);
}

.logo-icon {
    font-size: var(--fs-lg);
    color: var(--color-gold);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--space-2xl);
}

.nav-link {
    font-size: var(--fs-sm);
    font-weight: var(--fw-regular);
    color: var(--color-text-muted);
    text-decoration: none;
    transition: color var(--duration-fast) var(--ease-out);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-gold);
    transition: width var(--duration-normal) var(--ease-out);
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-text);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link--cta {
    color: var(--color-gold);
    font-weight: var(--fw-medium);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-sm);
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--color-text);
    transition: all var(--duration-normal) var(--ease-out);
    transform-origin: center;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Hero --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 30%, #1a1540 0%, var(--color-bg) 70%);
}

.stars, .stars2, .stars3 {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(1px 1px at 10% 20%, rgba(255,255,255,0.6), transparent),
        radial-gradient(1px 1px at 30% 50%, rgba(255,255,255,0.4), transparent),
        radial-gradient(1px 1px at 50% 10%, rgba(255,255,255,0.5), transparent),
        radial-gradient(1px 1px at 70% 60%, rgba(255,255,255,0.3), transparent),
        radial-gradient(1px 1px at 90% 30%, rgba(255,255,255,0.6), transparent),
        radial-gradient(1.5px 1.5px at 15% 80%, rgba(195,165,100,0.5), transparent),
        radial-gradient(1px 1px at 45% 40%, rgba(255,255,255,0.4), transparent),
        radial-gradient(1px 1px at 80% 15%, rgba(255,255,255,0.5), transparent),
        radial-gradient(1px 1px at 25% 70%, rgba(255,255,255,0.3), transparent),
        radial-gradient(1px 1px at 65% 85%, rgba(255,255,255,0.4), transparent),
        radial-gradient(1px 1px at 5% 45%, rgba(255,255,255,0.3), transparent),
        radial-gradient(1.5px 1.5px at 55% 25%, rgba(195,165,100,0.4), transparent),
        radial-gradient(1px 1px at 85% 55%, rgba(255,255,255,0.5), transparent),
        radial-gradient(1px 1px at 35% 95%, rgba(255,255,255,0.3), transparent),
        radial-gradient(1px 1px at 95% 75%, rgba(255,255,255,0.4), transparent);
    background-size: 400px 400px;
}

.stars2 {
    background-size: 300px 300px;
    animation: twinkle 8s ease-in-out infinite alternate;
}

.stars3 {
    background-size: 500px 500px;
    animation: twinkle 12s ease-in-out infinite alternate-reverse;
}

@keyframes twinkle {
    0% { opacity: 0.5; }
    100% { opacity: 1; }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 0 var(--space-xl);
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: var(--fs-xs);
    font-weight: var(--fw-semibold);
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: var(--space-xl);
    opacity: 0;
    animation: fadeUp 0.8s var(--ease-out) 0.2s forwards;
}

.hero-title {
    font-family: var(--font-display);
    font-size: var(--fs-5xl);
    font-weight: var(--fw-300);
    line-height: var(--lh-tight);
    color: var(--color-text);
    margin-bottom: var(--space-xl);
    opacity: 0;
    animation: fadeUp 0.8s var(--ease-out) 0.4s forwards;
}

.hero-title--accent {
    color: var(--color-gold);
    font-weight: var(--fw-400);
}

.hero-text {
    font-size: var(--fs-md);
    color: var(--color-text-muted);
    line-height: var(--lh-relaxed);
    margin-bottom: var(--space-2xl);
    opacity: 0;
    animation: fadeUp 0.8s var(--ease-out) 0.6s forwards;
}

.hero-actions {
    display: flex;
    gap: var(--space-lg);
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.8s var(--ease-out) 0.8s forwards;
}

.hero-scroll {
    position: absolute;
    bottom: var(--space-2xl);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    opacity: 0;
    animation: fadeUp 0.8s var(--ease-out) 1s forwards;
}

.hero-scroll span {
    font-size: var(--fs-xs);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-dim);
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--color-gold-dim), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.4; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.2); }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- About --- */
.about {
    padding: var(--space-5xl) 0;
    background: var(--color-bg-warm);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-4xl);
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/5;
}

.about-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-surface), var(--color-bg-card));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
}

.about-icon {
    font-size: 4rem;
}

.about-image-placeholder p {
    font-family: var(--font-display);
    font-size: var(--fs-xl);
    color: var(--color-text-muted);
}

.about-decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    border: 1px solid var(--color-gold-dim);
    border-radius: var(--radius-lg);
    z-index: -1;
}

.about-content {
    padding: var(--space-xl) 0;
}

.about-text {
    font-size: var(--fs-base);
    color: var(--color-text-muted);
    line-height: var(--lh-relaxed);
    margin-bottom: var(--space-lg);
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-top: var(--space-2xl);
}

.value {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    font-size: var(--fs-sm);
    color: var(--color-text);
}

.value-icon {
    color: var(--color-gold);
    font-size: var(--fs-xs);
}

/* --- Services --- */
.services {
    padding: var(--space-5xl) 0;
    background: var(--color-bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.service-card {
    position: relative;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    transition: all var(--duration-normal) var(--ease-out);
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-gold-dim), transparent);
    opacity: 0;
    transition: opacity var(--duration-normal) var(--ease-out);
}

.service-card:hover {
    background: var(--color-bg-card-hover);
    border-color: var(--color-border);
    transform: translateY(-4px);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card--featured {
    border-color: var(--color-gold-dim);
    background: linear-gradient(135deg, rgba(195,165,100,0.05), var(--color-bg-card));
}

.service-badge {
    position: absolute;
    top: var(--space-lg);
    right: var(--space-lg);
    font-size: var(--fs-xs);
    font-weight: var(--fw-semibold);
    letter-spacing: 0.05em;
    color: var(--color-gold);
    background: rgba(195, 165, 100, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-sm);
}

.service-icon {
    width: 56px;
    height: 56px;
    color: var(--color-gold);
    margin-bottom: var(--space-xl);
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

.service-title {
    font-family: var(--font-display);
    font-size: var(--fs-xl);
    font-weight: var(--fw-400);
    margin-bottom: var(--space-md);
}

.service-text {
    font-size: var(--fs-sm);
    color: var(--color-text-muted);
    line-height: var(--lh-normal);
    margin-bottom: var(--space-xl);
}

.service-link {
    font-size: var(--fs-sm);
    font-weight: var(--fw-medium);
    color: var(--color-gold);
    transition: all var(--duration-fast) var(--ease-out);
}

.service-link:hover {
    letter-spacing: 0.02em;
}

/* --- Tarot --- */
.tarot {
    padding: var(--space-5xl) 0;
    background: var(--color-bg-warm);
}

.tarot-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}

.tarot-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    display: flex;
    flex-direction: column;
    transition: all var(--duration-normal) var(--ease-out);
}

.tarot-card:hover {
    border-color: var(--color-border);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.tarot-card--wide {
    grid-column: span 2;
}

.tarot-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-lg);
}

.tarot-type {
    font-size: var(--fs-xs);
    font-weight: var(--fw-semibold);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-gold);
}

.tarot-price {
    font-family: var(--font-display);
    font-size: var(--fs-xl);
    font-weight: var(--fw-400);
    color: var(--color-text);
}

.tarot-name {
    font-family: var(--font-display);
    font-size: var(--fs-lg);
    font-weight: var(--fw-400);
    margin-bottom: var(--space-sm);
}

.tarot-desc {
    font-size: var(--fs-sm);
    color: var(--color-text-muted);
    line-height: var(--lh-normal);
    margin-bottom: var(--space-lg);
    flex-grow: 1;
}

.tarot-duration {
    font-size: var(--fs-xs);
    color: var(--color-text-dim);
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid var(--color-border-light);
}

/* --- Courses --- */
.courses {
    padding: var(--space-5xl) 0;
    background: var(--color-bg);
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
}

.course-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    position: relative;
    transition: all var(--duration-normal) var(--ease-out);
}

.course-card:hover {
    border-color: var(--color-border);
    transform: translateY(-2px);
}

.course-badge {
    display: inline-block;
    font-size: var(--fs-xs);
    font-weight: var(--fw-semibold);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-gold);
    background: rgba(195, 165, 100, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-sm);
    margin-bottom: var(--space-lg);
}

.course-title {
    font-family: var(--font-display);
    font-size: var(--fs-xl);
    font-weight: var(--fw-400);
    margin-bottom: var(--space-md);
}

.course-text {
    font-size: var(--fs-sm);
    color: var(--color-text-muted);
    line-height: var(--lh-normal);
    margin-bottom: var(--space-xl);
}

.course-price {
    font-family: var(--font-display);
    font-size: var(--fs-2xl);
    color: var(--color-gold);
    margin-bottom: var(--space-lg);
}

/* --- Testimonials --- */
.testimonials {
    padding: var(--space-5xl) 0;
    background: var(--color-bg-warm);
}

.testimonials-slider {
    max-width: 700px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform var(--duration-slow) var(--ease-out);
}

.testimonial-card {
    min-width: 100%;
    padding: var(--space-3xl);
    background: var(--color-bg-card);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-lg);
    text-align: center;
}

.testimonial-stars {
    color: var(--color-gold);
    font-size: var(--fs-lg);
    margin-bottom: var(--space-xl);
    letter-spacing: 4px;
}

.testimonial-text {
    font-size: var(--fs-md);
    color: var(--color-text-muted);
    line-height: var(--lh-relaxed);
    font-style: italic;
    margin-bottom: var(--space-lg);
}

.testimonial-text:last-of-type {
    margin-bottom: var(--space-xl);
}

.testimonial-author {
    font-family: var(--font-display);
    font-size: var(--fs-lg);
    color: var(--color-gold);
}

.testimonial-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xl);
    margin-top: var(--space-2xl);
}

.testimonial-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--color-border);
    background: transparent;
    color: var(--color-text-muted);
    font-size: var(--fs-md);
    cursor: pointer;
    transition: all var(--duration-fast) var(--ease-out);
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-btn:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
}

.testimonial-dots {
    display: flex;
    gap: var(--space-sm);
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-border);
    transition: all var(--duration-fast) var(--ease-out);
    cursor: pointer;
}

.dot.active {
    background: var(--color-gold);
    transform: scale(1.2);
}

/* --- Gift Card --- */
.giftcard {
    padding: var(--space-5xl) 0;
    background: var(--color-bg);
}

.giftcard-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
    background: linear-gradient(135deg, rgba(195,165,100,0.03), var(--color-bg-card));
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: var(--space-4xl);
}

.giftcard-desc {
    font-size: var(--fs-md);
    color: var(--color-text-muted);
    line-height: var(--lh-normal);
    margin-bottom: var(--space-xl);
}

.giftcard-prices {
    display: flex;
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
}

.giftcard-price {
    font-family: var(--font-display);
    font-size: var(--fs-2xl);
    color: var(--color-gold);
    padding: var(--space-sm) var(--space-lg);
    border: 1px solid var(--color-gold-dim);
    border-radius: var(--radius-sm);
}

.giftcard-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.giftcard-card {
    width: 280px;
    height: 170px;
    background: linear-gradient(135deg, var(--color-surface), #1e1640);
    border: 1px solid var(--color-gold-dim);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    transform: rotate(-5deg);
}

.giftcard-icon {
    font-size: 2rem;
    color: var(--color-gold);
}

.giftcard-label {
    font-family: var(--font-display);
    font-size: var(--fs-xl);
    color: var(--color-text);
}

.giftcard-sublabel {
    font-size: var(--fs-xs);
    color: var(--color-text-muted);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

/* --- Contact --- */
.contact {
    padding: var(--space-5xl) 0;
    background: var(--color-bg-warm);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
}

.contact-text {
    font-size: var(--fs-md);
    color: var(--color-text-muted);
    line-height: var(--lh-normal);
    margin-bottom: var(--space-2xl);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.contact-item {
    display: flex;
    gap: var(--space-lg);
    align-items: flex-start;
}

.contact-icon {
    font-size: var(--fs-xl);
    margin-top: 2px;
}

.contact-label {
    font-size: var(--fs-xs);
    font-weight: var(--fw-semibold);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-dim);
    margin-bottom: var(--space-xs);
}

.contact-value {
    font-size: var(--fs-base);
    color: var(--color-text);
    line-height: var(--lh-normal);
}

a.contact-value:hover {
    color: var(--color-gold);
}

.contact-form {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
}

.form-group {
    margin-bottom: var(--space-lg);
}

.form-label {
    display: block;
    font-size: var(--fs-xs);
    font-weight: var(--fw-semibold);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-text-dim);
    margin-bottom: var(--space-sm);
}

.form-input {
    width: 100%;
    padding: 0.875rem 1rem;
    font-family: var(--font-body);
    font-size: var(--fs-base);
    color: var(--color-text);
    background: var(--color-surface);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-sm);
    outline: none;
    transition: all var(--duration-fast) var(--ease-out);
}

.form-input:focus {
    border-color: var(--color-gold-dim);
    box-shadow: 0 0 0 3px rgba(195, 165, 100, 0.08);
}

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

.form-note {
    font-size: var(--fs-xs);
    color: var(--color-text-dim);
    margin-top: var(--space-lg);
    text-align: center;
}

/* --- Footer --- */
.footer {
    padding: var(--space-4xl) 0 var(--space-2xl);
    background: var(--color-bg);
    border-top: 1px solid var(--color-border-light);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: var(--space-3xl);
    margin-bottom: var(--space-3xl);
}

.footer-logo {
    font-family: var(--font-display);
    font-size: var(--fs-xl);
    color: var(--color-text);
    display: block;
    margin-bottom: var(--space-md);
}

.footer-tagline {
    font-size: var(--fs-sm);
    color: var(--color-text-muted);
    margin-bottom: var(--space-sm);
}

.footer-address {
    font-size: var(--fs-sm);
    color: var(--color-text-dim);
}

.footer-heading {
    font-family: var(--font-body);
    font-size: var(--fs-xs);
    font-weight: var(--fw-semibold);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: var(--space-lg);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-links a {
    font-size: var(--fs-sm);
    color: var(--color-text-muted);
    transition: color var(--duration-fast) var(--ease-out);
}

.footer-links a:hover {
    color: var(--color-text);
}

.footer-contact p {
    font-size: var(--fs-sm);
    color: var(--color-text-muted);
    margin-bottom: var(--space-sm);
}

.footer-contact a {
    color: var(--color-text-muted);
}

.footer-contact a:hover {
    color: var(--color-gold);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-2xl);
    border-top: 1px solid var(--color-border-light);
    font-size: var(--fs-xs);
    color: var(--color-text-dim);
}

/* --- Scroll Reveal --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

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

/* --- Mobile Responsive --- */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tarot-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tarot-card--wide {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    :root {
        --fs-5xl: 2.75rem;
        --fs-4xl: 2.25rem;
        --fs-3xl: 1.75rem;
        --fs-2xl: 1.5rem;
    }

    .container {
        padding: 0 var(--space-lg);
    }

    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--color-bg-warm);
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        padding: var(--space-3xl);
        gap: var(--space-xl);
        transition: right var(--duration-normal) var(--ease-out);
        border-left: 1px solid var(--color-border-light);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-link {
        font-size: var(--fs-lg);
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .about-image {
        max-width: 300px;
        margin: 0 auto;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .tarot-grid {
        grid-template-columns: 1fr;
    }

    .tarot-card--wide {
        grid-column: span 1;
    }

    .courses-grid {
        grid-template-columns: 1fr;
    }

    .giftcard-content {
        grid-template-columns: 1fr;
        padding: var(--space-2xl);
        text-align: center;
    }

    .giftcard-prices {
        justify-content: center;
    }

    .giftcard-visual {
        display: none;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-2xl);
    }

    .footer-bottom {
        flex-direction: column;
        gap: var(--space-sm);
        text-align: center;
    }
}

@media (max-width: 480px) {
    :root {
        --fs-5xl: 2.25rem;
        --fs-4xl: 1.875rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .hero-actions .btn {
        width: 100%;
        max-width: 280px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .giftcard-prices {
        flex-direction: column;
        align-items: center;
    }
}
