:root {
    --ink: #1a1a1a;
    --paper: #F5F0E8;
    --stone: #8a8578;
    --cream: #E8E0D2;
    --moss: #4a5d4a;
    --vermillion: #c43e3e;
    --tea: #c4a882;
    --mist: rgba(26,26,26,0.06);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { font-size: 16px; }
html.lenis, html.lenis body { height: auto; }

body {
    font-family: 'Noto Serif SC', 'Playfair Display', serif;
    background: var(--paper);
    color: var(--ink);
    overflow-x: hidden;
    cursor: none;
}

::selection { background: var(--vermillion); color: white; }

/* === INK CANVAS === */
#ink-canvas {
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
    width: 100%;
    height: 100%;
}

.magnetic {
    position: relative;
    transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.font-serif { font-family: 'Playfair Display', 'Noto Serif SC', serif; }

.text-split .char {
    display: inline-block;
    opacity: 0;
    transform: translateY(100%);
}

/* === RICE PAPER TEXTURE === */
.noise {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9998;
    opacity: 0.06;
}

.noise::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.2' numOctaves='6' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* === ENSO CIRCLE (円相) === */
.enso {
    position: absolute;
    pointer-events: none;
    opacity: 0;
}

.enso svg {
    width: 100%;
    height: 100%;
}

.enso svg circle {
    fill: none;
    stroke: var(--ink);
    stroke-linecap: round;
}

/* === INK SPLATTER === */
.ink-splatter {
    position: absolute;
    pointer-events: none;
    opacity: 0;
}

/* === ZEN DIVIDER (枯山水 sand ripple) === */
.zen-divider {
    width: 100%;
    padding: 4rem 0;
    display: flex;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.zen-divider svg {
    width: 100%;
    max-width: 600px;
    height: 60px;
}

.zen-divider .ripple-line {
    fill: none;
    stroke: var(--cream);
    stroke-width: 1;
}

/* === VERTICAL TEXT ELEMENTS === */
.zen-vertical {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-size: 0.65rem;
    letter-spacing: 0.5em;
    color: var(--stone);
    position: absolute;
}

/* === HANKO STAMP (印章) === */
.hanko {
    width: 48px;
    height: 48px;
    border: 2px solid var(--vermillion);
    color: var(--vermillion);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    transform: rotate(-5deg);
    position: relative;
}

.hanko::before {
    content: '';
    position: absolute;
    inset: -4px;
    border: 1px solid var(--vermillion);
    opacity: 0.3;
}

/* === BREATHING STONE === */
.zen-stone {
    width: 12px;
    height: 12px;
    background: var(--stone);
    border-radius: 50%;
    animation: breathe 4s ease-in-out infinite;
}

@keyframes breathe {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.5); opacity: 0.6; }
}

/* === PRELOADER === */
.preloader {
    position: fixed;
    inset: 0;
    background: var(--ink);
    z-index: 10000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3rem;
}

.preloader-enso {
    width: 120px;
    height: 120px;
}

.preloader-enso svg circle {
    fill: none;
    stroke: var(--paper);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-dasharray: 300;
    stroke-dashoffset: 300;
}

.preloader-text {
    color: var(--paper);
    font-family: 'Noto Serif SC', serif;
    font-size: clamp(1.5rem, 5vw, 3rem);
    font-weight: 300;
    letter-spacing: 0.3em;
}

.preloader-text span { display: inline-block; }

/* === NAV === */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 2rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    mix-blend-mode: difference;
}

.nav-logo {
    color: white;
    font-family: 'Noto Serif SC', serif;
    font-size: 1.1rem;
    text-decoration: none;
    letter-spacing: 0.2em;
    font-weight: 300;
}

.nav-links { display: flex; gap: 3rem; }

.nav-link {
    color: white;
    text-decoration: none;
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    position: relative;
    padding: 0.5rem 0;
    font-family: 'Space Grotesk', sans-serif;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: white;
    transition: width 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

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

.nav-time {
    color: white;
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    font-family: 'Space Grotesk', sans-serif;
}

/* === HERO === */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 8vw;
    position: relative;
    overflow: hidden;
}

