:root {
    --bg-deep: #FDFAF6;
    --bg-section: #FFFFFF;
    --bg-card: #FFFFFF;
    --bg-card-hover: #FBF9F6;
    --border-card: #E8E2D9;
    --border-subtle: #F0EBE4;
    --gold: #C4955A;
    --gold-soft: #D4A97A;
    --gold-dim: #CBBA9E;
    --gold-glow: rgba(196, 149, 90, 0.12);
    --gold-glow-strong: rgba(196, 149, 90, 0.22);
    --text-light: #2C2A28;
    --text-muted: #6B675D;
    --text-dim: #9B968B;
    --radius-lg: 20px;
    --radius-md: 14px;
    --radius-sm: 10px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    background: var(--bg-deep);
    font-family: 'Crimson Pro', serif;
    color: var(--text-light);
    overflow-x: hidden;
    line-height: 1.6;
    min-height: 100vh;
}

h1, h2, h3, h4, .section-title, .hero-title, .form-title {
    font-family: 'Playfair Display', serif;
}

/* ===== UTILITIES ===== */
.container {
    max-width: 1060px;
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 40px);
}
.section {
    padding: clamp(60px, 10vw, 100px) 0;
}
.bg-subtle {
    background: var(--bg-section);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}
.text-center { text-align: center; }
.justify-center { justify-content: center; }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }

/* Section headers */
.section-header {
    text-align: center;
    margin-bottom: clamp(36px, 6vw, 60px);
}
.section-label {
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold);
    margin-bottom: 14px;
}
.section-title {
    font-size: clamp(28px, 5vw, 42px);
    font-weight: 500;
    color: var(--text-light);
    margin-bottom: 12px;
    line-height: 1.2;
}
.section-title em {
    color: var(--gold);
    font-style: italic;
}
.section-subtitle {
    font-size: clamp(16px, 2.5vw, 18px);
    color: var(--text-muted);
    font-style: italic;
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.6;
}
.section-divider {
    width: 50px;
    height: 2px;
    margin: 20px auto 0;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    box-shadow: 0 0 12px var(--gold-glow-strong);
}

/* ===== NAV ===== */
.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(253, 250, 246, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-subtle);
    transition: box-shadow 0.3s;
}
.site-nav.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
}
.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
}
.nav-logo {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--text-light);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}
.nav-logo span { color: var(--gold); }
.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
}
.nav-links a {
    font-size: 14px;
    color: var(--text-muted);
    text-decoration: none;
    letter-spacing: 0.3px;
    transition: color 0.2s;
    font-weight: 500;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
    font-size: 13px !important;
    color: var(--bg-deep) !important;
    background: var(--gold);
    padding: 8px 18px;
    border-radius: 24px;
    transition: all 0.3s !important;
}
.nav-cta:hover {
    background: var(--text-light);
    transform: translateY(-1px);
}

/* Mobile menu */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 36px;
    height: 36px;
    position: relative;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
}
.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-light);
    border-radius: 2px;
    transition: all 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== HERO SECTION ===== */
.hero-section {
    min-height: 85dvh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px 32px;
    position: relative;
    overflow: hidden;
}
.hero-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
    pointer-events: none;
}
.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, var(--bg-deep), transparent);
    pointer-events: none;
}

.hero-content {
    margin-bottom: 36px;
    position: relative;
    z-index: 1;
}
.hero-title {
    font-size: clamp(3rem, 8vw, 5rem);
    color: var(--gold);
    margin-bottom: 0.5rem;
    font-weight: 400;
    line-height: 1.1;
}
.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: var(--text-muted);
    font-style: italic;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
}
.hero-dates {
    margin-top: 16px;
    font-size: 14px;
    letter-spacing: 2px;
    color: var(--text-dim);
    font-weight: 500;
}

.hero-image-wrapper {
    position: relative;
    width: clamp(200px, 40vw, 300px);
    height: clamp(200px, 40vw, 300px);
    margin: 0 auto;
    z-index: 1;
}
.hero-image-inner {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    padding: 12px;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.06),
        0 0 60px var(--gold-glow),
        0 0 120px rgba(196, 149, 90, 0.06);
    position: relative;
    overflow: hidden;
}
.hero-image-inner::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--gold-glow-strong), transparent 70%);
    pointer-events: none;
    z-index: 1;
}
#hero-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    position: relative;
    z-index: 2;
}

.hero-scroll-hint {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: gentleBounce 2.5s ease-in-out infinite;
}
.hero-scroll-hint i {
    font-size: 20px;
    color: var(--gold-dim);
}

