:root {
    /* Colors - Premium Dark & Gold */
    --c-bg-body: #0a0a0a;
    /* Deep black for luxury */
    --c-bg-dark: #121212;
    --c-bg-card: rgba(255, 255, 255, 0.03);
    --c-text-main: #e0e0e0;
    /* Off-white for readability */
    --c-text-muted: #a0a0a0;
    --c-text-light: #ffffff;
    --c-accent: #c5a059;
    /* Muted Gold */
    --c-accent-glow: rgba(197, 160, 89, 0.3);
    --c-line: rgba(255, 255, 255, 0.1);
    --glass-bg: rgba(18, 18, 18, 0.7);
    --glass-border: rgba(255, 255, 255, 0.1);

    /* Typography */
    --font-serif: "Shippori Mincho", serif;
    --font-heading: var(--font-serif);
    --font-sans: "Outfit", sans-serif;

    /* Spacing */
    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 24px;
    --space-lg: 48px;
    --space-xl: 96px;
    --space-xxl: 160px;

    /* Layout */
    --container-width: 100%;
    --container-max: 1200px;
    --header-height: 80px;
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background-color: var(--c-bg-body);
    color: var(--c-text-main);
    line-height: 1.6;
    letter-spacing: 0.03em;
    -webkit-font-smoothing: antialiased;
}

/* Adjust body padding for mobile CTA bar */
@media (max-width: 768px) {
    body {
        padding-bottom: calc(70px + env(safe-area-inset-bottom));
    }
}

h1,
h2,
h3,
h4,
.font-heading {
    font-family: var(--font-heading);
    font-weight: 500;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
    /* Subtle rounding for images */
}

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

a:hover {
    opacity: 0.7;
}

/* Typography Utilities */
.text-tate {
    writing-mode: vertical-rl;
    text-orientation: upright;
    letter-spacing: 0.2em;
}

.font-heading {
    font-family: var(--font-heading);
    font-weight: 500;
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

/* Line-break & Width Utilities */
.text-balanced {
    text-wrap: balance;
    max-width: 65ch;
    margin-left: auto;
    margin-right: auto;
}

.text-intro {
    font-size: clamp(1rem, 1.1vw, 1.15rem);
    max-width: 65ch;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: var(--space-lg);
    line-height: 1.8;
}

.text-note {
    font-size: 0.85rem;
    opacity: 0.8;
    margin-top: var(--space-sm);
    max-width: 65ch;
    margin-left: auto;
    margin-right: auto;
}

/* Section Utilities */
.section {
    padding: var(--space-xl) var(--space-md);
    position: relative;
    overflow: hidden;
}

/* Theme System */
.theme-light {
    background-color: #fcfaf5 !important;
    color: #111 !important;
}

.theme-light .font-heading,
.theme-light h1,
.theme-light h2,
.theme-light h3,
.theme-light h4,
.theme-light p,
.theme-light li,
.theme-light .scan-bold {
    color: #111 !important;
}

.theme-light .faq-q,
.theme-light .faq-a {
    color: #111 !important;
}

.theme-light .faq-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1) !important;
}

.theme-light .faq-q::after {
    color: var(--c-accent) !important;
}

.theme-light .btn-contact {
    border-color: #111 !important;
    color: #111 !important;
}

.theme-light .btn-contact:hover {
    background: #111 !important;
    color: #fff !important;
}

.theme-dark {
    background-color: var(--c-bg-body) !important;
    color: var(--c-text-main) !important;
}

.theme-dark .font-heading,
.theme-dark h1,
.theme-dark h2,
.theme-dark h3,
.theme-dark h4,
.theme-dark p,
.theme-dark li,
.theme-dark .scan-bold {
    color: var(--c-text-light) !important;
}

.theme-dark .faq-q,
.theme-dark .faq-a {
    color: var(--c-text-light) !important;
}

.theme-dark .faq-item {
    border-bottom: 1px solid var(--c-line) !important;
}

.theme-dark .btn-contact {
    border-color: var(--c-text-light) !important;
    color: var(--c-text-light) !important;
}

.theme-dark .btn-contact:hover {
    background: var(--c-text-light) !important;
    color: #000 !important;
}

/* Nuestro Servicio Section */
.nuestro-servicio-section {
    position: relative;
    padding: var(--space-xl) 0;
    background-color: #000;
    background-image: url('../assets/images/service_bg_dark.png');
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    color: #fff;
    overflow: hidden;
}

