/* Custom CSS for 中古マンション販売会LP - Modern Wood Design */

/* Base Styles */
* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    line-height: 1.7;
    color: #333333;
    font-family: "Noto Sans JP", sans-serif;
    background: linear-gradient(135deg, #fefefd 0%, #fdfcf8 50%, #fbf8f0 100%);
    font-weight: 400;
    font-feature-settings: "kern" 1, "liga" 1;
}

/* Beige Main Theme Texture Backgrounds - ベージュメイン配色 */
.warm-family-light {
    background: 
        linear-gradient(135deg, 
            rgba(245, 245, 220, 0.08) 0%, 
            transparent 25%, 
            rgba(220, 220, 184, 0.06) 50%, 
            transparent 75%, 
            rgba(245, 245, 220, 0.08) 100%),
        linear-gradient(45deg, 
            rgba(255, 165, 0, 0.03) 0%, 
            transparent 30%, 
            rgba(255, 165, 0, 0.03) 70%, 
            transparent 100%);
    background-color: #fefefd;
}

.warm-family-medium {
    background: 
        linear-gradient(135deg, 
            rgba(245, 245, 220, 0.12) 0%, 
            transparent 30%, 
            rgba(196, 196, 148, 0.08) 50%, 
            transparent 70%, 
            rgba(245, 245, 220, 0.12) 100%);
    background-color: #fbf8f0;
}

.warm-family-dark {
    background: 
        linear-gradient(135deg, 
            rgba(196, 196, 148, 0.15) 0%, 
            transparent 40%, 
            rgba(171, 171, 112, 0.12) 50%, 
            transparent 60%, 
            rgba(196, 196, 148, 0.15) 100%);
    background-color: #F5F5DC;
}

/* Subtle Warm Family Pattern */
.subtle-warm-grain::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(ellipse 300px 60px at 25% 20%, rgba(218, 167, 116, 0.025) 0%, transparent 60%),
        radial-gradient(ellipse 250px 50px at 75% 60%, rgba(241, 136, 39, 0.02) 0%, transparent 60%),
        radial-gradient(ellipse 400px 80px at 40% 90%, rgba(193, 137, 81, 0.015) 0%, transparent 60%),
        linear-gradient(90deg, 
            transparent 0%, 
            rgba(218, 167, 116, 0.01) 25%, 
            transparent 50%, 
            rgba(241, 136, 39, 0.008) 75%, 
            transparent 100%);
    pointer-events: none;
    z-index: 1;
}

/* Warm Family Animations 💕 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes warmFamilyFloat {
    0%, 100% {
        transform: translateY(0) rotateZ(0deg) scale(1);
    }
    50% {
        transform: translateY(-8px) rotateZ(0.5deg) scale(1.02);
    }
}

@keyframes warmFamilyPulse {
    0%, 100% {
        box-shadow: 0 6px 30px rgba(241, 136, 39, 0.15);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 12px 50px rgba(241, 136, 39, 0.25);
        transform: scale(1.02);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 1s ease-out forwards;
}

.animate-warm-family-float {
    animation: warmFamilyFloat 6s ease-in-out infinite;
}

.animate-warm-family-pulse {
    animation: warmFamilyPulse 5s ease-in-out infinite;
}

.animate-slide-in {
    animation: slideIn 0.7s ease-out forwards;
}

.animate-slide-in-up {
    animation: slideInUp 0.8s ease-out forwards;
}

.animate-scale-in {
    animation: scaleIn 0.6s ease-out forwards;
}

.animate-bounce-in {
    animation: bounceIn 0.8s ease-out forwards;
}

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Warm Family Header */
header {
    backdrop-filter: blur(20px);
    background: rgba(253, 248, 243, 0.9);
    border-bottom: 1px solid rgba(218, 167, 116, 0.2);
    box-shadow: 0 4px 20px rgba(193, 137, 81, 0.12);
    border-radius: 0 0 20px 20px;
}

/* Enhanced Hero Section with Slideshow */
.hero-section-enhanced {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

/* Hero Slideshow Background */
.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 2s ease-in-out;
    filter: brightness(1.05) contrast(1.1) saturate(1.1);
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide[data-bg="hero-renovation-interior.jpg"] {
    background-image: url('../images/hero-renovation-interior.jpg');
}

.hero-slide[data-bg="hero-exterior-building.jpg"] {
    background-image: url('../images/hero-exterior-building.jpg');
}

.hero-slide[data-bg="hero-interior-room.jpg"] {
    background-image: url('../images/hero-interior-room.jpg');
}

/* Slideshow Indicators */
.slideshow-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.7);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