.hero-bg { position: absolute; inset: 0; z-index: -1; }

/* Enso circles as hero background */
.hero-bg-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hero-bg-circle:nth-child(1) {
    width: 70vw; height: 70vw;
    border: 1.5px solid var(--ink);
    opacity: 0;
}
.hero-bg-circle:nth-child(2) {
    width: 50vw; height: 50vw;
    border: 1px solid var(--stone);
    opacity: 0;
}
.hero-bg-circle:nth-child(3) {
    width: 30vw; height: 30vw;
    border: 1px solid var(--cream);
    opacity: 0;
}

/* Ink wash gradient on hero */
.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 70vw;
    height: 70vw;
    background: radial-gradient(circle, rgba(74,93,74,0.06) 0%, rgba(196,168,130,0.04) 40%, transparent 70%);
    pointer-events: none;
    z-index: -1;
}

.hero-label {
    font-size: 0.65rem;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    color: var(--stone);
    margin-bottom: 2rem;
    font-family: 'Space Grotesk', sans-serif;
}

.hero-title {
    font-family: 'Noto Serif SC', serif;
    font-size: clamp(4rem, 14vw, 11rem);
    font-weight: 300;
    line-height: 0.95;
    letter-spacing: 0.05em;
    margin-bottom: 3rem;
}

.hero-title-line { display: block; overflow: hidden; }
.hero-title .italic {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--moss);
    font-weight: 400;
}

.hero-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: 4rem;
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--stone);
    max-width: 400px;
    line-height: 2.2;
    font-weight: 300;
    letter-spacing: 0.05em;
}

.hero-scroll {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.hero-scroll-text {
    font-size: 0.6rem;
    letter-spacing: 0.5em;
    writing-mode: vertical-rl;
    font-family: 'Space Grotesk', sans-serif;
}

.hero-scroll-line {
    width: 1px;
    height: 80px;
    background: linear-gradient(to bottom, var(--ink), transparent);
    position: relative;
    overflow: hidden;
}

.hero-scroll-line::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 30px;
    background: var(--moss);
    animation: scrollLine 3s ease-in-out infinite;
}

@keyframes scrollLine {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(300%); }
}

/* Zen float elements */
.float-element { position: absolute; pointer-events: none; opacity: 0; }
.float-star { font-family: serif; font-size: 2rem; color: var(--stone); }

/* Ink brush stroke decoration on hero */
.hero-brush {
    position: absolute;
    bottom: 10%;
    left: -5%;
    width: 40vw;
    height: 200px;
    opacity: 0;
    pointer-events: none;
}

.hero-brush svg {
    width: 100%;
    height: 100%;
}

/* === MARQUEE === */
.marquee-section {
    padding: 3rem 0;
    border-top: 1px solid var(--mist);
    border-bottom: 1px solid var(--mist);
    overflow: hidden;
    position: relative;
}

.marquee-track { display: flex; width: max-content; }

.marquee-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    padding: 0 2rem;
}

.marquee-item {
    font-family: 'Noto Serif SC', serif;
    font-size: 1.3rem;
    color: var(--stone);
    white-space: nowrap;
    opacity: 0.4;
    font-weight: 300;
    letter-spacing: 0.15em;
}

.marquee-dot { color: var(--moss); font-size: 0.5rem; }

/* === SECTION STYLING === */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 5rem;
    padding: 0 8vw;
    position: relative;
}

.section-label {
    font-size: 0.65rem;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    color: var(--stone);
    margin-bottom: 1rem;
    font-family: 'Space Grotesk', sans-serif;
}

.section-title {
    font-family: 'Noto Serif SC', serif;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 300;
    letter-spacing: 0.1em;
}

.section-number {
    font-family: 'Playfair Display', serif;
    font-size: 6rem;
    color: var(--cream);
    line-height: 1;
    font-style: italic;
}