/* Optional overlay to ensure text readability if needed */
.nuestro-servicio-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    /* Subtle dark overlay */
    pointer-events: none;
    z-index: 1;
}

.service-title,
.service-container {
    position: relative;
    z-index: 2;
}

.service-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 5vw, 3rem);
    text-align: center;
    margin-bottom: var(--space-md);
    position: relative;
}

.service-title::after {
    content: '';
    display: block;
    width: 150px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--c-accent), transparent);
    margin: 20px auto 0;
}

.service-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 var(--space-md);
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-card {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.service-card-inner {
    background: #000;
    border: 1px solid rgba(197, 160, 89, 0.4);
    padding: 30px 40px 30px 60px;
    width: 80%;
    position: relative;
    transition: transform 0.3s ease, border-color 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.service-card-inner:hover {
    border-color: var(--c-accent);
    transform: translateY(-5px);
}

.service-number {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid var(--c-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--c-accent);
    background: #000;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.8);
}

.service-number::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border: 1px solid rgba(197, 160, 89, 0.3);
    border-radius: 50%;
}

.service-card.left-stagger {
    justify-content: flex-start;
}

.service-card.right-stagger {
    justify-content: flex-end;
}

.service-card.left-stagger .service-number {
    left: -40px;
}

.service-card.right-stagger .service-number {
    right: -40px;
}

.service-card.right-stagger .service-card-inner {
    padding: 30px 60px 30px 40px;
    text-align: right;
}

.service-h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #fff;
    border-bottom: 1px solid rgba(197, 160, 89, 0.3);
    display: inline-block;
    padding-bottom: 5px;
    letter-spacing: 0.05em;
}

.service-p {
    font-size: 1rem;
    line-height: 1.8;
    color: #fff;
    opacity: 0.9;
}

@media (max-width: 768px) {

    .service-card,
    .service-card.right-stagger {
        justify-content: center;
    }

    .service-card-inner {
        width: 100%;
        padding: 50px 20px 30px !important;
        text-align: center !important;
    }

    .service-number {
        top: -40px;
        left: 50% !important;
        right: auto !important;
        transform: translateX(-50%);
    }
}

/* Utility: Mobile only elements */
.mobile-only {
    display: none;
}

@media (max-width: 768px) {
    .mobile-only {
        display: block;
    }
}

/* Header */
#main-header {
    position: fixed;
    top: 0;
    width: 100%;
    height: var(--header-height);
    padding: 0 var(--space-md);
    z-index: 100;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

#main-header .logo {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--c-accent);
    letter-spacing: 0.05em;
}

.btn-menu {
    background: none;
    border: 1px solid var(--c-accent);
    color: var(--c-text-light);
    font-family: var(--font-sans);
    font-size: 0.9rem;
    padding: 8px 20px;
    cursor: pointer;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-menu:hover {
    background: var(--c-accent);
    color: black;
}

/* Container */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* Villa Section Layout (Full Width Image with Title Above) */
.villa-section {
    padding: var(--space-xl) 0;
    background-color: #fafafa;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.villa-container {
    width: 100%;
    /* Removed max-width to allow full bleed image */
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.villa-heading {
    /* Title above image */
    font-size: clamp(1rem, 4.2vw, 2.2rem);
    font-weight: 500;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 var(--space-md);
    line-height: 1.4;
    color: var(--c-text-main);
}

.villa-image-wrapper {
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
    aspect-ratio: 16 / 9;
    position: relative;
    overflow: hidden;
}

.villa-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Overlay styles removed as requested */

.villa-body {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 var(--space-md);
    /* Add padding since section has none */
}

.villa-body p {
    margin-bottom: 24px;
    /* Clear spacing between paragraphs */
    line-height: 1.8;
    color: var(--c-text-main);
    font-size: 1rem;
}

/* Navigation Overlay */
#nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.nav-link {
    color: white;
    font-size: 1.35rem;
    font-family: var(--font-serif);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 10px 0;
    display: inline-block;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1px;
    background: var(--c-accent);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

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

#menu-close {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    background: none;
    border: none;
    color: var(--c-text-muted);
    font-family: var(--font-sans);
    font-size: 0.9rem;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: color 0.3s ease;
}

#menu-close:hover {
    color: var(--c-accent);
}

#nav-overlay ul {
    list-style: none;
    text-align: center;
}

#nav-overlay li {
    margin-bottom: var(--space-md);
}