.indicator.active {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 255, 255, 1);
}

.hero-section-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, 
            rgba(245, 245, 220, 0.85) 0%, 
            rgba(220, 220, 184, 0.6) 25%, 
            rgba(196, 196, 148, 0.4) 50%, 
            rgba(220, 220, 184, 0.6) 75%, 
            rgba(245, 245, 220, 0.85) 100%),
        radial-gradient(ellipse at 30% 70%, 
            rgba(255, 165, 0, 0.3) 0%, 
            transparent 70%);
    z-index: 1;
}

.hero-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(180deg, 
            rgba(245, 245, 220, 0.2) 0%, 
            transparent 30%, 
            transparent 70%, 
            rgba(196, 196, 148, 0.25) 100%);
    z-index: 2;
}

.hero-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(245, 245, 220, 0.25) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(255, 165, 0, 0.1) 0%, transparent 50%);
    animation: floatingElements 8s ease-in-out infinite;
    z-index: 3;
}

@keyframes floatingElements {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-10px) rotate(1deg); }
    66% { transform: translateY(-5px) rotate(-0.5deg); }
}

.hero-content-wrapper {
    text-align: center;
    max-width: 6xl;
    margin: 0 auto;
    padding: 120px 0 80px 0; /* 上部パディングを増加してヘッダー分を調整 */
}

