:root {
    --bg-deep: #0d0b08;
    --bg-card: #16130e;
    --bg-card-hover: #1e1a13;
    --bg-parchment: #1a1610;
    --gold: #c9a84c;
    --gold-light: #e0c870;
    --gold-dim: #8a7434;
    --gold-glow: rgba(201, 168, 76, 0.4);
    --coptic-red: #8b3a3a;
    --coptic-red-light: #a85050;
    --nile-blue: #2a3a4a;
    --nile-teal: #3a5a5a;
    --sand: #b8a88a;
    --sand-light: #d4c8b0;
    --sand-dim: #7a7060;
    --text: #d0c8b8;
    --text-dim: #8a8070;
    --border: #2a2518;
    --border-gold: rgba(201, 168, 76, 0.25);
    --radius: 4px;
    --font-display: 'Cinzel Decorative', 'Cinzel', 'Noto Serif SC', serif;
    --font-body: 'Noto Serif SC', 'Cinzel', serif;
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background: var(--bg-deep);
    color: var(--text);
    line-height: 1.8;
    overflow-x: hidden;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background:
        radial-gradient(ellipse at 50% 40%, rgba(201, 168, 76, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 30% 60%, rgba(139, 58, 58, 0.06) 0%, transparent 40%),
        radial-gradient(ellipse at 70% 30%, rgba(42, 58, 74, 0.08) 0%, transparent 40%),
        var(--bg-deep);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(201, 168, 76, 0.015) 2px,
            rgba(201, 168, 76, 0.015) 3px
        );
    pointer-events: none;
}

.hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat 8s infinite;
}

@keyframes particleFloat {
    0% { opacity: 0; transform: translateY(0) scale(1); }
    15% { opacity: 0.6; }
    85% { opacity: 0.15; }
    100% { opacity: 0; transform: translateY(-160px) scale(0.2); }
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 0 24px;
}

.hero-ankh {
    margin-bottom: 28px;
    animation: ankhPulse 5s ease-in-out infinite;
}

.ankh-img {
    width: 140px;
    height: 140px;
    object-fit: contain;
    filter: drop-shadow(0 0 20px rgba(201, 168, 76, 0.3));
}

@keyframes ankhPulse {
    0%, 100% { opacity: 0.85; transform: scale(1); filter: brightness(1); }
    50% { opacity: 1; transform: scale(1.05); filter: brightness(1.2); }
}

.hero-title-zh {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    color: var(--gold-light);
    letter-spacing: 10px;
    margin-bottom: 8px;
    text-shadow: 0 0 40px rgba(201, 168, 76, 0.2);
}

.hero-title-en {
    font-family: var(--font-display);
    font-size: clamp(0.9rem, 2.2vw, 1.3rem);
    font-weight: 400;
    color: var(--sand-dim);
    letter-spacing: 8px;
    margin-bottom: 36px;
    text-transform: uppercase;
}

.hero-tagline {
    font-size: 1.05rem;
    color: var(--sand);
    letter-spacing: 4px;
    margin-bottom: 6px;
}

.hero-tagline-en {
    font-size: 0.8rem;
    color: var(--text-dim);
    letter-spacing: 1.5px;
    font-style: italic;
}

.top-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(13, 11, 8, 0.9);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-gold);
    transition: background 0.3s;
}

.nav-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--gold-light);
}

.logo-ankh {
    font-size: 1.4rem;
    color: var(--gold);
    text-shadow: 0 0 10px var(--gold-glow);
}

.logo-zh {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 2px;
}