.nav-link.accent {
    color: var(--c-accent);
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    /* Center vertically specifically */
    justify-content: center;
    /* Center align */
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.7) 100%);
    /* Dark overlay for text readability */
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    color: white;
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-md);
    padding-top: 60px;
    /* Offset for header */
    text-align: center;
    /* Center text */
}

.hero-title {
    font-size: clamp(2.2rem, 8vw, 4.5rem);
    /* Adjusted for visual balance */
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: 0.15em;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    color: white;
}

.hero-subtitle {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.8;
    letter-spacing: 0.1em;
    color: #ffffff;
    margin-bottom: 2.5rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.hero-tagline {
    display: block;
    color: #fff !important;
    font-size: clamp(1.2rem, 3.5vw, 1.8rem);
    line-height: 1.6;
    letter-spacing: 0.2em;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
    margin-top: 1rem;
}

.hero-subtitle .line-1 {
    display: block;
    font-size: clamp(1.4rem, 4vw, 2.2rem);
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

@media (max-width: 768px) {

    .hero-tagline .line-2,
    .hero-tagline .line-3 {
        display: block;
        margin: 0.2rem 0;
    }
}

@media (min-width: 768px) {
    .hero-subtitle {
        display: flex;
        justify-content: center;
        gap: 0.5em;
    }

    .hero-subtitle span {
        display: inline;
    }
}

.hero-cta {
    margin-top: 2rem;
}

.btn-hero {
    display: inline-block;
    background-color: transparent;
    color: white;
    border: 1px solid var(--c-accent);
    padding: 18px 48px;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--c-accent);
    transition: width 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: -1;
}

.btn-hero:hover {
    color: black;
}

.btn-hero:hover::before {
    width: 100%;
}

/* Intro Dark ("Who We Are") - with Washi Texture */
.section-dark {
    background-color: #0b0b0b;
    color: white;
    padding: 120px var(--space-md);
    position: relative;
    overflow: hidden;
}

/* Layer 1: Washi texture background */
.section-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../assets/washi-unryu.png');
    background-repeat: repeat;
    background-size: 1000px;
    opacity: 0.10;
    z-index: 1;
    pointer-events: none;
}

/* Layer 2: Dark overlay + left-to-right gradient for readability */
.section-dark::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(to right, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.82) 50%, rgba(0, 0, 0, 0.76) 100%),
        rgba(0, 0, 0, 0.82);
    z-index: 2;
    pointer-events: none;
}

/* Content container for optimal readability */
.section-dark .container {
    max-width: 760px;
    position: relative;
    z-index: 3;
}

.intro-heading {
    font-size: 2.2rem;
    margin-bottom: var(--space-md);
    color: white;
    font-weight: 500;
    position: relative;
    z-index: 3;
}

.intro-text {
    font-size: 1.1rem;
    line-height: 1.9;
    max-width: 100%;
    margin: 0;
    opacity: 0.95;
    position: relative;
    z-index: 3;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .section-dark {
        padding: 80px var(--space-md);
    }

    .intro-heading {
        font-size: 1.8rem;
    }

    .intro-text {
        font-size: 1.05rem;
        line-height: 1.85;
    }
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    /* Adjust Hero height for mobile */
    .hero {
        height: 75vh;
        min-height: 500px;
    }

    /* Crop bottom part (tatami) on mobile */
    .hero-bg {
        object-position: top center;
    }
}


/* Mobile First Adjustments */
@media (min-width: 768px) {
    :root {
        --space-xl: 120px;
        --space-xxl: 200px;
    }
}

/* Animations */
.fade-in-section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1.2s ease-out, transform 1.2s ease-out;
    will-change: opacity, transform;
}

.fade-in-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Timeline (Model Case) */
.timeline {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    padding: 30px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../assets/images/dark_japanese_timeline_bg.png');
    background-color: #111;
    background-size: cover;
    background-position: center;
    color: white;
}

@media (max-width: 768px) {
    .timeline {
        padding: 12px 10px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 20px;
    width: 1px;
    background: var(--c-line);
}

@media (max-width: 768px) {
    .timeline::before {
        left: 20px;
    }
}

.timeline-item {
    position: relative;
    margin-bottom: var(--space-md);
    padding-left: 45px;
}

@media (max-width: 768px) {
    .timeline-item {
        margin-bottom: 6px;
        padding-left: 32px;
    }
}

.timeline,
.timeline * {
    color: #ffffff !important;
}

.timeline-item p {
    color: #ffffff !important;
    opacity: 1;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 768px) {
    .timeline-item p {
        font-size: 0.85rem;
        line-height: 1.4;
        word-break: normal;
        overflow-wrap: break-word;
    }
}

.timeline-time {
    font-size: 0.85rem;
    color: var(--c-accent);
    margin-bottom: 0px;
    font-family: var(--font-serif);
    font-weight: 500;
}

.timeline-dot {
    position: absolute;
    left: 16px;
    top: 6px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--c-bg-body);
    border: 1px solid var(--c-accent);
}