/* ===== TEXT SECTION ===== */
.story-content {
    max-width: 680px;
    margin: 0 auto;
}
.story-text {
    font-size: clamp(16px, 2.2vw, 18px);
    color: var(--text-muted);
    line-height: 1.85;
    margin-bottom: 20px;
}
.story-text strong { color: var(--text-light); }
.story-text em { color: var(--gold-soft); font-style: italic; }

.story-values {
    display: grid;
    grid-template-columns: repeat(4, auto);
    gap: 20px 32px;
    justify-content: center;
}
.story-value {
    display: flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
}
.story-value-icon {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-sm);
    background: var(--gold-glow);
    border: 1px solid rgba(196, 149, 90, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--gold);
    flex-shrink: 0;
}
.story-value-text {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-light);
}

/* ===== FORM SECTION ===== */
.contact {
    position: relative;
    overflow: hidden;
}
.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 500px;
    background: radial-gradient(circle, var(--gold-glow), transparent 70%);
    pointer-events: none;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: start;
    position: relative;
    z-index: 1;
}
.contact-info-title {
    font-size: clamp(24px, 4vw, 32px);
    color: var(--text-light);
    margin-bottom: 16px;
}
.contact-info-title em { color: var(--gold); }
.contact-info-text {
    font-size: 17px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 36px;
}
.contact-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
}
.contact-item-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: var(--gold-glow);
    border: 1px solid rgba(196, 149, 90, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--gold);
}
.contact-item-label {
    font-size: 12px;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2px;
}
.contact-item-value {
    font-size: 16px;
    color: var(--text-light);
    font-weight: 500;
}

/* Form Card */
.contact-form {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: 24px;
    padding: clamp(24px, 4vw, 40px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03), 0 0 40px var(--gold-glow);
    position: relative;
    overflow: hidden;
}
.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-glow-strong), transparent);
}
.form-title {
    font-size: 24px;
    color: var(--text-light);
    margin-bottom: 8px;
}
.form-subtitle {
    font-size: 14px;
    color: var(--text-dim);
    margin-bottom: 28px;
    font-style: italic;
}
.form-group { margin-bottom: 18px; }
.form-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 6px;
}
.form-input, .form-textarea {
    width: 100%;
    padding: 13px 16px;
    border: 1px solid var(--border-card);
    border-radius: 12px;
    font-size: 16px;
    font-family: 'Crimson Pro', serif;
    background: var(--bg-deep);
    color: var(--text-light);
    transition: all 0.3s;
}
.form-input::placeholder, .form-textarea::placeholder {
    color: var(--text-dim);
    font-style: italic;
}
.form-input:focus, .form-textarea:focus {
    outline: none;
    border-color: var(--gold-soft);
    box-shadow: 0 0 0 3px var(--gold-glow);
}
.form-textarea {
    min-height: 120px;
    resize: vertical;
}

/* Dropzone */
.dropzone {
    position: relative;
    border: 2px dashed var(--border-card);
    border-radius: var(--radius-md);
    padding: 28px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    background: var(--bg-deep);
}
.dropzone:hover, .dropzone.dragover {
    border-color: var(--gold-soft);
    background: var(--gold-glow);
}
.dropzone input[type="file"] {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}
.dropzone-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-dim);
    font-size: 14px;
    pointer-events: none;
}
.dropzone-content i {
    font-size: 24px;
    color: var(--gold-dim);
}
.dropzone-content strong {
    color: var(--gold);
}
.dropzone-preview {
    position: relative;
    display: inline-block;
}
.dropzone-preview img {
    max-height: 140px;
    max-width: 100%;
    border-radius: var(--radius-sm);
    object-fit: cover;
}
.dropzone-remove {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: none;
    background: var(--text-light);
    color: #fff;
    font-size: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}
.dropzone-remove:hover {
    background: #dc2626;
}

/* Buttons */
.btn-outline {
    font-size: 14px;
    color: var(--gold);
    background: transparent;
    text-decoration: none;
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 24px;
    border: 1px solid rgba(196, 149, 90, 0.35);
    transition: all 0.3s;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.btn-outline:hover {
    border-color: var(--gold);
    background: var(--gold-glow);
}
.btn-gold {
    width: 100%;
    padding: 15px;
    background: var(--gold);
    color: #FFFFFF;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Crimson Pro', serif;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 8px;
    box-shadow: 0 4px 20px rgba(196, 149, 90, 0.25);
}
.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(196, 149, 90, 0.35);
    background: #b3864e;
}

