*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 300;
    background-color: #111210;
    color: #D4D0C8;
    overflow-x: hidden;
    min-height: 100vh;
    font-size: 15px;
    line-height: 2.0;
}

/* Raked Gravel Lines */
.gravel-lines {
    position: relative;
    width: 60%;
    height: 30px;
    margin-left: 20%;
    pointer-events: none;
}

.gravel-top {
    margin-top: 15vh;
}

.gravel-mid {
    margin-top: 8vh;
    margin-bottom: 8vh;
}

.gravel-bottom {
    margin-top: 8vh;
    margin-bottom: 15vh;
    animation: gravelShift 60s linear infinite;
}

@keyframes gravelShift {
    0% { transform: translateX(0); }
    50% { transform: translateX(4px); }
    100% { transform: translateX(0); }
}

/* Hero */
.hero {
    height: 100vh;
    display: flex;
    align-items: flex-start;
    padding-top: 38.2vh;
    padding-left: 38.2%;
}

.hero-content {
    /* No animation - content is simply there */
}

.site-name {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 300;
    font-size: 24px;
    letter-spacing: 0.08em;
    color: #E8E4DC;
    line-height: 1.6;
}

.site-description {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 300;
    font-size: 15px;
    color: #A09E96;
    margin-top: 8px;
    line-height: 2.0;
}

/* Placed Stone */
.stone-container {
    position: absolute;
    top: 62%;
    right: 18%;
    pointer-events: none;
}

.placed-stone {
    width: 60px;
    height: 40px;
}

/* Content Sections */
.content-section {
    padding-left: 38.2%;
    padding-right: 15%;
    margin-bottom: 12vh;
}

.content-block {
    max-width: 420px;
}

.section-heading {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 300;
    font-size: 22px;
    letter-spacing: 0.08em;
    color: #E8E4DC;
    margin-bottom: 16px;
    line-height: 1.6;
}

.section-body {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 300;
    font-size: 15px;
    line-height: 2.0;
    color: #D4D0C8;
}

.accent-text {
    font-family: 'Noto Serif JP', serif;
    font-weight: 200;
    font-size: 18px;
    font-style: italic;
    color: #C8B89A;
    line-height: 2.0;
}

.contact-line {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 300;
    font-size: 15px;
    color: #8A9B8A;
    margin-top: 12px;
    line-height: 2.0;
}

/* Enso */
.enso-container {
    display: flex;
    justify-content: center;
    padding: 10vh 0 15vh;
}

.enso {
    width: 80px;
    height: 80px;
}

/* Body background - deep dark with slight warm tone */
body {
    background-color: #161514;
}

/* Selection */
::selection {
    background: rgba(90, 107, 90, 0.2);
    color: #E8E4DC;
}

/* Scrollbar - minimal */
::-webkit-scrollbar {
    width: 2px;
}

::-webkit-scrollbar-track {
    background: #111210;
}

::-webkit-scrollbar-thumb {
    background: #5A6B5A;
    border-radius: 1px;
    opacity: 0.3;
}