@media (max-width: 768px) {
    .timeline-dot {
        left: 3.5px;
        top: 6px;
    }
}

/* Comparison (Difference) */
.comparison-list {
    list-style: none;
    max-width: 700px;
    margin: 0 auto;
}

.comparison-item {
    display: flex;
    justify-content: space-between;
    padding: var(--space-md) 0;
    border-bottom: 1px solid var(--c-line);
}

.comparison-label {
    opacity: 0.6;
    font-size: 0.9rem;
}

.comparison-value {
    font-weight: 500;
}

/* FAQ Accordion */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--c-line);
}

.faq-q {
    font-weight: 600;
    padding: var(--space-md) 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    list-style: none;
    /* Hide default triangle */
    outline: none;
    user-select: none;
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--c-text-main);
}

.faq-q::-webkit-details-marker {
    display: none;
    /* Hide for Safari */
}

/* Icon (Plus/Minus) */
.faq-q::after {
    content: '+';
    font-family: var(--font-sans);
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--c-accent);
    transition: transform 0.2s ease;
    margin-left: 20px;
}

.faq-item[open] .faq-q::after {
    content: '−';
    /* Unicode minus sign */
}

.faq-q::before {
    content: 'Q.';
    color: var(--c-accent);
    margin-right: 12px;
    font-family: var(--font-serif);
    font-weight: 500;
}

.faq-a {
    font-size: 0.95rem;
    opacity: 0.9;
    padding-left: 30px;
    padding-bottom: var(--space-md);
    line-height: 1.8;
    color: var(--c-text-main);
}

/* Subtle fade-in for answer */
.faq-item[open] .faq-a {
    animation: fadeInFAQ 0.3s ease-out;
}

@keyframes fadeInFAQ {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 0.9;
        transform: translateY(0);
    }
}

/* Large tap area for mobile */
@media (max-width: 768px) {
    .faq-q {
        padding: 20px 0;
    }
}

/* Trust Badges */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.trust-item {
    background: white;
    padding: var(--space-md);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

/* Model Case Slider (Mobile Horizontal Scroll) */
.model-case-container {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding: 0 20px var(--space-md) 20px;
    scroll-padding: 0 20px;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    box-sizing: border-box;
}

.model-case-card {
    background: white;
    padding: var(--space-md);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    min-width: 85vw;
    /* Show peeking of next card */
    scroll-snap-align: center;
    border-radius: 4px;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .model-case-card {
        padding: 12px 6px;
        width: 82vw;
        max-width: 82vw;
        box-sizing: border-box;
        min-width: 0;
        scroll-snap-align: start;
        overflow: hidden;
    }
}

.model-case-card h3 {
    margin-bottom: var(--space-md);
    border-bottom: 1px solid var(--c-line);
    padding-bottom: 10px;
    font-size: 1.4rem;
}

@media (max-width: 768px) {
    .model-case-card h3 {
        font-size: 1.25rem;
        margin-bottom: var(--space-sm);
        padding-bottom: 8px;
    }
}

@media (min-width: 768px) {
    .model-case-container {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        overflow-x: visible;
        scroll-snap-type: none;
        padding-bottom: 0;
    }

    .model-case-card {
        min-width: auto;
        margin-bottom: 0;
        box-shadow: none;
        /* Reset or keep shadow depending on preference, keeping for consistency */
        border: 1px solid var(--c-line);
        /* Add subtle border for grid */
    }
}

/* Mobile Readability Improvements */
@media (max-width: 768px) {
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .text-center {
        text-align: left !important;
    }

    .font-heading {
        text-align: center !important;
    }

    /* Experience Image Layout (Mobile: Image top, Text bottom) */
    /* Experience Image Layout (Mobile: Image top, Text bottom) */
    .experience-item {
        display: flex;
        flex-direction: column;
        margin-bottom: var(--space-xl);
    }

    .experience-img {
        width: 100%;
        margin-bottom: var(--space-md);
        border-radius: 4px;
        /* Slight rounded corners */
        aspect-ratio: 16/9;
        object-fit: cover;
    }
}

/* Desktop Experience Layout */
@media (min-width: 769px) {
    .experience-item {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: var(--space-lg);
        align-items: center;
        margin-bottom: var(--space-xl);
    }

    .experience-item:nth-child(even) {
        direction: rtl;
        /* Zigzag layout */
    }

    .experience-item:nth-child(even)>* {
        direction: ltr;
        /* Reset text direction */
    }

    .experience-img {
        width: 100%;
        border-radius: 4px;
        aspect-ratio: 4/3;
        object-fit: cover;
    }
}

/* Emphasis styling */
.scan-bold {
    font-weight: 700;
    color: var(--c-text-main);
}

/* Contact Button Consistency */
.btn-contact {
    display: inline-block;
    border: 1px solid var(--c-text-main);
    padding: 15px 50px;
    font-size: 1.1rem;
    color: var(--c-text-main);
    letter-spacing: 0.1em;
    transition: all 0.3s;
    text-align: center;
    background: transparent;
    cursor: pointer;
    text-decoration: none;
}

.btn-contact:hover {
    background: var(--c-text-main);
    color: white;
}

/* Experience Grid (For experience.html) */
.experience-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

.experience-card-grid {
    background: white;
    padding: var(--space-md);
    border: 1px solid var(--c-line);
    border-radius: 4px;
    height: 100%;
}

.experience-card-grid .experience-img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    margin-bottom: var(--space-md);
    border-radius: 2px;
}