/* Section header with hanko stamp */
.section-header .hanko {
    position: absolute;
    right: 8vw;
    top: -1rem;
}

/* === WORKS === */
.works { padding: 10rem 0; position: relative; }
.works-grid { padding: 0 8vw; }

.work-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 12rem;
    align-items: center;
    position: relative;
}

.work-item:nth-child(even) { direction: rtl; }
.work-item:nth-child(even) > * { direction: ltr; }

.work-image {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
    background: var(--cream);
}

/* Ink wash overlay on images */
.work-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(26,26,26,0.15) 100%);
    pointer-events: none;
    z-index: 1;
}

.work-image-inner {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 1.8s cubic-bezier(0.23, 1, 0.32, 1);
    filter: saturate(0.1) contrast(1.1) brightness(1.05);
}

.work-item:hover .work-image-inner {
    transform: scale(1.08);
    filter: saturate(0.35) contrast(1.1) brightness(1.02);
}

.work-image-overlay {
    position: absolute;
    inset: 0;
    background: var(--ink);
    transform-origin: top;
    z-index: 2;
}

.work-image-number {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    font-family: 'Playfair Display', serif;
    font-size: 8rem;
    font-style: italic;
    color: white;
    opacity: 0.08;
    z-index: 2;
}

/* Brush stroke frame around work image */
.work-image-frame {
    position: absolute;
    inset: -8px;
    border: 1px solid var(--stone);
    opacity: 0.2;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.work-item:hover .work-image-frame { opacity: 0.4; }

.work-content { padding: 2rem 0; }

.work-category {
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--stone);
    margin-bottom: 1.5rem;
    font-family: 'Space Grotesk', sans-serif;
}

.work-title {
    font-family: 'Noto Serif SC', serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 300;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    letter-spacing: 0.05em;
    transition: color 0.5s ease;
}

.work-item:hover .work-title { color: var(--moss); }

.work-desc {
    font-size: 1rem;
    color: var(--stone);
    line-height: 2;
    margin-bottom: 2rem;
    font-weight: 300;
}

.work-link {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--ink);
    transition: gap 0.5s ease, color 0.3s ease;
    font-family: 'Space Grotesk', sans-serif;
}

.work-link:hover { gap: 1.5rem; color: var(--moss); }

.work-link-arrow {
    width: 40px;
    height: 40px;
    border: 1px solid var(--stone);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease;
}

.work-link:hover .work-link-arrow {
    background: var(--ink);
    color: var(--paper);
    border-color: var(--ink);
}

/* === ZEN GARDEN SECTION BREAK === */
.zen-garden {
    padding: 6rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    position: relative;
}

.zen-garden-stone {
    width: 8px;
    height: 8px;
    background: var(--stone);
    border-radius: 50%;
    opacity: 0.3;
}

.zen-garden-stone:nth-child(2) { width: 14px; height: 14px; opacity: 0.2; }
.zen-garden-stone:nth-child(4) { width: 6px; height: 6px; opacity: 0.4; }

.zen-garden-line {
    width: 120px;
    height: 1px;
    background: var(--cream);
}

/* === BLOG === */
.blog {
    padding: 10rem 0;
    background: var(--ink);
    color: var(--paper);
    position: relative;
    overflow: hidden;
}

/* Ink wash texture on blog bg */
.blog::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
        radial-gradient(ellipse at 20% 30%, rgba(74,93,74,0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(196,168,130,0.06) 0%, transparent 50%);
    pointer-events: none;
}

.blog .section-label, .blog .section-title { color: var(--paper); }
.blog .section-number { color: rgba(255,255,255,0.04); }

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    padding: 0 8vw;
}

.blog-item {
    position: relative;
    padding: 3rem;
    border: 1px solid rgba(255,255,255,0.06);
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    text-decoration: none;
    color: var(--paper);
    display: block;
    overflow: hidden;
}

.blog-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(74,93,74,0.1), transparent);
    opacity: 0;
    transition: opacity 0.8s ease;
}

.blog-item:hover::before { opacity: 1; }
.blog-item:hover { border-color: rgba(74,93,74,0.3); transform: translateY(-5px); }

