@charset "utf-8";
:root {
--cream: #f5f0e8;
--warm-white: #faf7f2;
--beige: #e8dfd0;
--tan: #c9b89a;
--brown: #8b7355;
--dark-brown: #3d2e1e;
--text: #2c2318;
/*--text-light: #7a6a57;*/
--text-light:#705f4a;
--accent: #9b8060;
}
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior: smooth;
}
body {
    background-color: var(--cream);
    color: var(--text);
    font-family: 'Noto Serif JP', serif;
    font-weight: 400;
    line-height: 1.9;
    overflow-x: hidden;
}
/* ── Noise texture ── */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 999;
    opacity: .5;
}
::selection {
  background-color: var(--text-light);
}
/* ══════════════════════════════
       NAVIGATION
    ══════════════════════════════ */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 4rem;
    background: rgba(245, 240, 232, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(201, 184, 154, 0.3);
}
.nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    color: var(--dark-brown);
    text-decoration: none;
}
.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}
.nav-links a {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.85rem;
    letter-spacing: 0.18em;
    color: var(--text-light);
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.3s;
}
.nav-links a:hover {
    color: var(--dark-brown);
}
/* Hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
    background: none;
    border: none;
    z-index: 210;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 1px;
    background: var(--dark-brown);
    transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle.open span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}
.nav-toggle.open span:nth-child(2) {
    opacity: 0;
}
.nav-toggle.open span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}
/* Mobile full-screen drawer */
.nav-drawer {
    position: fixed;
    inset: 0;
    background: rgba(245, 240, 232, 0.97);
    backdrop-filter: blur(16px);
    z-index: 150;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}
.nav-drawer.open {
    opacity: 1;
    pointer-events: all;
}
.nav-drawer a {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 300;
    letter-spacing: 0.2em;
    color: var(--dark-brown);
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.2s;
}
.nav-drawer a:hover {
    color: var(--accent);
}
/* ══════════════════════════════
       HERO
    ══════════════════════════════ */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding-top: 64px;
    overflow: hidden;
}
.hero-image-col {
    position: relative;
    overflow: hidden;
}
.hero-image-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    filter: sepia(10%) contrast(0.96) brightness(1.02);
    transform: scale(1.03);
    transition: transform 8s ease;
}
.hero-image-col:hover img {
    transform: scale(1.0);
}
.hero-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, transparent 60%, var(--cream) 100%);
}
.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5rem 4rem 5rem 3.5rem;
}
.hero-label {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.78rem;
    letter-spacing: 0.35em;
    color: var(--accent);
    text-transform: uppercase;
    margin-bottom: 1.8rem;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.2s forwards;
}
.hero-name-ja {
    font-family: 'Noto Serif JP', serif;
    font-weight: 200;
    font-size: clamp(2.4rem, 5vw, 4.5rem);
    letter-spacing: 0.15em;
    color: var(--dark-brown);
    line-height: 1.1;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.4s forwards;
}
.hero-name-en {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1rem, 2vw, 1.4rem);
    font-weight: 300;
    font-style: italic;
    letter-spacing: 0.2em;
    color: var(--text-light);
    margin-top: 0.5rem;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.6s forwards;
}
.hero-divider {
    width: 48px;
    height: 1px;
    background: var(--tan);
    margin: 2rem 0;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.7s forwards;
}
.hero-tagline {
    font-size: 0.86rem;
    line-height: 2;
    color: var(--text-light);
    max-width: 340px;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.9s forwards;
}
.hero-origin {
    margin-top: 2rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.82rem;
    letter-spacing: 0.2em;
    color: var(--tan);
    text-transform: uppercase;
    opacity: 0;
    animation: fadeUp 0.8s ease 1.1s forwards;
}
/* ══════════════════════════════
       SECTION COMMONS
    ══════════════════════════════ */
section {
    padding: 6rem 0;
}
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 4rem;
}
.section-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 3.5rem;
}
.section-label {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.75rem;
    letter-spacing: 0.4em;
    color: var(--accent);
    text-transform: uppercase;
    white-space: nowrap;
}
.section-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, var(--tan), transparent);
}
/* ══════════════════════════════
       PROFILE
    ══════════════════════════════ */