@media (min-width: 768px) {
    .experience-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .experience-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Experience Slider (For index.html) - reusing model-case principles but ensuring horizontal scroll on all sizes or specific breakpoint */
.experience-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: var(--space-md);
    padding-bottom: var(--space-md);
    -webkit-overflow-scrolling: touch;
}

.experience-slide-card {
    min-width: 320px;
    max-width: 320px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--glass-border);
    padding: var(--space-md);
    scroll-snap-align: center;
    flex-shrink: 0;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-decoration: none;
    color: white;
    display: block;
    backdrop-filter: blur(4px);
}

@media (max-width: 768px) {
    .experience-slider {
        margin-left: calc(var(--space-md) * -1);
        margin-right: calc(var(--space-md) * -1);
        padding-left: var(--space-md);
        padding-right: var(--space-md);
        gap: 16px;
    }

    .experience-slide-card {
        min-width: 85%;
        max-width: 85%;
        flex-basis: 85%;
        scroll-snap-align: start;
        padding: 20px;
    }
}

.experience-slide-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--c-accent);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.experience-slide-card img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    margin-bottom: var(--space-sm);
}

.experience-slide-card h3 {
    font-size: 1.1rem;
    margin-bottom: var(--space-xs);
    font-family: var(--font-heading);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 8px;
    color: white;
}

.experience-slide-card p {
    font-size: 0.9rem;
    opacity: 0.85;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: rgba(255, 255, 255, 0.9);
}

.experiences-main-title {
    font-size: clamp(1.4rem, 5vw, 1.8rem);
    margin-bottom: var(--space-lg);
    line-height: 1.2;
}

.base-content-box {
    max-width: 800px;
    margin: 0 auto;
    margin-bottom: var(--space-xl);
    border: 2px solid #c5a059;
    padding: var(--space-xl) var(--space-lg);
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 50%, #1a1a1a 100%);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(197, 160, 89, 0.2),
        0 0 60px rgba(197, 160, 89, 0.1);
    position: relative;
    border-radius: 2px;
}

.base-content-title {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    margin-bottom: var(--space-md);
    font-weight: 700;
    text-align: center;
    color: #c5a059;
    letter-spacing: 0.1em;
    position: relative;
    z-index: 2;
}

.base-content-list {
    list-style: none;
    margin: 0 auto;
}

/* Washi texture overlay */
.base-content-list::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../assets/washi-unryu.png');
    background-repeat: repeat;
    background-size: 1000px;
    opacity: 0.08;
    pointer-events: none;
    z-index: 1;
}

/* Decorative corner accents */
.base-content-list::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg,
            #c5a059 0%, transparent 10%,
            transparent 90%, #c5a059 100%);
    opacity: 0.3;
    pointer-events: none;
    z-index: 0;
    border-radius: 2px;
}