.blog-date {
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    color: var(--stone);
    margin-bottom: 2rem;
    position: relative;
    font-family: 'Space Grotesk', sans-serif;
}

.blog-title {
    font-family: 'Noto Serif SC', serif;
    font-size: 1.3rem;
    font-weight: 300;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    position: relative;
    letter-spacing: 0.05em;
}

.blog-excerpt {
    font-size: 0.85rem;
    color: var(--stone);
    line-height: 1.8;
    margin-bottom: 2rem;
    position: relative;
    font-weight: 300;
}

.blog-read-more {
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--moss);
    position: relative;
    font-family: 'Space Grotesk', sans-serif;
}

.blog-item-featured {
    grid-column: span 2;
    grid-row: span 2;
    padding: 4rem;
}

.blog-item-featured .blog-title {
    font-size: 2.2rem;
    letter-spacing: 0.08em;
}

/* === QUOTE (with large enso) === */
.quote {
    padding: 18rem 8vw;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Large enso behind quote */
.quote-enso {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: min(60vw, 500px);
    height: min(60vw, 500px);
    opacity: 0;
    pointer-events: none;
}

.quote-enso svg circle {
    fill: none;
    stroke: var(--cream);
    stroke-width: 3;
    stroke-linecap: round;
    stroke-dasharray: 1200;
    stroke-dashoffset: 1200;
}

.quote-text {
    font-family: 'Noto Serif SC', serif;
    font-size: clamp(1.8rem, 5vw, 4rem);
    font-weight: 300;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.85;
    letter-spacing: 0.1em;
    position: relative;
}

.quote-text span { color: var(--moss); }

.quote-line {
    width: 40px;
    height: 1px;
    background: var(--moss);
    margin: 3rem auto;
}

.quote-author {
    font-size: 0.65rem;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    color: var(--stone);
    font-family: 'Space Grotesk', sans-serif;
}

/* === ABOUT === */
.about { padding: 10rem 0; position: relative; overflow: hidden; }

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8rem;
    padding: 0 8vw;
    align-items: center;
}

.about-image { position: relative; }

.about-image-main {
    aspect-ratio: 3/4;
    background: var(--cream);
    overflow: hidden;
    filter: saturate(0.3);
}

.about-image-frame {
    position: absolute;
    top: 2rem;
    left: 2rem;
    right: -2rem;
    bottom: -2rem;
    border: 1px solid var(--moss);
    opacity: 0.3;
}

/* Hanko stamp on about image */
.about-image .hanko {
    position: absolute;
    bottom: -1rem;
    right: -1rem;
    z-index: 2;
    background: var(--paper);
}

.about-text h2 {
    font-family: 'Noto Serif SC', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    line-height: 1.4;
    margin-bottom: 2rem;
    letter-spacing: 0.05em;
}

.about-text h2 span { color: var(--moss); }

.about-text p {
    font-size: 1rem;
    color: var(--stone);
    line-height: 2.2;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
    padding-top: 4rem;
    border-top: 1px solid var(--mist);
}

.about-stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-style: italic;
    color: var(--moss);
    margin-bottom: 0.5rem;
}

.about-stat-label {
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--stone);
    font-family: 'Space Grotesk', sans-serif;
}

/* === CONTACT === */
.contact {
    padding: 10rem 0;
    background: var(--cream);
    position: relative;
}

/* Sand ripple pattern bg */
.contact::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 40px,
            rgba(138,133,120,0.05) 40px,
            rgba(138,133,120,0.05) 41px
        );
    pointer-events: none;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8rem;
    padding: 0 8vw;
    position: relative;
}

.contact-title {
    font-family: 'Noto Serif SC', serif;
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 2rem;
    letter-spacing: 0.08em;
}

.contact-title span { color: var(--moss); }

.contact-desc {
    font-size: 1.1rem;
    color: var(--stone);
    line-height: 2;
    font-weight: 300;
}