.logo-en {
    font-family: var(--font-display);
    font-size: 0.65rem;
    color: var(--sand-dim);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.nav-actions {
    display: flex;
    gap: 28px;
    align-items: center;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.lang-switcher {
    position: relative;
    z-index: 1001;
}

.lang-switcher-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(22, 19, 14, 0.9);
    border: 1px solid var(--border-gold);
    border-radius: 2px;
    color: var(--sand-light);
    font-family: var(--font-body);
    font-size: 0.82rem;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.lang-switcher-btn:hover {
    border-color: var(--gold-dim);
    background: rgba(30, 26, 19, 0.95);
}

.lang-flag {
    font-size: 1rem;
    line-height: 1;
}

.lang-label {
    letter-spacing: 0.5px;
}

.lang-arrow {
    font-size: 0.65rem;
    color: var(--sand-dim);
    transition: transform 0.3s;
}

.lang-switcher.open .lang-arrow {
    transform: rotate(180deg);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    min-width: 180px;
    background: rgba(22, 19, 14, 0.98);
    border: 1px solid var(--border-gold);
    border-radius: 2px;
    padding: 6px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.25s ease;
    backdrop-filter: blur(16px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.lang-switcher.open .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 10px 16px;
    background: none;
    border: none;
    color: var(--sand);
    font-family: var(--font-body);
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s;
    text-align: left;
    letter-spacing: 0.5px;
}

.lang-option:hover {
    background: rgba(201, 168, 76, 0.08);
    color: var(--gold-light);
}

.lang-option.active {
    color: var(--gold);
    background: rgba(201, 168, 76, 0.05);
}

.lang-opt-flag {
    font-size: 1.1rem;
    line-height: 1;
}

.nav-link {
    color: var(--sand-dim);
    text-decoration: none;
    font-family: var(--font-display);
    font-size: 0.85rem;
    letter-spacing: 2px;
    transition: color 0.3s;
    text-transform: uppercase;
}

.nav-link:hover {
    color: var(--gold-light);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--gold);
    border-radius: 1px;
    transition: 0.3s;
}

.quick-entry {
    padding: 40px 0;
    background: var(--bg-parchment);
    border-bottom: 1px solid var(--border-gold);
}

.entry-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.entry-item {
    text-align: center;
    text-decoration: none;
    transition: transform 0.3s;
}

.entry-item:hover {
    transform: translateY(-4px);
}

.entry-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    border: 2px solid var(--gold-dim);
    transition: all 0.3s;
}

.entry-icon span {
    font-size: 1.8rem;
}

.entry-consult .entry-icon {
    background: rgba(201, 168, 76, 0.1);
    border-color: var(--gold-dim);
}

.entry-consult .entry-icon span {
    color: var(--gold-dim);
}

.entry-ritual .entry-icon {
    background: rgba(139, 58, 58, 0.15);
    border-color: var(--coptic-red);
}

.entry-ritual .entry-icon span {
    color: var(--coptic-red);
}

.entry-magic .entry-icon {
    background: rgba(201, 168, 76, 0.1);
    border-color: var(--gold-dim);
}

.entry-magic .entry-icon span {
    color: var(--gold-dim);
}

.entry-item:hover .entry-icon {
    box-shadow: 0 0 20px var(--gold-glow);
}

.entry-label {
    font-family: var(--font-display);
    font-size: 0.9rem;
    color: var(--sand-light);
    letter-spacing: 2px;
}

.entry-label-en {
    font-family: var(--font-display);
    font-size: 0.7rem;
    color: var(--text-dim);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-split {
    padding: 60px 0;
    background: var(--bg-deep);
}

.split-layout {
    display: flex;
    gap: 32px;
    align-items: stretch;
}

.split-illustration {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.illustration-frame {
    width: 100%;
    max-width: 771px;
    aspect-ratio: 4 / 3;
    border: 2px solid var(--gold-dim);
    border-radius: 2px;
    position: relative;
    background: linear-gradient(160deg, #1a1610 0%, #0d0b08 50%, #16130e 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.illustration-frame::before {
    content: '';
    position: absolute;
    inset: 8px;
    border: 1px solid rgba(201, 168, 76, 0.15);
    pointer-events: none;
}

.illust-inner {
    text-align: center;
}

.illust-ankh {
    font-size: 5rem;
    color: var(--gold);
    text-shadow: 0 0 60px var(--gold-glow);
    margin-bottom: 16px;
    animation: ankhPulse 5s ease-in-out infinite;
}

.illust-eye {
    font-size: 2.5rem;
    color: var(--coptic-red-light);
    text-shadow: 0 0 20px rgba(139, 58, 58, 0.4);
    margin-bottom: 12px;
}

.illust-stars {
    font-size: 1rem;
    color: var(--sand-dim);
    letter-spacing: 8px;
    margin-bottom: 20px;
}

.illust-text {
    font-family: var(--font-display);
    font-size: 0.85rem;
    color: var(--gold-dim);
    letter-spacing: 6px;
    line-height: 1.8;
}

.illustration-video::before {
    display: none;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    background: #000;
}

.video-controls {
    position: absolute;
    bottom: 12px;
    right: 12px;
    z-index: 2;
}

.video-mute-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--gold-dim);
    background: rgba(13, 11, 8, 0.7);
    color: var(--gold-dim);
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    backdrop-filter: blur(4px);
}

.video-mute-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(13, 11, 8, 0.9);
}

.video-mute-btn.unmuted {
    border-color: var(--gold);
    color: var(--gold);
}

.split-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 280px;
    flex-shrink: 0;
}