#profile {
    background: var(--warm-white);
}
.profile-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 5rem;
    align-items: start;
}
.profile-portrait {
    position: relative;
}
.profile-portrait::before {
    content: '';
    position: absolute;
    top: -12px;
    left: -12px;
    right: 12px;
    bottom: 12px;
    border: 1px solid var(--tan);
    opacity: 0.5;
    z-index: 0;
}
.profile-portrait img {
    position: relative;
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    object-position: center top;
    filter: sepia(8%) contrast(0.95);
    z-index: 1;
}
.profile-bio h2 {
    font-family: 'Noto Serif JP', serif;
    font-weight: 200;
    font-size: 1.7rem;
    letter-spacing: 0.12em;
    color: var(--dark-brown);
}
.profile-bio h2 span {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-style: italic;
    font-weight: 300;
    color: var(--text-light);
    margin-left: 0.8rem;
}
.profile-bio-text {
    margin-top: 1.8rem;
    font-size: 0.87rem;
    line-height: 2.2;
    color: var(--text);
}
.profile-bio-text p {
    margin-bottom: 1.2em;
}
/* ══════════════════════════════
       CAREER TIMELINE
    ══════════════════════════════ */
#career {
    background: var(--cream);
}
.timeline {
    position: relative;
    padding-left: 2rem;
}
.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    bottom: 8px;
    width: 1px;
    background: linear-gradient(to bottom, var(--tan), transparent);
}
.timeline-item {
    position: relative;
    padding: 0 0 2.8rem 3rem;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.timeline-item.visible {
    opacity: 1;
    transform: translateY(0);
}
.timeline-item::before {
    content: '';
    position: absolute;
    left: -4px;
    top: 8px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--tan);
    border: 2px solid var(--cream);
    box-shadow: 0 0 0 1px var(--tan);
}
.timeline-year {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.78rem;
    letter-spacing: 0.3em;
    color: var(--accent);
    text-transform: uppercase;
    margin-bottom: 0.4rem;
}
.timeline-content h3 {
    font-family: 'Noto Serif JP', serif;
    font-weight: 300;
    font-size: 0.95rem;
    color: var(--dark-brown);
    letter-spacing: 0.05em;
    margin-bottom: 0.4rem;
}
.timeline-content p {
    font-size: 0.83rem;
    color: var(--text-light);
    line-height: 2;
}
/* ══════════════════════════════
       COMPANY
    ══════════════════════════════ */
#company {
    background: var(--beige);
}
.company-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}
.info-block h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.78rem;
    letter-spacing: 0.35em;
    color: var(--accent);
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid var(--tan);
}
.info-table {
    width: 100%;
}
.info-table tr {
    border-bottom: 1px solid rgba(201,184,154,0.3);
}
.info-table td {
    padding: 0.85rem 0;
    font-size: 0.83rem;
    line-height: 1.8;
    vertical-align: top;
}
.info-table td:first-child {
    color: var(--text-light);
    width: 5.5rem;
    font-size: 0.78rem;
}
.business-list {
    list-style: none;
}
.business-list li {
    font-size: 0.83rem;
    color: var(--text);
    padding: 0.55rem 0;
    border-bottom: 1px solid rgba(201,184,154,0.25);
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    line-height: 1.6;
}
.business-list li::before {
    content: '—';
    color: var(--tan);
    flex-shrink: 0;
}
/* ══════════════════════════════
       WORKS
    ══════════════════════════════ */
#works {
    background: var(--warm-white);
}
.works-grid {
    columns: 2;
    column-gap: 4rem;
}
.work-item {
    break-inside: avoid;
    margin-bottom: 0.4rem;
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(201,184,154,0.3);
    display: flex;
    align-items: baseline;
    gap: 0.8rem;
}
.work-name {
    font-size: 0.83rem;
    color: var(--text) !important;
    line-height: 1.6;
}
.work-location {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.75rem;
    color: var(--tan);
    white-space: nowrap;
}
/* ══════════════════════════════
       CONTACT
    ══════════════════════════════ */