.base-content-list li {
    padding: var(--space-sm) 0;
    padding-left: 2em;
    text-align: left;
    position: relative;
    border-bottom: 1px solid rgba(197, 160, 89, 0.2);
    color: rgba(255, 255, 255, 0.95);
    z-index: 2;
    font-size: 1.05rem;
    line-height: 1.8;
    transition: all 0.3s ease;
}

.base-content-list li:hover {
    color: #ffffff;
    padding-left: 2.2em;
}

.base-content-list li::before {
    content: '◆';
    position: absolute;
    left: 0.5em;
    color: #c5a059;
    font-size: 0.7em;
    top: 50%;
    transform: translateY(-50%);
}

.base-content-list li:last-child {
    border-bottom: none;
}

.base-content-list li::before {
    color: #c5a059;
}

/* Mobile adjustments for Villa Hero to match Main Hero */
@media (max-width: 768px) {
    .villa-hero {
        height: 75vh;
        min-height: 500px;
    }
}

/* Villa Section Layout */
.villa-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    align-items: center;
}

.villa-text {
    max-width: 600px;
    /* Limit line width for readability */
}

@media (min-width: 900px) {
    .villa-text {
        order: 2;
        padding-left: var(--space-md);
    }
}

/* Fees Process Grid */
.process-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    align-items: start;
}

.process-step {
    padding: var(--space-xs);
    position: relative;
    text-align: center;
}

.step-number {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--c-accent);
    opacity: 0.5;
    line-height: 1;
    font-weight: 700;
    margin-right: 10px;
    margin-bottom: 0;
    position: relative;
    z-index: 0;
    display: inline-block;
    vertical-align: middle;
}

.step-title {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
    display: inline-block;
    vertical-align: middle;
}

.step-desc {
    font-size: 0.95rem;
    opacity: 0.8;
    line-height: 1.6;
    margin-top: 0;
}

@media (min-width: 768px) {
    .process-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-md);
        /* Consistent gap */
        text-align: center;
    }

    .process-step {
        /* No min-height to ensure natural flow and alignment */
        position: relative;
    }
}

/* ============================================
   Fees Section (Refined Quiet Luxury)
   ============================================ */

.fees-section {
    padding: clamp(72px, 10vw, 96px) 0;
    position: relative;
    background-color: transparent;
    /* Wallpaper background is applied in index.html via class if needed, 
       but here we ensure no overlays hide it */
}