.split-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: 2px;
    text-decoration: none;
    transition: all 0.3s;
}

.split-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--gold-dim);
    transform: translateX(4px);
}

.split-card-icon {
    font-size: 1.6rem;
    color: var(--gold);
    flex-shrink: 0;
}

.split-card-text {
    display: flex;
    flex-direction: column;
}

.split-card-zh {
    font-family: var(--font-display);
    font-size: 0.95rem;
    color: var(--sand-light);
    letter-spacing: 2px;
}

.split-card-en {
    font-family: var(--font-display);
    font-size: 0.65rem;
    color: var(--text-dim);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-ankh {
    display: block;
    font-size: 2rem;
    color: var(--gold);
    text-shadow: 0 0 20px var(--gold-glow);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    color: var(--gold-light);
    letter-spacing: 6px;
    margin-bottom: 8px;
}

.section-subtitle {
    font-family: var(--font-display);
    font-size: 0.8rem;
    color: var(--sand-dim);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 8px;
}

.section-divider::before,
.section-divider::after {
    content: '';
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
}

.section-divider span {
    color: var(--gold-dim);
    font-size: 0.9rem;
}

.services {
    padding: 80px 0 40px;
}

.consult-section {
    margin-bottom: 60px;
}

.consult-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-gold);
}

.consult-icon-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 2px solid var(--gold-dim);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 168, 76, 0.08);
    flex-shrink: 0;
}

.consult-icon-circle span {
    font-size: 1.5rem;
    color: var(--gold-dim);
}

.ritual-icon-circle {
    border-color: var(--coptic-red);
    background: rgba(139, 58, 58, 0.08);
}

.ritual-icon-circle span {
    color: var(--coptic-red);
}

.consult-header-text h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--gold-light);
    letter-spacing: 4px;
    font-weight: 600;
}

.consult-en {
    font-family: var(--font-display);
    font-size: 0.75rem;
    color: var(--sand-dim);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 2px;
    padding: 28px 24px;
    position: relative;
    transition: all 0.4s;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}

.service-card:hover {
    border-color: var(--border-gold);
    background: var(--bg-card-hover);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(201, 168, 76, 0.08);
}

.service-card:hover::before {
    opacity: 1;
}

.card-ornament {
    position: absolute;
    font-size: 0.7rem;
    color: var(--gold-dim);
    opacity: 0.3;
}

.card-ornament.top-left {
    top: 8px;
    left: 10px;
}

.card-ornament.top-right {
    top: 8px;
    right: 10px;
}

.card-icon {
    font-size: 2rem;
    color: var(--gold);
    text-shadow: 0 0 16px var(--gold-glow);
    margin-bottom: 16px;
}

.service-card h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--sand-light);
    letter-spacing: 1.5px;
    margin-bottom: 6px;
    line-height: 1.5;
}

.card-en {
    font-family: var(--font-display);
    font-size: 0.72rem;
    color: var(--text-dim);
    letter-spacing: 0.5px;
    margin-bottom: 14px;
    font-style: italic;
}

.card-desc {
    font-size: 0.85rem;
    color: var(--text-dim);
    line-height: 1.9;
    margin-bottom: 16px;
}

.card-price {
    font-family: var(--font-display);
    font-size: 0.9rem;
    color: var(--gold) !important;
    letter-spacing: 1px;
}

.placeholder-section {
    padding: 60px 0;
    border-top: 1px solid var(--border);
}

.coming-soon {
    text-align: center;
    padding: 48px 0;
}

.coming-icon {
    font-size: 2.5rem;
    color: var(--gold-dim);
    opacity: 0.5;
    margin-bottom: 16px;
}