#contact {
    background: var(--dark-brown);
    padding: 6rem 0;
}
#contact .section-label {
    color: var(--tan);
}
#contact .section-line {
    background: linear-gradient(to right, rgba(201,184,154,0.5), transparent);
}
.contact-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.4rem;
}
.contact-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 300;
    color: var(--cream);
    letter-spacing: 0.1em;
}
.contact-subtitle {
    font-size: 0.82rem;
    color: var(--tan);
    line-height: 2;
}
.contact-email {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    color: var(--beige);
    letter-spacing: 0.08em;
    text-decoration: none;
    border-bottom: 1px solid rgba(201,184,154,0.4);
    padding-bottom: 2px;
    word-break: break-all;
    transition: color 0.3s, border-color 0.3s;
}
.contact-email:hover {
    color: var(--cream);
    border-color: var(--cream);
}
.contact-phone {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.95rem;
    color: var(--cream);
    letter-spacing: 0.12em;
}
/* ══════════════════════════════
       FOOTER
    ══════════════════════════════ */
footer {
    background: #1e160e;
    padding: 1.8rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.85rem;
    letter-spacing: 0.25em;
    color: var(--tan);
}
.footer-copy {
    font-size: 0.72rem;
    color: var(--tan);
    letter-spacing: 0.08em;
}

    /* ══════════════════════════════
       UTILITIES
    ══════════════════════════════ */
    @keyframes fadeUp {
from {
opacity: 0;
transform: translateY(20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.badge {
    display: inline-block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    color: var(--accent);
    border: 1px solid var(--tan);
    padding: 0.2em 0.8em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}
/* ── Link styles ── */
a.external-link {
    color: var(--brown);
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-color: var(--tan);
    transition: color 0.2s, text-decoration-color 0.2s;
}
a.external-link:hover {
    color: var(--dark-brown);
    text-decoration-color: var(--brown);
}
a.mail-link {
    color: var(--brown);
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-color: var(--tan);
    transition: color 0.2s;
}
a.mail-link:hover {
    color: var(--dark-brown);
}

/* ══════════════════════════════
       RESPONSIVE — TABLET ≤ 900px
    ══════════════════════════════ */
@media (max-width: 900px) {
nav {
    padding: 1rem 2rem;
}
.nav-links {
    display: none;
}
.nav-toggle {
    display: flex;
}
.hero {
    grid-template-columns: 1fr;
    grid-template-rows: 60vw auto;
    min-height: auto;
    padding-top: 58px;
}
.hero-image-overlay {
    background: linear-gradient(to bottom, transparent 55%, var(--cream) 100%);
}
.hero-content {
    padding: 2.8rem 2.5rem 4rem;
}
.hero-tagline {
    max-width: 100%;
}
.container {
    padding: 0 2.5rem;
}
section {
    padding: 4.5rem 0;
}
.section-header {
    margin-bottom: 2.8rem;
}
.profile-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
}
.profile-portrait {
    max-width:300px;
    margin: 0 auto;
}
.profile-portrait::before {
    display: none;
}
.company-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
}
.works-grid {
    columns: 1;
}
footer {
    padding: 1.5rem 2.5rem;
    flex-direction: column;
    text-align: center;
}
}

/* ══════════════════════════════
       RESPONSIVE — MOBILE ≤ 600px
    ══════════════════════════════ */
@media (max-width: 600px) {
nav {
    padding: 0.9rem 1.2rem;
}
.hero {
    grid-template-rows: 75vw auto;
    padding-top: 52px;
}
.hero-content {
    padding: 2rem 1.2rem 3rem;
}
.hero-name-ja {
    font-size: clamp(1.9rem, 8vw, 2.8rem);
}
.hero-divider {
    margin: 1.2rem 0;
}
.hero-tagline {
    font-size: 0.82rem;
}
.container {
    padding: 0 1.2rem;
}
section {
    padding: 3.5rem 0;
}
.section-header {
    margin-bottom: 2rem;
    gap: 1rem;
}
.profile-portrait {
    /*max-width: 180px;*/
}
.profile-bio h2 {
    font-size: 1.4rem;
}
.profile-bio h2 span {
    display: block;
    margin-left: 0;
    margin-top: 0.2rem;
    font-size: 1rem;
}
.timeline {
    padding-left: 1rem;
}
.timeline-item {
    padding: 0 0 2.2rem 2rem;
}
.info-table td {
    font-size: 0.79rem;
    padding: 0.7rem 0;
}
.info-table td:first-child {
    width: 4rem;
    font-size: 0.74rem;
}
.contact-title {
    font-size: 1.6rem;
}
.contact-email {
    font-size: 0.88rem;
}
footer {
    padding: 1.2rem;
    gap: 0.3rem;
}
.footer-copy {
    font-size: 0.65rem;
}
}

