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

body {
    background: #fdeecd;
    color: #1a1a1a;
    min-height: 300vh;
    overflow-x: hidden;
}

#ripple-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1;
}

.rows {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    z-index: 2;
    pointer-events: none;
}

.row {
    flex: 1;
    display: flex;
}

.column {
    flex: 1;
    background: #000;
    height: 100%;
}

.container {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 3;
    pointer-events: none;
}

.text {
    display: flex;
    gap: 0.1em;
    overflow: hidden;
}

.char {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: clamp(1rem, 3vw, 2rem);
    font-weight: 700;
    display: inline-block;
    color: #fff;
}

.line {
    position: absolute;
    height: 2px;
    background: #fff;
    width: 0;
}

/* Logo */
.logo {
    position: fixed;
    top: 2rem;
    right: 2rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 300;
    letter-spacing: 0.15em;
    color: #1a1a1a;
    z-index: 10;
    opacity: 0;
    transform: translateY(-20px);
    text-transform: uppercase;
    text-shadow: 0 0 10px rgba(255,255,255,0.3);
}

/* Scroll arrow */
.scroll-arrow {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: #1a1a1a;
    z-index: 10;
    cursor: pointer;
    transition: transform 0.3s ease;
    pointer-events: auto;
}

.scroll-arrow:hover {
    transform: translateX(-50%) translateY(5px);
}

.scroll-arrow svg {
    width: 24px;
    height: 24px;
    animation: bounce 2s infinite;
}

.scroll-arrow span {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

/* Contact scroll arrow */
.scroll-arrow-contact {
    opacity: 0;
    pointer-events: none;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(8px);
    }
    60% {
        transform: translateY(4px);
    }
}

/* Japanese Decorative Elements */
.jp-decoration {
    position: absolute;
    top: 3rem;
    left: 3rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.jp-circle {
    width: 40px;
    height: 40px;
    border: 1px solid #c41e3a;
    border-radius: 50%;
    opacity: 0.6;
}

.jp-line {
    width: 60px;
    height: 1px;
    background: #c41e3a;
    opacity: 0.4;
}


/* Section two */
.section-two {
    position: relative;
    top: 100vh;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #fff;
    z-index: 5;
    padding: 6rem 2rem;
}

.section-two h2 {
    font-family: 'Noto Serif JP', 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 200;
    letter-spacing: 0.15em;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.section-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    opacity: 0.5;
    margin-bottom: 4rem;
}

/* Services */
.services {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1100px;
}

.service-card {
    position: relative;
    flex: 1;
    min-width: 280px;
    max-width: 320px;
    padding: 3rem 2rem 2.5rem;
    text-align: center;
    border: none;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

.service-number {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 300;
    color: #c41e3a;
    opacity: 0.5;
}

.service-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 1.5rem;
}

.service-icon svg {
    width: 100%;
    height: 100%;
    stroke: #1a1a1a;
    stroke-width: 1;
}

.service-card h3 {
    font-family: 'Noto Serif JP', 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-card p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.95rem;
    line-height: 1.8;
    color: #666;
    letter-spacing: 0.02em;
}

/* Section scroll arrow */
.section-scroll-arrow {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: #1a1a1a;
    z-index: 10;
    cursor: pointer;
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0;
    pointer-events: none;
}

.section-scroll-arrow.visible {
    opacity: 0.6;
    pointer-events: auto;
}

.section-scroll-arrow:hover {
    transform: translateX(-50%) translateY(5px);
    opacity: 1;
}

.section-scroll-arrow svg {
    width: 20px;
    height: 20px;
    animation: bounce 2s infinite;
}

.section-scroll-arrow span {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

/* Contact Section */
.section-contact {
    position: relative;
    top: 100vh;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #fff;
    z-index: 5;
    padding: 6rem 2rem;
}

.section-contact h2 {
    font-family: 'Noto Serif JP', 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 200;
    letter-spacing: 0.15em;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

/* Contact Form */
.contact-form {
    width: 100%;
    max-width: 450px;
    margin-top: 2rem;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    font-family: 'Noto Serif JP', serif;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    color: #1a1a1a;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 0;
    background: transparent;
    color: #1a1a1a;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-bottom-color: #c41e3a;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #aaa;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 1rem;
    margin-top: 0.5rem;
}

.form-group textarea:focus {
    border-color: #c41e3a;
}

.submit-btn {
    width: 100%;
    padding: 1.2rem 2rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.95rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    background: transparent;
    color: #1a1a1a;
    border: 1px solid #1a1a1a;
    cursor: pointer;
    transition: all 0.4s ease;
}

.submit-btn:hover {
    background: #1a1a1a;
    color: #fff;
}

/* Contact Info */
.contact-info {
    text-align: center;
    position: relative;
}

.contact-info p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.9rem;
    color: #222;
    margin-bottom: 0.5rem;
}

.contact-info a {
    margin-top: 3rem;
    font-family: 'Noto Serif JP', serif;
    font-size: 1.1rem;
    color: #1a1a1a;
    text-decoration: none;
    letter-spacing: 0.08em;
    transition: color 0.3s ease;
    font-weight: 400;
}

.contact-info a:hover {
    color: #c41e3a;
}

/* Site Footer */
.site-footer {
    margin-top: 4rem;
    padding-top: 2rem;
    text-align: center;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.site-footer p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.85rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 0.3rem;
}

.site-footer p:first-child {
    color: #444;
}

.site-footer a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.site-footer a:hover {
    color: #c41e3a;
}