.coming-soon p {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--sand-dim);
    letter-spacing: 3px;
}

.coming-en {
    font-size: 0.8rem !important;
    color: var(--text-dim) !important;
    letter-spacing: 2px !important;
    text-transform: uppercase;
}

.about {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--bg-deep), var(--bg-parchment), var(--bg-deep));
    border-top: 1px solid var(--border-gold);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-symbol {
    flex-shrink: 0;
}

.about-ankh-ring {
    width: 160px;
    height: 160px;
    border: 2px solid var(--gold-dim);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: ringGlow 5s ease-in-out infinite;
}

.about-ankh-ring::before {
    content: '';
    position: absolute;
    inset: -10px;
    border: 1px solid rgba(201, 168, 76, 0.15);
    border-radius: 50%;
}

.about-ankh-ring::after {
    content: '';
    position: absolute;
    inset: -20px;
    border: 1px solid rgba(201, 168, 76, 0.07);
    border-radius: 50%;
}

.about-ankh-ring span {
    font-size: 4rem;
    color: var(--gold);
    text-shadow: 0 0 30px var(--gold-glow);
}


@keyframes ringGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(201, 168, 76, 0.1); }
    50% { box-shadow: 0 0 40px rgba(201, 168, 76, 0.25); }
}

.about-text {
    flex: 1;
}

.about-text p {
    margin-bottom: 16px;
    font-size: 0.95rem;
    color: var(--sand);
    line-height: 2;
}

.about-text p:nth-child(2) {
    color: var(--text-dim);
    font-size: 0.85rem;
    font-style: italic;
}


.contact {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--bg-deep), var(--bg-parchment));
    border-top: 1px solid var(--border-gold);
}

.contact-content {
    display: flex;
    align-items: stretch;
    gap: 40px;
    justify-content: center;
}

.contact-qr {
    flex-shrink: 0;
}