/* Warm Family Button Styles */
.btn-warm-family-primary {
    background: linear-gradient(135deg, #f18827 0%, #e2711c 30%, #bb5a18 100%);
    color: #ffffff;
    border: 1px solid rgba(241, 136, 39, 0.3);
    border-radius: 25px;
    box-shadow: 0 6px 25px rgba(241, 136, 39, 0.25);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    font-weight: 600;
    font-size: 1rem;
    padding: 14px 28px;
}

.btn-warm-family-primary::before {
    content: '💝';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
    transition: left 0.6s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    opacity: 0;
}

.btn-warm-family-primary:hover::before {
    left: 100%;
    opacity: 1;
}

.btn-warm-family-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 35px rgba(241, 136, 39, 0.35);
    background: linear-gradient(135deg, #f5a24e 0%, #f18827 30%, #e2711c 100%);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-warm-family-secondary {
    background: rgba(218, 167, 116, 0.1);
    color: #7a532e;
    border: 2px solid rgba(241, 136, 39, 0.3);
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(218, 167, 116, 0.12);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 600;
    backdrop-filter: blur(10px);
    font-size: 0.95rem;
    padding: 12px 24px;
}

.btn-warm-family-secondary:hover {
    background: rgba(241, 136, 39, 0.15);
    border-color: rgba(241, 136, 39, 0.5);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 30px rgba(241, 136, 39, 0.2);
    color: #5d3e20;
}

/* Warm Family Card Styles 🏠✨ */
.warm-family-card {
    background: linear-gradient(145deg, 
        rgba(255, 255, 255, 0.98) 0%, 
        rgba(253, 248, 243, 0.95) 50%, 
        rgba(255, 255, 255, 0.98) 100%);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(241, 136, 39, 0.15);
    border-radius: 24px;
    box-shadow: 
        0 8px 32px rgba(218, 167, 116, 0.15),
        0 4px 16px rgba(241, 136, 39, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.warm-family-card::before {
    content: '✨';
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.2rem;
    opacity: 0;
    transition: all 0.4s ease;
    color: #f18827;
}

.warm-family-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(241, 136, 39, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(218, 167, 116, 0.02) 0%, transparent 50%),
        linear-gradient(45deg, transparent 0%, rgba(232, 194, 154, 0.015) 25%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.warm-family-card > * {
    position: relative;
    z-index: 2;
}

.warm-family-card:hover::before {
    opacity: 1;
    transform: rotate(10deg) scale(1.1);
}

.warm-family-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 20px 50px rgba(241, 136, 39, 0.25),
        0 10px 25px rgba(218, 167, 116, 0.15);
    border-color: rgba(241, 136, 39, 0.3);
}

/* Modern Wood Icon Containers */
.wood-modern-icon {
    background: linear-gradient(135deg, #8b6e51 0%, #654321 100%);
    border: 2px solid rgba(139, 110, 81, 0.2);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(101, 67, 33, 0.15);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.wood-modern-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.wood-modern-icon:hover {
    transform: scale(1.05) rotate(-1deg);
    box-shadow: 0 8px 30px rgba(101, 67, 33, 0.2);
    border-color: rgba(139, 110, 81, 0.3);
}

/* Warm Family Form Styling */
.warm-family-input {
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(241, 136, 39, 0.2);
    border-radius: 20px;
    color: #5d3e20;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 16px;
    font-weight: 400;
    backdrop-filter: blur(10px);
    padding: 14px 20px;
}

.warm-family-input:focus {
    outline: none;
    border-color: #f18827;
    box-shadow: 
        0 0 0 4px rgba(241, 136, 39, 0.1),
        0 4px 20px rgba(241, 136, 39, 0.15);
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 1);
}

.warm-family-input::placeholder {
    color: rgba(122, 83, 46, 0.6);
}

/* Modern Wood Section Backgrounds */
.wood-modern-section-primary {
    background: linear-gradient(135deg, #faf8f5 0%, #f7f5f2 100%);
    position: relative;
}

.wood-modern-section-secondary {
    background: linear-gradient(135deg, #f7f5f2 0%, #f5f2ed 100%);
    position: relative;
}

.wood-modern-section-accent {
    background: linear-gradient(135deg, #4a3728 0%, #5c422f 50%, #6b5142 100%);
    position: relative;
}

.wood-modern-section-accent::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(139, 110, 81, 0.08) 0%, transparent 60%),
        radial-gradient(circle at 75% 75%, rgba(160, 132, 104, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

/* Modern Wood Dividers */
.wood-modern-divider {
    position: relative;
}

.wood-modern-divider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #8b6e51 0%, #a08468 50%, #8b6e51 100%);
    border-radius: 2px;
}

/* Modern Wood Gradient Text */
.wood-modern-gradient-text {
    background: linear-gradient(135deg, #8b6e51 0%, #654321 50%, #4a3728 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

/* Modern Wood Text Colors */
.text-wood-modern-primary {
    color: #2d2016;
}

.text-wood-modern-secondary {
    color: #4a3728;
}

.text-wood-modern-accent {
    color: #8b6e51;
}

.text-wood-modern-muted {
    color: #6b5142;
}

.text-wood-modern-light {
    color: #d4c4a8;
}

/* Modern Wood Shadows */
.wood-modern-shadow {
    box-shadow: 0 4px 25px rgba(101, 67, 33, 0.08);
}

.wood-modern-shadow-lg {
    box-shadow: 0 10px 40px rgba(101, 67, 33, 0.12);
}

/* Modern Glass Wood Effect */
.wood-glass-effect {
    background: rgba(250, 248, 245, 0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(139, 110, 81, 0.15);
}

/* Warm Family Typography 📝❤️ */
.warm-family-heading {
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #5d3e20;
    text-shadow: 0 2px 4px rgba(241, 136, 39, 0.1);
    position: relative;
}

.warm-family-heading::after {
    content: '✨';
    position: absolute;
    top: -5px;
    right: -25px;
    font-size: 0.7em;
    opacity: 0.7;
    animation: sparkle 3s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { opacity: 0.7; transform: rotate(0deg) scale(1); }
    50% { opacity: 1; transform: rotate(180deg) scale(1.1); }
}

.warm-family-subheading {
    font-weight: 600;
    letter-spacing: -0.01em;
    color: #7a532e;
    line-height: 1.6;
}

.warm-family-body {
    font-weight: 400;
    line-height: 1.8;
    color: #7a532e;
    font-size: 1.05rem;
    position: relative;
}

.warm-family-body::selection {
    background: rgba(241, 136, 39, 0.2);
    color: #5d3e20;
}

/* Hero Text Enhancement */
.hero-text-shadow {
    text-shadow: 
        0 1px 2px rgba(255, 255, 255, 1),
        0 2px 4px rgba(255, 255, 255, 0.8),
        0 4px 8px rgba(45, 32, 22, 0.6),
        0 8px 16px rgba(45, 32, 22, 0.3);
}

.hero-highlight-text {
    background: linear-gradient(135deg, rgba(139, 110, 81, 0.95) 0%, rgba(101, 67, 33, 0.95) 100%);
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 12px;
    display: inline-block;
    text-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.3),
        0 4px 8px rgba(0, 0, 0, 0.2);
    box-shadow: 
        0 4px 20px rgba(101, 67, 33, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(139, 110, 81, 0.3);
}

.hero-card-backdrop {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(139, 110, 81, 0.15);
    box-shadow: 0 8px 32px rgba(101, 67, 33, 0.12);
}

.hero-content-backdrop {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 40px 30px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        0 4px 16px rgba(0, 0, 0, 0.05);
}

/* Property Section Background */
.property-section-background {
    background: 
        linear-gradient(135deg, rgba(250, 248, 245, 0.9) 0%, rgba(247, 245, 242, 0.85) 50%, rgba(245, 242, 237, 0.9) 100%),
        url('../images/property-section-background.jpg') center center/cover no-repeat;
    position: relative;
    overflow: hidden;
}

.property-section-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0.4) 100%);
    z-index: 1;
}

.property-section-background .container {
    position: relative;
    z-index: 2;
}

/* Slideshow Performance Optimization */
@media (prefers-reduced-motion: reduce) {
    .hero-slide {
        transition: none;
    }
}

/* Enhanced Responsive Design */
@media (max-width: 1024px) {
    .hero-content-wrapper {
        padding: 100px 0 60px 0;
    }
    
    .hero-slide {
        background-attachment: scroll; /* Better performance on mobile */
    }
    
    .title-line-1 {
        font-size: clamp(1.5rem, 4.5vw, 3rem);
    }
    
    .title-line-2 {
        font-size: clamp(1.75rem, 5.5vw, 3.5rem);
    }
    
    .title-line-3 {
        font-size: clamp(2.25rem, 7vw, 4.5rem);
    }
    
    .event-info-grid {
        gap: 1.5rem;
    }
}

/* タブレット専用スタイリング - 開催日程と会場の位置最適化 */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero-event-card {
        padding: 2rem 1.5rem;
        margin: 0 auto 2.5rem;
        max-width: 720px;
    }
    
    .event-info-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }
    
    .event-info-divider {
        display: none;
    }
    
    .event-info-item {
        justify-content: center;
        flex-direction: column;
        gap: 1.25rem;
    }
    
    .event-icon {
        width: 72px;
        height: 72px;
        font-size: 1.75rem;
        margin-bottom: 0.5rem;
    }
    
    .event-details {
        text-align: center;
    }
    
    .event-label {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }
    
    .event-value {
        font-size: 1.375rem;
        margin-bottom: 1rem;
    }
    
    .event-dates {
        justify-content: center;
        gap: 0.75rem;
        margin-bottom: 1rem;
    }
    
    .date-highlight {
        font-size: 1rem;
        padding: 0.5rem 1rem;
        border-radius: 25px;
    }
    
    .event-time {
        font-size: 1.125rem;
        margin-top: 0.5rem;
    }
    
    .venue-name {
        font-size: 1.5rem;
        line-height: 1.3;
    }
    
    /* タブレット向け視認性向上 */
    .event-info-item:first-child {
        padding-bottom: 1.5rem;
        border-bottom: 2px solid rgba(139, 110, 81, 0.15);
        margin-bottom: 0.5rem;
    }
    
    .event-info-item:last-child {
        padding-top: 1rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .hero-section-enhanced {
        min-height: 100vh;
    }
    
    .hero-slide {
        background-position: center center;
        background-size: cover;
        background-attachment: scroll; /* Better performance on mobile */
    }
    
    .hero-content-wrapper {
        padding: 80px 0 40px 0;
    }
    
    .guide-badge {
        padding: 6px 16px;
    }
    
    .guide-text {
        font-size: 0.75rem;
    }
    
    .title-line-1 {
        font-size: clamp(1.4rem, 6vw, 2.5rem);
    }
    
    .title-line-2 {
        font-size: clamp(1.6rem, 7vw, 3rem);
    }
    
    .title-line-3 {
        font-size: clamp(2rem, 9vw, 4rem);
    }
    
    .hero-subtitle {
        font-size: clamp(1.125rem, 4vw, 1.5rem);
    }
    
    .hero-description {
        font-size: clamp(0.875rem, 3.5vw, 1.25rem);
    }
    
    .limited-event-badge-enhanced {
        font-size: 1rem;
        padding: 12px 24px;
        border-width: 3px;
        transform: perspective(1000px) rotateX(-5deg);
    }
    
    .mega-word-enhanced {
        padding: 10px 20px;
        border-width: 2px;
        font-size: inherit;
        border-radius: 10px;
    }
    
    .hero-event-card {
        padding: 1.5rem;
        margin: 0 1rem 2rem;
    }
    
    .event-info-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .event-info-divider {
        display: none;
    }
    
    .event-dates {
        justify-content: center;
    }
    
    .date-highlight {
        font-size: 0.8rem;
        padding: 0.2rem 0.6rem;
    }
    
    .hero-cta-button {
        font-size: 1.125rem;
        padding: 18px 36px;
    }
    
    .cta-urgency {
        font-size: 0.8rem;
        padding: 0.6rem 1.5rem;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
        border-radius: 20px;
    }
    
    .feature-divider {
        display: none;
    }
    
    .wood-modern-card {
        border-radius: 12px;
    }
    
    .btn-wood-modern-primary, .btn-wood-modern-secondary {
        border-radius: 10px;
    }
    
    .wood-modern-input {
        border-radius: 10px;
    }
}

@media (max-width: 480px) {
    .hero-content-wrapper {
        padding: 30px 0;
    }
    
    .title-line-1 {
        font-size: clamp(1.2rem, 7vw, 2rem);
        margin-bottom: 0.25rem;
    }
    
    .title-line-2 {
        font-size: clamp(1.4rem, 8vw, 2.5rem);
        margin-bottom: 0.25rem;
    }
    
    .title-line-3 {
        font-size: clamp(1.8rem, 10vw, 3.5rem);
        margin-bottom: 0.5rem;
    }
    
    .hero-subtitle {
        font-size: clamp(1rem, 5vw, 1.25rem);
        margin-bottom: 0.75rem;
    }
    
    .hero-description {
        font-size: clamp(0.8rem, 4vw, 1.125rem);
    }
    
    .limited-event-badge-enhanced {
        font-size: 0.9rem;
        padding: 10px 20px;
        border-width: 2px;
    }
    
    .mega-word-enhanced {
        padding: 8px 16px;
        border-width: 2px;
        font-size: inherit;
        border-radius: 8px;
    }
    
    .hero-event-card {
        padding: 1.25rem;
        margin: 0 0.5rem 1.5rem;
        border-radius: 16px;
    }
    
    .event-icon {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
    }
    
    .event-value {
        font-size: 1rem;
    }
    
    .venue-name {
        font-size: 1.125rem;
    }
    
    .hero-cta-button {
        font-size: 1rem;
        padding: 16px 28px;
        border-radius: 40px;
    }
    
    .cta-icon, .cta-arrow {
        font-size: 1.125rem;
    }
    
    .cta-urgency {
        font-size: 0.75rem;
        padding: 0.5rem 1.25rem;
        border-radius: 20px;
    }
    
    .hero-features {
        gap: 0.75rem;
        padding: 1.25rem;
    }
    
    .feature-icon {
        width: 28px;
        height: 28px;
        font-size: 0.75rem;
    }
    
    .feature-text {
        font-size: 0.8rem;
    }
}

/* Character Conversation Section */
.character-container {
    position: relative;
    z-index: 2;
}

.animate-float {
    animation: characterFloat 6s ease-in-out infinite;
}

@keyframes characterFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Speech Bubble */
.speech-bubble {
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    border: 3px solid #8b6e51;
    border-radius: 25px;
    padding: 2rem 2.5rem;
    box-shadow: 
        0 10px 30px rgba(139, 110, 81, 0.15),
        0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

.speech-bubble-content {
    color: #2d2016;
    font-weight: 500;
    line-height: 1.7;
}

.speech-tail {
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
    border-right: 20px solid #8b6e51;
    z-index: 0;
}

.speech-tail::after {
    content: '';
    position: absolute;
    left: 3px;
    top: -17px;
    width: 0;
    height: 0;
    border-top: 17px solid transparent;
    border-bottom: 17px solid transparent;
    border-right: 17px solid #ffffff;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .speech-tail {
        left: 50%;
        top: -20px;
        transform: translateX(-50%);
        border-left: 20px solid transparent;
        border-right: 20px solid transparent;
        border-bottom: 20px solid #8b6e51;
        border-top: none;
    }
    
    .speech-tail::after {
        left: -17px;
        top: 3px;
        border-left: 17px solid transparent;
        border-right: 17px solid transparent;
        border-bottom: 17px solid #ffffff;
        border-top: none;
    }
}

@media (max-width: 768px) {
    .speech-bubble {
        padding: 1.5rem 2rem;
        border-radius: 20px;
        margin-top: 2rem;
    }
    
    .speech-bubble-content {
        font-size: 1rem;
    }
    
    .character-container img {
        width: 200px;
    }
}

/* Character Message Section with Circular Avatar */
.character-message-section {
    padding: 2rem;
}

.character-avatar {
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.character-face {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center top;
    border: 6px solid #8b6e51;
    box-shadow: 
        0 15px 40px rgba(139, 110, 81, 0.35),
        0 8px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.character-face:hover {
    transform: scale(1.05);
    box-shadow: 
        0 12px 35px rgba(139, 110, 81, 0.3),
        0 6px 20px rgba(0, 0, 0, 0.15);
}

.character-speech-bubble {
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    border: 2px solid #8b6e51;
    border-radius: 20px;
    padding: 1.5rem 2rem;
    margin-left: 1rem;
    box-shadow: 
        0 8px 25px rgba(139, 110, 81, 0.12),
        0 4px 15px rgba(0, 0, 0, 0.08);
}

.speech-content {
    color: #2d2016;
    font-weight: 500;
    line-height: 1.7;
}

.speech-tail-left {
    position: absolute;
    left: -18px;
    top: 50px;
    width: 0;
    height: 0;
    border-top: 18px solid transparent;
    border-bottom: 18px solid transparent;
    border-right: 18px solid #8b6e51;
}

.speech-tail-left::after {
    content: '';
    position: absolute;
    left: 3px;
    top: -15px;
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-right: 15px solid #ffffff;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .character-message-section {
        padding: 1.5rem 1rem;
    }
    
    .character-message-section .flex {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    
    .character-face {
        width: 130px;
        height: 130px;
    }
    
    .character-speech-bubble {
        margin-left: 0;
        margin-top: 1rem;
        text-align: center;
    }
    
    .speech-tail-left {
        left: 50%;
        top: -12px;
        transform: translateX(-50%);
        border-left: 12px solid transparent;
        border-right: 12px solid transparent;
        border-bottom: 12px solid #8b6e51;
        border-top: none;
    }
    
    .speech-tail-left::after {
        left: -10px;
        top: 2px;
        border-left: 10px solid transparent;
        border-right: 10px solid transparent;
        border-bottom: 10px solid #ffffff;
        border-top: none;
    }
    
    .speech-content {
        font-size: 1rem;
    }
}



/* Enhanced Limited Event Badge */
.hero-badge-container {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.limited-event-badge-enhanced {
    background: linear-gradient(135deg, 
        #8b6e51 0%, 
        #a67c5a 20%, 
        #d4af37 40%, 
        #b8860b 60%, 
        #a67c5a 80%, 
        #8b6e51 100%);
    color: #ffffff;
    padding: 16px 32px;
    border-radius: 50px;
    border: 3px solid rgba(255, 255, 255, 0.9);
    box-shadow: 
        0 8px 25px rgba(139, 110, 81, 0.3),
        0 4px 15px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    text-shadow: 
        0 1px 2px rgba(0, 0, 0, 0.6),
        0 2px 4px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
    font-weight: 700;
    font-size: 1.125rem;
    letter-spacing: 0.05em;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.badge-glow {
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(135deg, #8b6e51, #d4af37, #8b6e51);
    border-radius: 50px;
    opacity: 0.4;
    z-index: -1;
}

.badge-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.3) 45%, 
        rgba(255, 255, 255, 0.4) 50%, 
        rgba(255, 255, 255, 0.3) 55%, 
        transparent 100%);
    animation: badgeShine 6s infinite;
    z-index: 1;
}

.badge-text {
    position: relative;
    z-index: 2;
    font-weight: 900;
}

@keyframes badgeShine {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Hero Typography - Maximum Visual Impact */
.hero-title-container {
    margin-bottom: 3rem;
}

.hero-main-title {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.title-line-1, .title-line-2, .title-line-3 {
    display: block;
    margin-bottom: 0.5rem;
    opacity: 0;
    transform: translateY(30px);
}

.title-line-1 {
    font-size: clamp(1.8rem, 5vw, 3.5rem);
}

.title-line-2 {
    font-size: clamp(2rem, 6vw, 4rem);
}

.title-line-3 {
    font-size: clamp(2.5rem, 8vw, 5.5rem);
    margin-top: 0.25rem;
}

.highlight-word {
    color: #d4af37;
    text-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.6),
        0 4px 8px rgba(0, 0, 0, 0.3);
    display: inline-block;
    position: relative;
}

.normal-word {
    color: #ffffff;
    text-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.6),
        0 4px 8px rgba(0, 0, 0, 0.4);
}

.accent-word {
    color: #a67c5a;
    text-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.6),
        0 4px 8px rgba(0, 0, 0, 0.3);
    display: inline-block;
}

.mega-word {
    background: linear-gradient(135deg, #8b6e51 0%, #7a5f47 30%, #6d5635 60%, #4a3728 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 3px 6px rgba(139, 110, 81, 0.25);
    display: inline-block;
    position: relative;
}

.mega-word-enhanced {
    background: rgba(139, 110, 81, 0.9);
    color: #ffffff;
    text-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.6),
        0 4px 8px rgba(0, 0, 0, 0.3);
    display: inline-block;
    position: relative;
    padding: 12px 24px;
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.2),
        0 2px 8px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    font-weight: 700;
    letter-spacing: 0.02em;
    transition: all 0.3s ease;
}

.mega-word-enhanced:hover {
    background: rgba(139, 110, 81, 1);
    box-shadow: 
        0 6px 20px rgba(0, 0, 0, 0.25),
        0 3px 10px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 255, 255, 1);
}



/* Hero Subtitle */
.hero-subtitle-container {
    margin-bottom: 4rem;
}

.hero-subtitle {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    line-height: 1.4;
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(20px);
}

.subtitle-highlight {
    color: #fbbf24;
    font-weight: 700;
    text-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.6),
        0 0 15px rgba(251, 191, 36, 0.3);
}

.subtitle-normal {
    color: #ffffff;
    font-weight: 600;
    text-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.8),
        0 4px 8px rgba(0, 0, 0, 0.6);
}

.hero-description {
    font-size: clamp(1rem, 2.5vw, 1.375rem);
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    line-height: 1.6;
    opacity: 0;
    transform: translateY(20px);
    text-shadow: 
        0 1px 2px rgba(0, 0, 0, 0.6),
        0 2px 4px rgba(0, 0, 0, 0.4);
}

.description-accent {
    color: #10b981;
    font-weight: 700;
    text-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.6),
        0 0 10px rgba(16, 185, 129, 0.3);
}

/* Modern Wood Loading Animation */
.wood-modern-loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(139, 110, 81, 0.3);
    border-radius: 50%;
    border-top-color: #8b6e51;
    animation: spin 1.2s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Coordinator Guide Badge */
.coordinator-guide-badge {
    text-align: center;
}

.guide-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(139, 110, 81, 0.2);
    border-radius: 25px;
    padding: 8px 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(20px);
}

.guide-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.guide-text {
    font-size: 0.875rem;
    font-weight: 600;
    color: #654321;
    letter-spacing: 0.025em;
}

/* Hero Event Card - Premium Design */
.hero-event-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 24px;
    padding: 2.5rem;
    margin: 0 auto 3rem;
    max-width: 800px;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.15),
        0 10px 20px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.event-card-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #8b6e51, #d4af37, #8b6e51);
    border-radius: 24px;
    opacity: 0.2;
    z-index: -1;
}



