/* Base Variables */
:root {
    --bg-color: #121212;
    --text-color: #e0e0e0;
    --accent-color: #c9a46a; /* Gold/Paper color */
    --accent-hover: #b08d55;
    --card-bg: rgba(255, 255, 255, 0.05);
    --border-color: rgba(255, 255, 255, 0.1);
    --font-heading: 'Shippori Mincho', serif;
    --font-body: 'Noto Sans JP', sans-serif;
    --glass-blur: 10px;
    --transition-speed: 0.3s;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none; /* Custom cursor */
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-speed);
}

ul {
    list-style: none;
}

/* Custom Cursor */
.cursor-dot,
.cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 9999;
    pointer-events: none;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent-color);
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 1px solid var(--accent-color);
    transition: width 0.2s, height 0.2s, background-color 0.2s;
}

body:hover .cursor-outline {
    width: 60px;
    height: 60px;
    background-color: rgba(201, 164, 106, 0.1);
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 0;
    background: rgba(18, 18, 18, 0.8);
    backdrop-filter: blur(var(--glass-blur));
    z-index: 100;
    border-bottom: 1px solid var(--border-color);
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--accent-color);
    letter-spacing: 0.1em;
}

.sub-logo {
    display: block;
    font-size: 0.8rem;
    color: var(--text-color);
    opacity: 0.7;
    margin-top: -5px;
    font-family: var(--font-body);
    letter-spacing: 0.2em;
}

.main-nav ul {
    display: flex;
    gap: 30px;
}

.main-nav a {
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    position: relative;
    padding-bottom: 5px;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 1px;
    background-color: var(--accent-color);
    transition: width var(--transition-speed);
}

.main-nav a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
    /* Placeholder gradient background until image is added */
    background: radial-gradient(circle at center, #2c3e50, #000000); 
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1.5s ease forwards 0.5s;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    line-height: 1.4;
    margin-bottom: 2rem;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.hero-title .line {
    display: block;
}

.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.1em;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.9rem;
    transition: var(--transition-speed);
    background: transparent;
}

.cta-button:hover {
    background: var(--accent-color);
    color: #000;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0.7;
}

.scroll-indicator span {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    writing-mode: vertical-rl;
}

.scroll-indicator .line {
    width: 1px;
    height: 60px;
    background: var(--text-color);
    animation: scrollLine 2s infinite;
}

@keyframes scrollLine {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Philosophy Section */
.philosophy-section {
    padding: 120px 20px;
    background-color: #1a1a1a;
    position: relative;
}

.philosophy-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 40px;
    color: var(--accent-color);
    letter-spacing: 0.1em;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: var(--accent-color);
    margin: 20px auto 0;
}

.lead-text {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 40px;
    line-height: 1.8;
}

.text-block p {
    margin-bottom: 25px;
    color: rgba(224, 224, 224, 0.8);
    font-size: 1rem;
    line-height: 2;
}

/* Spaces Section */
.spaces-section {
    padding: 100px 20px;
}

.section-subtitle {
    text-align: center;
    margin-bottom: 60px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-top: -30px;
}

.spaces-section .container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.property-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    padding: 0 20px;
}

.property-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    overflow: hidden;
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
    text-align: left;
    position: relative;
}

.property-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    border-color: var(--accent-color);
}

.card-image {
    height: 200px;
    width: 100%;
    position: relative;
    /* Styles for placeholder only, remove when images added */
    display: flex;
    justify-content: center;
    align-items: center;
    color: rgba(255,255,255,0.2);
    font-size: 2rem;
}

.tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(0,0,0,0.7);
    color: #fff;
    padding: 5px 10px;
    font-size: 0.7rem;
    border: 1px solid var(--border-color);
    letter-spacing: 0.1em;
}

.card-content {
    padding: 30px;
}

.property-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #fff;
}

.property-desc {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 20px;
    line-height: 1.6;
    height: 4.8em; /* limit line height */
    overflow: hidden;
}

.property-specs {
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 15px 0;
    margin-bottom: 20px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
}

.property-specs li {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.8);
    display: flex;
}

.property-specs span {
    color: var(--accent-color);
    width: 60px;
    display: inline-block;
    font-weight: bold;
}

.details-link {
    display: inline-block;
    font-size: 0.85rem;
    color: var(--text-color);
    border-bottom: 1px solid var(--accent-color);
    padding-bottom: 2px;
}

.details-link:hover {
    color: var(--accent-color);
}

/* Contact Section */
.contact-section {
    padding: 100px 20px;
    background: #151515;
    text-align: center;
}

.contact-box {
    max-width: 600px;
    margin: 0 auto;
    padding: 60px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 4px;
}

.contact-box p {
    margin-bottom: 40px;
    color: rgba(255,255,255,0.7);
}

.contact-button {
    display: inline-block;
    padding: 15px 50px;
    background: var(--accent-color);
    color: #000;
    font-weight: bold;
    border-radius: 2px;
}

.contact-button:hover {
    background: var(--accent-hover);
}

/* Footer */
.site-footer {
    padding: 40px 20px;
    border-top: 1px solid var(--border-color);
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
}

.footer-note {
    margin-top: 10px;
    font-size: 0.7rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .property-grid {
        grid-template-columns: 1fr;
    }
    
    .site-header {
        padding: 10px 0;
    }
    
    .logo {
        font-size: 1.2rem;
    }
}


/* Lifestyle Comparison */
.lifestyle-comparison {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 50px 0;
    flex-wrap: wrap;
}

.lifestyle-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    padding: 30px;
    text-align: center;
    border-radius: 8px;
    width: 250px;
}

.lifestyle-card h4 {
    font-family: var(--font-heading);
    margin-bottom: 20px;
    color: var(--accent-color);
    font-size: 1.1rem;
}

.lifestyle-card .step {
    font-size: 0.9rem;
    margin: 10px 0;
    opacity: 0.8;
}

.lifestyle-card .arrow,
.lifestyle-card .plus {
    font-size: 1.2rem;
    color: var(--border-color);
    margin: 5px 0;
}

.lifestyle-card .highlight {
    font-weight: bold;
    color: #fff;
    border: 1px solid var(--accent-color);
    padding: 5px;
    margin: 10px auto;
    width: fit-content;
}

.lifestyle-card .note {
    margin-top: 20px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.lifestyle-card.old .note { color: #ff5252; opacity: 0.7; }
.lifestyle-card.new .note { color: #64ffda; opacity: 0.8; }

.vs {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 600px) {
    .lifestyle-comparison {
        flex-direction: column;
    }
}