.fees-container {
    width: 92vw;
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.fees-title {
    font-family: var(--font-serif);
    font-size: clamp(28px, 5vw, 42px);
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 24px;
    letter-spacing: 0.05em;
}

.fees-rule {
    width: 40px;
    height: 1px;
    background: var(--c-accent);
    margin: 0 auto 32px;
}

.fees-intro {
    font-size: clamp(16px, 2.5vw, 18px);
    line-height: 1.8;
    color: #ffffff;
    margin-bottom: 1.2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.fees-steps {
    display: flex;
    flex-direction: column;
    gap: clamp(28px, 5vw, 36px);
    margin-top: 56px;
    margin-bottom: 56px;
}

.fees-step {
    width: 100%;
}

.fees-number {
    font-family: var(--font-heading);
    font-size: 14px;
    color: var(--c-accent);
    margin-bottom: 12px;
    letter-spacing: 0.2em;
    font-weight: 400;
}

.fees-card {
    background: rgba(255, 255, 250, 0.75);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    padding: clamp(22px, 5vw, 32px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    /* Quiet Luxury: almost no shadow */
}

.fees-card-title {
    font-family: var(--font-serif);
    font-size: clamp(22px, 4vw, 26px);
    margin-bottom: 16px;
    color: #ffffff;
    font-weight: 500;
}

.fees-card-text {
    font-size: clamp(15px, 2.2vw, 17px);
    line-height: 1.75;
    color: #ffffff;
}

.fees-cta-wrap {
    margin-top: 40px;
}

.fees-cta {
    display: inline-block;
    padding: 16px 56px;
    border: 1px solid #1a1a1a;
    background: transparent;
    color: #1a1a1a;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: all 0.4s ease;
}

.fees-cta:hover {
    background: #1a1a1a;
    color: #fff;
    opacity: 1;
}

@media (max-width: 768px) {
    .fees-section {
        padding: 72px 0;
    }

    .fees-container {
        width: 88vw;
    }
}

/* ============================================
   About Section Redesign - Luxury Japanese Aesthetic
   ============================================ */

/* Main About Section Container */
.about-section-luxury {
    background-color: #0a0a0a;
    color: #ffffff;
    padding: 100px var(--space-md) 120px;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

/* Washi texture background layer */
.about-section-luxury::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../assets/washi-unryu.png');
    background-repeat: repeat;
    background-size: 1200px;
    opacity: 0.08;
    z-index: 1;
    pointer-events: none;
}

/* Subtle gradient overlay for depth */
.about-section-luxury::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 2;
    pointer-events: none;
}

/* Content wrapper */
.about-content-wrapper {
    position: relative;
    z-index: 3;
    max-width: 900px;
    margin: 0 auto;
}

/* Title with decorative elements */
.about-title-luxury {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 5vw, 2.8rem);
    font-weight: 500;
    text-align: center;
    margin-bottom: var(--space-xl);
    color: #ffffff;
    letter-spacing: 0.1em;
    position: relative;
    padding-bottom: var(--space-md);
}

/* Decorative line under title */
.about-title-luxury::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 1px;
    background: linear-gradient(to right, transparent, #c5a059, transparent);
}

/* Content cards container */
.about-cards-container {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

/* Individual content card */
.about-content-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: var(--space-lg) var(--space-md);
    border-radius: 2px;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

/* Hover effect for cards */
.about-content-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(197, 160, 89, 0.3);
    transform: translateY(-2px);
}

/* Subtle accent line on left */
.about-content-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(197, 160, 89, 0.5), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.about-content-card:hover::before {
    opacity: 1;
}

/* Card paragraph styling */
.about-content-card p {
    font-size: 1.05rem;
    line-height: 2.2;
    color: rgba(255, 255, 255, 0.92);
    margin: 0;
    letter-spacing: 0.03em;
}

/* Emphasis text (scan-bold) */
.about-content-card .scan-bold {
    font-weight: 600;
    color: #ffffff;
    font-size: 1.15rem;
    display: block;
    margin-bottom: var(--space-sm);
    letter-spacing: 0.05em;
}

/* First card special styling */
.about-content-card:first-child {
    background: rgba(197, 160, 89, 0.08);
    border-color: rgba(197, 160, 89, 0.2);
}

.about-content-card:first-child .scan-bold {
    color: #c5a059;
}

/* Contact button container */
.about-cta-container {
    text-align: center;
    margin-top: var(--space-xxl);
    position: relative;
    z-index: 3;
}

/* Luxury contact button */
.about-btn-contact {
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 18px 60px;
    font-size: 1rem;
    color: #ffffff;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: all 0.4s ease;
    background: rgba(255, 255, 255, 0.02);
    position: relative;
    overflow: hidden;
}

.about-btn-contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(197, 160, 89, 0.2), transparent);
    transition: left 0.6s ease;
}

.about-btn-contact:hover {
    border-color: #c5a059;
    background: rgba(197, 160, 89, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(197, 160, 89, 0.15);
}

.about-btn-contact:hover::before {
    left: 100%;
}

/* Mobile optimizations */
@media (max-width: 768px) {
    .about-section-luxury {
        padding: 80px var(--space-sm) 100px;
    }

    .about-title-luxury {
        font-size: 1.8rem;
        margin-bottom: var(--space-lg);
    }

    .about-content-card {
        padding: var(--space-md) var(--space-sm);
    }

    .about-content-card p {
        font-size: 1rem;
        line-height: 2.0;
    }

    .about-content-card .scan-bold {
        font-size: 1.1rem;
    }

    .about-btn-contact {
        padding: 16px 40px;
        font-size: 0.9rem;
    }

    .about-cta-container {
        margin-top: var(--space-xl);
    }
}

/* Tablet adjustments */
@media (min-width: 769px) and (max-width: 1024px) {
    .about-content-wrapper {
        max-width: 800px;
    }

    .about-content-card {
        padding: var(--space-lg);
    }
}

/* ============================================
   Quienes Somos Section - Image + Text Layout
   ============================================ */

/* Enhanced section-dark for Quienes Somos with image */
.section-dark.quienes-somos-enhanced {
    padding: 100px var(--space-md);
}

/* Content container with title, image and text */
.quienes-somos-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
    align-items: center;
}

/* Title styling */
.quienes-somos-title {
    font-size: clamp(2rem, 5vw, 2.8rem);
    color: white;
    font-weight: 500;
    line-height: 1.3;
    position: relative;
    padding-bottom: var(--space-sm);
    text-align: center;
    width: 100%;
    margin: 0 auto;
}