#form-message.success { color: var(--gold); font-weight: 500; }
#form-message.error { color: #dc2626; font-weight: 500; }
.hidden { display: none; }

/* ===== COMMENT CARDS ===== */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}
.comment-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}
.comment-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-glow-strong), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}
.comment-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(196, 149, 90, 0.25);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.05), 0 0 30px var(--gold-glow);
}
.comment-card:hover::before { opacity: 1; }

.comment-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}
.comment-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--gold-glow);
    border: 1px solid rgba(196, 149, 90, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    font-family: 'Playfair Display', serif;
    color: var(--gold);
    flex-shrink: 0;
}
.comment-author {
    font-family: 'Playfair Display', serif;
    font-size: 17px;
    color: var(--text-light);
    font-weight: 500;
}
.comment-date {
    font-size: 12px;
    color: var(--text-dim);
    margin-top: 2px;
}
.comment-body {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
    flex: 1;
}
.comment-image-wrapper {
    margin: 0 -24px 20px;
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}
.comment-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}
.comment-footer {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-top: 14px;
    border-top: 1px solid var(--border-subtle);
    margin-top: auto;
}
.like-btn {
    background: none;
    border: none;
    color: var(--text-dim);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-family: 'Crimson Pro', serif;
    transition: all 0.2s;
    padding: 4px 8px;
    border-radius: 8px;
}
.like-btn i { font-size: 16px; transition: transform 0.2s; }
.like-btn:hover { color: var(--gold); background: var(--gold-glow); }
.like-btn.liked { color: var(--gold); }
.like-btn.liked i { animation: heartBeat 0.5s ease; color: #e05555; }

/* Empty state for comments */
.empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: var(--text-dim);
    font-style: italic;
    font-size: 16px;
}

/* ===== ALBUM CAROUSEL ===== */
.album {
    background: var(--bg-section);
    border-bottom: 1px solid var(--border-subtle);
}
.carousel {
    position: relative;
    max-width: 720px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--bg-deep);
    border: 1px solid var(--border-card);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04), 0 0 40px var(--gold-glow);
    aspect-ratio: 4 / 3;
}
.carousel-track {
    display: flex;
    height: 100%;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}
.carousel-slide {
    flex: 0 0 100%;
    height: 100%;
}
.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: var(--text-light);
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 2;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}
.carousel-btn:hover {
    background: #fff;
    border-color: var(--gold-soft);
    color: var(--gold);
    transform: translateY(-50%) scale(1.05);
}
.carousel-prev { left: 12px; }
.carousel-next { right: 12px; }
.carousel-dots {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 2;
}
.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s;
}
.carousel-dot.active {
    background: #fff;
    border-color: #fff;
    transform: scale(1.2);
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

/* Video showcase */
.video-showcase {
    max-width: 360px;
    margin: 48px auto 0;
    text-align: center;
}
.video-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-card);
    background: var(--bg-deep);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04), 0 0 40px var(--gold-glow);
}
.video-wrapper video {
    width: 100%;
    display: block;
    border-radius: var(--radius-lg);
}
.video-caption {
    margin-top: 14px;
    font-size: 14px;
    color: var(--text-dim);
    font-style: italic;
}
.video-caption i {
    color: var(--gold-dim);
    margin-right: 6px;
}

@media (max-width: 640px) {
    .video-showcase {
        max-width: 280px;
        margin-top: 36px;
    }
}

@media (max-width: 640px) {
    .carousel-btn {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
    .carousel-prev { left: 8px; }
    .carousel-next { right: 8px; }
}

/* ===== REASSURANCE TICKER ===== */
.reassurance {
    background: var(--bg-section);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    padding: 18px 0;
    overflow: hidden;
    position: relative;
}
.reassurance::before,
.reassurance::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 60px;
    z-index: 2;
    pointer-events: none;
}
.reassurance::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-section), transparent);
}
.reassurance::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-section), transparent);
}
.ticker-track {
    display: flex;
    width: max-content;
    animation: ticker 18s linear infinite;
}
.reassurance-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 32px;
    white-space: nowrap;
    flex-shrink: 0;
}
.reassurance-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--gold-dim);
    flex-shrink: 0;
}
.reassurance-icon {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    background: var(--gold-glow);
    border: 1px solid rgba(196, 149, 90, 0.15);
    color: var(--gold);
    flex-shrink: 0;
}
.reassurance-text {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 500;
    line-height: 1.3;
}
.reassurance-text small {
    display: block;
    font-size: 12px;
    color: var(--text-dim);
    font-weight: 400;
    margin-top: 1px;
}
@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===== FOOTER ===== */
.footer {
    padding: clamp(40px, 6vw, 70px) 0 30px;
    background: var(--bg-section);
    border-top: 1px solid var(--border-subtle);
}
.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}
.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.footer-logo i { color: var(--gold); font-size: 18px; }
.footer-desc {
    font-size: 14px;
    color: var(--text-dim);
    line-height: 1.7;
    max-width: 280px;
}
.footer-col h4 {
    font-family: 'Crimson Pro', serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 16px;
}
.footer-links {
    list-style: none;
}
.footer-links li { margin-bottom: 8px; }
.footer-links a {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }

.footer-quote {
    text-align: center;
    padding: 32px 0 28px;
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    margin-bottom: 24px;
}
.footer-quote blockquote {
    font-family: 'Playfair Display', serif;
    font-size: clamp(18px, 3vw, 22px);
    color: var(--text-light);
    font-style: italic;
    max-width: 500px;
    margin: 0 auto 6px;
    line-height: 1.4;
}
.footer-quote cite {
    font-size: 13px;
    color: var(--gold-soft);
    font-style: normal;
}

.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
}
.footer-copyright {
    font-size: 13px;
    color: var(--text-dim);
}

/* ===== ANIMATIONS ===== */
.fade-in {
    opacity: 0;
    animation: fadeIn 0.8s ease forwards;
}
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }

@keyframes fadeIn { to { opacity: 1; } }
@keyframes heartBeat {
    0% { transform: scale(1); }
    50% { transform: scale(1.3); }
    100% { transform: scale(1); }
}
@keyframes gentleBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ===== ADMIN STYLES ===== */
.admin-header {
    background: var(--bg-card);
    border-bottom: 1px solid var(--border-subtle);
    padding: 20px 0;
    margin-bottom: 40px;
}
.admin-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.admin-title {
    font-size: 24px;
    color: var(--text-light);
    margin: 0;
}
.pending-card {
    border-color: rgba(196, 149, 90, 0.35);
    box-shadow: 0 8px 25px rgba(196, 149, 90, 0.06);
}
.approved-card {
    opacity: 0.85;
}

/* Login screen */
.login-screen {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.login-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: 24px;
    padding: 48px 40px;
    max-width: 400px;
    width: 100%;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04), 0 0 40px var(--gold-glow);
}
.login-card h1 {
    font-size: 28px;
    color: var(--text-light);
    margin-bottom: 8px;
}
.login-card p {
    font-size: 14px;
    color: var(--text-dim);
    margin-bottom: 28px;
    font-style: italic;
}
.login-error {
    color: #dc2626;
    font-size: 14px;
    margin-top: 12px;
    display: none;
}

/* Admin tabs */
.admin-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 32px;
    justify-content: center;
}
.admin-tab {
    padding: 10px 24px;
    border-radius: 24px;
    border: 1px solid var(--border-card);
    background: transparent;
    color: var(--text-muted);
    font-family: 'Crimson Pro', serif;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s;
}
.admin-tab.active {
    background: var(--gold);
    color: #fff;
    border-color: var(--gold);
}
.admin-tab:hover:not(.active) {
    border-color: var(--gold-soft);
    color: var(--gold);
}
.admin-panel { display: none; }
.admin-panel.active { display: block; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .story-values {
        grid-template-columns: repeat(2, auto);
    }
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
    .footer-brand {
        grid-column: 1 / -1;
    }
    .nav-links { display: none; }
    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        background: rgba(253, 250, 246, 0.97);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        border-bottom: 1px solid var(--border-subtle);
        padding: 20px;
        gap: 16px;
        align-items: center;
    }
    .nav-toggle { display: flex; }
}

@media (max-width: 640px) {
    .hero-section {
        min-height: auto;
        padding: 90px 20px 32px;
    }
    .hero-content {
        margin-bottom: 24px;
    }
    .hero-scroll-hint {
        display: none;
    }
    .cards-grid {
        grid-template-columns: 1fr;
    }
    .story-values {
        grid-template-columns: 1fr;
        gap: 14px;
        max-width: 220px;
        margin-left: auto;
        margin-right: auto;
    }
    .hero-image-inner::after { display: none; }
    .footer-top {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-logo {
        justify-content: center;
    }
    .footer-desc { margin: 0 auto 16px; }
    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    .login-card {
        padding: 32px 24px;
    }
}