.contact-info { display: flex; flex-direction: column; justify-content: flex-end; }
.contact-item { margin-bottom: 3rem; }

.contact-item-label {
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--stone);
    margin-bottom: 0.75rem;
    font-family: 'Space Grotesk', sans-serif;
}

.contact-item-value {
    font-family: 'Noto Serif SC', serif;
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    color: var(--ink);
    text-decoration: none;
    display: block;
    transition: color 0.5s ease;
    font-weight: 300;
    letter-spacing: 0.05em;
}

.contact-item-value:hover { color: var(--moss); }

.contact-social {
    display: flex;
    gap: 2rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(0,0,0,0.08);
}

.contact-social a {
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--stone);
    text-decoration: none;
    transition: color 0.5s ease;
    font-family: 'Space Grotesk', sans-serif;
}

.contact-social a:hover { color: var(--moss); }

/* === FOOTER === */
.footer {
    padding: 2rem 8vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--mist);
}

.footer-text {
    font-size: 0.7rem;
    color: var(--stone);
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: 0.1em;
}

.footer-back-top {
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--stone);
    text-decoration: none;
    font-family: 'Space Grotesk', sans-serif;
}

.footer-back-top:hover { color: var(--moss); }

/* === INK WASH SECTION TRANSITIONS === */
.ink-wash-top {
    width: 100%;
    height: 120px;
    background: linear-gradient(to bottom,
        var(--paper) 0%,
        rgba(26,26,26,0.03) 30%,
        rgba(26,26,26,0.08) 60%,
        var(--ink) 100%
    );
}

.ink-wash-bottom {
    width: 100%;
    height: 120px;
    background: linear-gradient(to bottom,
        var(--ink) 0%,
        rgba(26,26,26,0.08) 40%,
        rgba(26,26,26,0.03) 70%,
        var(--paper) 100%
    );
}

/* === INK SPLATTER DECORATIONS === */
.ink-splatter-hero {
    position: absolute;
    pointer-events: none;
    opacity: 0;
    z-index: 0;
}

.ink-splatter-hero svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

/* === INK DRIP (under section headers) === */
.ink-drip {
    display: flex;
    justify-content: flex-start;
    padding: 0 8vw;
    margin-top: -2rem;
    margin-bottom: 3rem;
    pointer-events: none;
}

.ink-drip svg {
    height: 60px;
    width: 200px;
    overflow: visible;
}

/* === INK STROKE BORDER (on work images) === */
.ink-stroke-border {
    position: absolute;
    inset: -12px;
    pointer-events: none;
    z-index: 3;
    opacity: 0.25;
    transition: opacity 0.5s ease;
}

.work-item:hover .ink-stroke-border { opacity: 0.5; }

.ink-stroke-border svg {
    width: 100%;
    height: 100%;
}

/* === QUOTE INK BACKGROUND === */
.quote-ink-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: min(80vw, 700px);
    height: min(60vw, 500px);
    pointer-events: none;
    opacity: 0;
    z-index: 0;
}

.quote-ink-bg svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.quote > * { position: relative; z-index: 1; }
.quote > .quote-enso { z-index: 0; }
.quote > .quote-ink-bg { z-index: 0; }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .work-item { grid-template-columns: 1fr; gap: 2rem; }
    .work-item:nth-child(even) { direction: ltr; }
    .blog-grid { grid-template-columns: 1fr; }
    .blog-item-featured { grid-column: span 1; grid-row: span 1; }
    .about-content, .contact-content { grid-template-columns: 1fr; gap: 4rem; }
    .nav { padding: 1.5rem 2rem; }
    .nav-links { display: none; }
}

@media (max-width: 768px) {
    .hero-title { font-size: clamp(3rem, 12vw, 6rem); }
    .hero-bottom { flex-direction: column; align-items: flex-start; gap: 3rem; }
    .section-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
    .section-number { display: none; }
    body { cursor: auto; }
    #ink-canvas { display: none; }
    .hero-brush { display: none; }
    .zen-vertical { display: none; }
    .hanko { display: none; }
}