/* Decorative line under title */
.quienes-somos-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: linear-gradient(to right, transparent, #c5a059, transparent);
}

/* Image container */
.quienes-somos-image-wrapper {
    width: 100%;
    max-width: 600px;
    position: relative;
    overflow: hidden;
    border-radius: 2px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.quienes-somos-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 4/3;
}

/* Text container */
.quienes-somos-text {
    width: 100%;
    max-width: 800px;
    text-align: center;
}

.quienes-somos-text p {
    font-size: 1.1rem;
    line-height: 2.0;
    color: rgba(255, 255, 255, 0.92);
    margin: 0;
    letter-spacing: 0.03em;
}

/* Tablet and Desktop adjustments */
@media (min-width: 768px) {
    .section-dark.quienes-somos-enhanced {
        padding: 120px var(--space-md);
    }

    .quienes-somos-content {
        gap: var(--space-xl);
    }

    .quienes-somos-title {
        font-size: 2.5rem;
        padding-bottom: var(--space-md);
    }

    .quienes-somos-image-wrapper {
        max-width: 700px;
    }

    .quienes-somos-image {
        aspect-ratio: 16/9;
    }

    .quienes-somos-text p {
        font-size: 1.15rem;
        line-height: 2.1;
    }
}

/* Large desktop: increase spacing */
@media (min-width: 1024px) {
    .quienes-somos-content {
        gap: 60px;
    }

    .quienes-somos-title {
        font-size: 2.8rem;
        margin-bottom: var(--space-sm);
    }

    .quienes-somos-image-wrapper {
        max-width: 800px;
    }
}

/* Mobile optimizations */
@media (max-width: 767px) {
    .section-dark.quienes-somos-enhanced {
        padding: 80px var(--space-sm);
    }

    .quienes-somos-content {
        gap: var(--space-md);
    }

    .quienes-somos-title {
        font-size: 2rem;
    }

    .quienes-somos-image-wrapper {
        max-width: 100%;
    }
}

/* Why Us Section */
.why-us-section {
    padding: var(--space-xl) 0;
    background-color: var(--c-bg-body);
}

.why-us-heading {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 5vw, 3rem);
    text-align: center;
    margin-bottom: var(--space-xl);
    color: var(--c-text-light);
    position: relative;
    padding: 0 var(--space-md);
}

.why-us-heading::after {
    content: '';
    display: block;
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--c-accent), transparent);
    margin: 20px auto 0;
}

.why-us-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
    padding: 0 var(--space-md);
}

.why-us-block {
    display: flex;
    flex-direction: column;
}

.why-us-header {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.why-us-line {
    width: 2px;
    height: 32px;
    background-color: var(--c-accent);
    flex-shrink: 0;
}

.why-us-number {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--c-accent);
    line-height: 1;
}

.why-us-title {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    color: var(--c-text-light);
    letter-spacing: 0.05em;
    line-height: 1.2;
}

.why-us-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--c-text-main);
    margin-bottom: var(--space-md);
    padding-left: 18px;
    /* Align with text after line/number */
}

/* Reset padding-left for header alignment */
.why-us-header {
    padding-left: 0;
}

.why-us-image-wrapper {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 4px;
    /* More subtle rounding per screenshot style */
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
    margin-top: var(--space-sm);
}

.why-us-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .why-us-container {
        gap: var(--space-lg);
    }

    .why-us-description {
        padding-left: 0;
        /* Simpler on mobile */
    }

    .why-us-number {
        font-size: 1.5rem;
    }

    .why-us-title {
        font-size: 1.4rem;
    }
}

/* Mobile CTA Bar */
.mobile-cta-bar {
    display: none;
    /* Hidden by default */
}

@media (max-width: 768px) {
    .mobile-cta-bar {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: rgba(10, 10, 10, 0.92);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border-top: 1px solid var(--c-line);
        padding: 12px 20px calc(12px + env(safe-area-inset-bottom));
        z-index: 1000;
        justify-content: center;
        align-items: center;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.6);
    }

    .mobile-cta-btn {
        display: block;
        width: 100%;
        max-width: 400px;
        background: transparent;
        color: var(--c-accent);
        border: 1px solid var(--c-accent);
        padding: 12px 24px;
        text-align: center;
        font-family: var(--font-heading);
        font-size: 0.95rem;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        border-radius: 2px;
        transition: all 0.3s ease;
    }

    .mobile-cta-btn:active {
        background: var(--c-accent);
        color: #000;
        transform: scale(0.98);
    }
}