.qr-group {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.qr-frame {
    width: 220px;
    padding: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: 2px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qr-frame::before {
    content: '';
    position: absolute;
    inset: 4px;
    border: 1px solid rgba(201, 168, 76, 0.12);
    pointer-events: none;
}

.qr-inner {
    text-align: center;
}

.qr-image {
    width: 170px;
    height: 170px;
    object-fit: contain;
    margin-bottom: 12px;
    border-radius: 2px;
}

.qr-inner p {
    font-size: 0.82rem;
    color: var(--sand);
    margin-bottom: 2px;
}

.qr-hint {
    font-size: 0.72rem !important;
    color: var(--sand-dim) !important;
}

.contact-bio {
    flex: 1;
    max-width: 480px;
}

.bio-frame {
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: 2px;
    padding: 28px 32px;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bio-frame::before {
    content: '';
    position: absolute;
    inset: 4px;
    border: 1px solid rgba(201, 168, 76, 0.08);
    pointer-events: none;
}

.bio-name {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--gold-light);
    letter-spacing: 3px;
    margin-bottom: 16px;
}

.bio-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.bio-divider::before,
.bio-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
}

.bio-divider span {
    color: var(--gold-dim);
    font-size: 0.9rem;
}

.bio-text {
    font-size: 0.9rem;
    color: var(--sand);
    line-height: 2;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.bio-text:last-child {
    margin-bottom: 0;
}

.footer {
    padding: 40px 0;
    border-top: 1px solid var(--border-gold);
}

.footer-border {
    text-align: center;
    font-size: 0.8rem;
    color: var(--gold-dim);
    letter-spacing: 8px;
    margin-bottom: 24px;
    opacity: 0.5;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    color: var(--sand-dim);
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.footer-ankh {
    font-size: 1.2rem;
    color: var(--gold-dim);
}

.footer-en {
    font-size: 0.7rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-copy {
    font-size: 0.75rem;
    color: var(--text-dim);
}

@media (max-width: 768px) {
    .hero {
        min-height: 70vh;
    }

    .ankh-img {
        width: 100px;
        height: 100px;
    }

    .hero-title-zh {
        letter-spacing: 4px;
    }

    .nav-actions {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        background: rgba(13, 11, 8, 0.95);
        backdrop-filter: blur(16px);
        flex-direction: column;
        padding: 20px 24px;
        gap: 16px;
        border-bottom: 1px solid var(--border-gold);
    }

    .nav-actions.active {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

    .lang-switcher-btn {
        padding: 5px 8px;
        font-size: 0.75rem;
    }

    .lang-label {
        display: none;
    }

    .lang-dropdown {
        right: -8px;
        min-width: 160px;
    }

    .entry-grid {
        gap: 20px;
    }

    .entry-icon {
        width: 52px;
        height: 52px;
    }

    .entry-icon span {
        font-size: 1.3rem;
    }

    .entry-label {
        font-size: 0.82rem;
    }

    .split-layout {
        flex-direction: column;
        gap: 24px;
    }

    .illustration-frame {
        max-width: 588px;
    }

    .illust-ankh {
        font-size: 3.5rem;
    }

    .split-cards {
        width: 100%;
        flex-direction: column;
        gap: 12px;
    }

    .split-card {
        width: 100%;
    }

    .service-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .service-card {
        padding: 20px;
    }

    .card-icon {
        font-size: 1.6rem;
        margin-bottom: 12px;
    }

    .service-card h4 {
        font-size: 0.92rem;
    }

    .card-desc {
        font-size: 0.82rem;
        line-height: 1.7;
    }

    .about-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .about-ankh-ring {
        width: 130px;
        height: 130px;
    }

    .about-ankh-ring span {
        font-size: 3rem;
    }


    .contact-content {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }

    .qr-group {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }

    .qr-frame {
        width: 200px;
    }

    .qr-image {
        width: 150px;
        height: 150px;
    }

    .contact-bio {
        max-width: 100%;
    }

    .bio-frame {
        padding: 20px 24px;
    }

    .bio-name {
        font-size: 0.92rem;
    }

    .bio-text {
        font-size: 0.85rem;
        line-height: 1.8;
    }

    .footer-inner {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

}

@media (max-width: 480px) {
    .hero {
        min-height: 60vh;
    }

    .ankh-img {
        width: 80px;
        height: 80px;
    }


    .entry-grid {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .entry-item {
        width: 100%;
        max-width: 200px;
    }

    .split-cards {
        flex-direction: column;
    }

    .section-title {
        font-size: 1.3rem;
        letter-spacing: 3px;
    }

    .section-subtitle {
        font-size: 0.72rem;
    }

    .consult-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .consult-icon-circle {
        width: 48px;
        height: 48px;
    }

    .consult-icon-circle span {
        font-size: 1.3rem;
    }

    .consult-header-text h3 {
        font-size: 1.1rem;
    }

}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.service-card[data-slug] {
    cursor: pointer;
}

.service-card[data-slug]:hover {
    border-color: var(--gold-dim);
}

.detail-page {
    display: none;
    padding: 100px 0 60px;
    min-height: 100vh;
    background: var(--bg-deep);
}

.detail-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 40px;
    font-family: var(--font-display);
    font-size: 0.82rem;
    letter-spacing: 1px;
}

.detail-breadcrumb a {
    color: var(--sand-dim);
    text-decoration: none;
    transition: color 0.3s;
}

.detail-breadcrumb a:hover {
    color: var(--gold-light);
}

.bc-sep {
    color: var(--text-dim);
    margin: 0 2px;
}

.bc-current {
    color: var(--gold-light);
}

.detail-article {
    max-width: 720px;
    margin: 0 auto;
}

.detail-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 36px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-gold);
}

.detail-icon {
    font-size: 2.5rem;
    color: var(--gold);
    text-shadow: 0 0 20px var(--gold-glow);
    flex-shrink: 0;
}

.detail-title {
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 3vw, 1.6rem);
    color: var(--gold-light);
    letter-spacing: 2px;
    line-height: 1.5;
    font-weight: 600;
}

.detail-title-en {
    font-family: var(--font-display);
    font-size: 0.78rem;
    color: var(--sand-dim);
    letter-spacing: 1px;
    font-style: italic;
    margin-top: 4px;
}

.detail-image {
    margin-bottom: 36px;
    border-radius: 2px;
    overflow: hidden;
    border: 1px solid var(--border-gold);
}

.detail-img {
    width: 100%;
    height: auto;
    display: block;
    max-height: 500px;
    object-fit: cover;
}

.detail-body {
    margin-bottom: 36px;
}

.detail-body p {
    font-size: 0.95rem;
    color: var(--sand);
    line-height: 2;
    margin-bottom: 20px;
    letter-spacing: 0.3px;
}

.detail-body p:last-child {
    margin-bottom: 0;
}

.detail-price {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: 2px;
    margin-bottom: 40px;
}

.detail-price-label {
    font-family: var(--font-display);
    font-size: 0.85rem;
    color: var(--sand-dim);
    letter-spacing: 2px;
}

.detail-price-value {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--gold);
    letter-spacing: 1px;
}

.detail-person {
    margin-bottom: 40px;
}

.person-component {
    display: flex;
    align-items: stretch;
    gap: 32px;
}

.person-qr {
    flex-shrink: 0;
}

.person-info {
    flex: 1;
}

.detail-back {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.back-btn {
    display: inline-block;
    padding: 12px 32px;
    border: 1px solid var(--gold-dim);
    color: var(--gold);
    text-decoration: none;
    font-family: var(--font-display);
    font-size: 0.88rem;
    letter-spacing: 2px;
    border-radius: 2px;
    transition: all 0.3s;
}

.back-btn:hover {
    border-color: var(--gold);
    background: rgba(201, 168, 76, 0.08);
}

@media (max-width: 768px) {
    .detail-page {
        padding: 80px 0 40px;
    }

    .detail-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .detail-icon {
        font-size: 2rem;
    }

    .detail-body p {
        font-size: 0.9rem;
        line-height: 1.9;
    }

    .person-component {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .detail-price {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .detail-title {
        font-size: 1.1rem;
    }

    .detail-breadcrumb {
        font-size: 0.75rem;
        flex-wrap: wrap;
    }
}

html[lang="ru"] .hero-title-zh,
html[lang="uk"] .hero-title-zh,
html[lang="be"] .hero-title-zh,
html[lang="kk"] .hero-title-zh,
html[lang="uz"] .hero-title-zh {
    font-family: var(--font-display);
}

html[lang="ru"] .logo-zh,
html[lang="uk"] .logo-zh,
html[lang="be"] .logo-zh,
html[lang="kk"] .logo-zh,
html[lang="uz"] .logo-zh {
    font-family: var(--font-display);
}

html[dir="rtl"] .nav-inner {
    flex-direction: row-reverse;
}

html[dir="rtl"] .nav-logo {
    flex-direction: row-reverse;
}

html[dir="rtl"] .nav-actions {
    flex-direction: row-reverse;
}

html[dir="rtl"] .split-layout {
    flex-direction: row-reverse;
}

html[dir="rtl"] .split-card:hover {
    transform: translateX(-4px);
}

html[dir="rtl"] .about-content {
    flex-direction: row-reverse;
}

html[dir="rtl"] .contact-content {
    flex-direction: row-reverse;
}

html[dir="rtl"] .detail-breadcrumb {
    direction: rtl;
}

html[dir="rtl"] .footer-inner {
    flex-direction: row-reverse;
}

html[dir="rtl"] .lang-dropdown {
    right: auto;
    left: 0;
}

@media (max-width: 768px) {
    html[dir="rtl"] .split-layout {
        flex-direction: column;
    }

    html[dir="rtl"] .about-content {
        flex-direction: column;
    }

    html[dir="rtl"] .contact-content {
        flex-direction: column;
    }

    html[dir="rtl"] .footer-inner {
        flex-direction: column;
    }
}

html[lang="ru"] .section-title,
html[lang="uk"] .section-title,
html[lang="be"] .section-title,
html[lang="kk"] .section-title,
html[lang="uz"] .section-title,
html[lang="ru"] .hero-tagline,
html[lang="uk"] .hero-tagline,
html[lang="be"] .hero-tagline,
html[lang="kk"] .hero-tagline,
html[lang="uz"] .hero-tagline {
    letter-spacing: 2px;
}

html[lang="ru"] .hero-title-zh,
html[lang="uk"] .hero-title-zh,
html[lang="be"] .hero-title-zh,
html[lang="kk"] .hero-title-zh,
html[lang="uz"] .hero-title-zh {
    letter-spacing: 4px;
}