.event-info-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
}

.event-info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.event-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #8b6e51 0%, #654321 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.5rem;
    box-shadow: 0 8px 20px rgba(139, 110, 81, 0.3);
    flex-shrink: 0;
}

.event-details {
    flex: 1;
}

.event-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #6b5142;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.event-value {
    font-size: 1.125rem;
    font-weight: 700;
    color: #2d2016;
    line-height: 1.4;
}

.event-dates {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.date-highlight {
    background: linear-gradient(135deg, #8b6e51 0%, #6d5635 100%);
    color: #ffffff;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 3px 6px rgba(139, 110, 81, 0.2);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

.event-time {
    font-size: 1rem;
    color: #8b6e51;
    font-weight: 600;
}

.venue-name {
    font-size: 1.25rem;
    background: linear-gradient(135deg, #8b6e51 0%, #6d5635 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.event-info-divider {
    width: 2px;
    height: 80px;
    background: linear-gradient(to bottom, 
        transparent 0%, 
        #8b6e51 20%, 
        #654321 50%, 
        #8b6e51 80%, 
        transparent 100%);
    border-radius: 2px;
    justify-self: center;
}

/* Hero CTA Button - Maximum Impact */
.hero-cta-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.cta-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    opacity: 0;
    transform: scale(0.9);
}

.hero-cta-button {
    background: linear-gradient(135deg, 
        #8b6e51 0%, 
        #7a5f47 25%, 
        #6d5635 50%, 
        #7a5f47 75%, 
        #8b6e51 100%);
    color: #ffffff;
    padding: 20px 48px;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 8px 25px rgba(139, 110, 81, 0.25),
        0 4px 15px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-bg-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #8b6e51, #d4af37, #8b6e51);
    border-radius: 50px;
    opacity: 0.5;
    z-index: -1;
    transition: all 0.3s ease;
}

.hero-cta-button:hover .cta-bg-glow {
    background: linear-gradient(135deg, #ffffff, #f8f9fa, #ffffff);
    opacity: 0.8;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
}

.cta-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    z-index: 2;
}

.cta-icon {
    font-size: 1.5rem;
    animation: iconBounce 2s ease-in-out infinite;
}

.cta-text {
    font-weight: 900;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.cta-arrow {
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}

.cta-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.2) 45%, 
        rgba(255, 255, 255, 0.3) 50%, 
        rgba(255, 255, 255, 0.2) 55%, 
        transparent 100%);
    animation: ctaShine 5s infinite;
    z-index: 1;
}

.hero-cta-button:hover {
    transform: scale(1.05) translateY(-2px);
    background: linear-gradient(135deg, 
        #7a5f47 0%, 
        #6d5635 25%, 
        #5c422f 50%, 
        #6d5635 75%, 
        #7a5f47 100%);
    box-shadow: 
        0 0 60px rgba(255, 255, 255, 0.8),
        0 0 120px rgba(255, 255, 255, 0.6),
        0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.4);
}

.hero-cta-button:hover .cta-arrow {
    transform: translateX(4px);
}

.cta-urgency {
    background: linear-gradient(135deg, #d4af37 0%, #b8860b 100%);
    color: #1f2937;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 600;
    text-align: center;
    box-shadow: 0 6px 15px rgba(212, 175, 55, 0.2);
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.6);
}

@keyframes ctaShine {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Hero Features */
.hero-features-container {
    display: flex;
    justify-content: center;
}

.hero-features {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 1rem 2rem;
    opacity: 0;
    transform: translateY(20px);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ffffff;
}

.feature-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    box-shadow: 0 4px 8px rgba(16, 185, 129, 0.3);
}

.feature-text {
    font-size: 0.875rem;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}

.feature-divider {
    width: 1px;
    height: 24px;
    background: linear-gradient(to bottom, 
        transparent 0%, 
        rgba(255, 255, 255, 0.5) 50%, 
        transparent 100%);
}

/* Modern Wood Success Message */
.wood-modern-success {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(16, 185, 129, 0.2);
    text-align: center;
    margin-top: 1rem;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.15);
}

.wood-modern-success.show {
    opacity: 1;
    transform: translateY(0);
}

/* Modern Wood Error Message */
.wood-modern-error {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(239, 68, 68, 0.2);
    text-align: center;
    margin-top: 1rem;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(239, 68, 68, 0.15);
}

.wood-modern-error.show {
    opacity: 1;
    transform: translateY(0);
}

/* Modern Wood Scroll to Top Button */
.wood-modern-scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #8b6e51 0%, #654321 100%);
    color: white;
    border: 2px solid rgba(139, 110, 81, 0.2);
    border-radius: 16px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(101, 67, 33, 0.15);
}

.wood-modern-scroll-top.show {
    opacity: 1;
    visibility: visible;
}

.wood-modern-scroll-top:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 30px rgba(101, 67, 33, 0.2);
}

/* Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus Styles */
a:focus, button:focus, input:focus, select:focus {
    outline: 2px solid #8b6e51;
    outline-offset: 2px;
    border-radius: 4px;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .text-wood-modern-muted {
        color: #2d2016 !important;
    }
    
    .text-wood-modern-secondary {
        color: #1a1409 !important;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* Modern Wood Spacing */
.wood-modern-spacing-xs { margin: 0.5rem; }
.wood-modern-spacing-sm { margin: 1rem; }
.wood-modern-spacing-md { margin: 1.5rem; }
.wood-modern-spacing-lg { margin: 2rem; }
.wood-modern-spacing-xl { margin: 3rem; }

/* Renovation Image Styles */
.renovation-image {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.renovation-image:hover img {
    transform: scale(1.05);
}

.renovation-image img {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.price-highlight {
    background: linear-gradient(135deg, #8b6e51 0%, #654321 100%);
    box-shadow: 0 8px 32px rgba(101, 67, 33, 0.2);
}

.feature-number {
    background: linear-gradient(135deg, #8b6e51 0%, #654321 100%);
    box-shadow: 0 4px 12px rgba(101, 67, 33, 0.3);
}