/*
Theme Name: Garabato Group
Theme URI: https://garabato.group
Author: Garabato Group Inc.
Description: Official theme for Garabato Group - Place Creation Company
Version: 1.0.0
License: All Rights Reserved
Text Domain: garabato
*/
/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #ffffff;
    --secondary: #f5f5f5;
    --accent: #333333;
    --text: #1a1a1a;
    --text-light: #666666;
    --border: #e0e0e0;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2.4rem;
    --spacing-lg: 4.8rem;
    --spacing-xl: 7.2rem;
}

html {
    font-size: 16px; /* Base font size for better readability */
    overflow-y: scroll; /* Always show scrollbar space to prevent layout shift */
}

/* Only use CSS smooth scroll when Lenis is not available */
html.no-js {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', 'Noto Sans JP', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background: var(--primary);
    font-size: 1rem; /* Ensure body text is readable */
}

.container {
    max-width: 1050px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Fixed Contact Button */
.fixed-contact-btn {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--text);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 999;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.fixed-contact-btn svg {
    width: 20px;
    height: 20px;
}

.fixed-contact-btn span {
    display: none;
}

.fixed-contact-btn:hover {
    transform: scale(1.15);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: all 0.3s ease;
}

.nav.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
}

.nav-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 1rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo img {
    height: 30px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    overflow: hidden;
    padding: 0.2rem 0;
}

.nav-links a::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: translateY(100%);
    transition: transform 0.3s cubic-bezier(0.76, 0, 0.24, 1);
}

.nav-links a:hover {
    color: var(--text);
}

.nav-links a:hover::before {
    transform: translateY(0);
}

.nav-links a > span {
    display: inline-block;
    transition: transform 0.3s cubic-bezier(0.76, 0, 0.24, 1);
}

.nav-links a:hover > span {
    transform: translateY(-100%);
}

.nav-social {
    display: flex;
    gap: 0.8rem;
    align-items: center;
    margin-left: 1rem;
    padding-left: 1.5rem;
    border-left: 1px solid rgba(0, 0, 0, 0.15);
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    text-decoration: none;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.social-icon:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.social-icon svg {
    width: 18px;
    height: 18px;
}

.menu-toggle {
    display: none;
    align-items: center;
    gap: 0.5rem;
    background: none;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 100px;
    cursor: pointer;
    padding: 0.5rem 1rem;
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
}

.menu-toggle::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--text);
    transform: translateY(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.menu-toggle:hover::before {
    transform: translateY(0);
}

.menu-toggle:hover .menu-text,
.menu-toggle:hover .menu-icon .line {
    color: var(--primary);
    background: var(--primary);
}

.menu-toggle.active {
    background: var(--text);
    border-color: var(--text);
}

.menu-toggle.active .menu-text,
.menu-toggle.active .menu-icon .line {
    color: var(--primary);
    background: var(--primary);
}

.menu-text {
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--text);
    transition: color 0.3s ease;
    position: relative;
    z-index: 1;
}

.menu-icon {
    display: flex;
    flex-direction: column;
    gap: 3px;
    width: 16px;
    position: relative;
    z-index: 1;
}

.menu-icon .line {
    width: 100%;
    height: 1.5px;
    background: var(--text);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

.menu-toggle.active .menu-icon .line:first-child {
    transform: rotate(45deg) translateY(2.5px);
}

.menu-toggle.active .menu-icon .line:last-child {
    transform: rotate(-45deg) translateY(-2.5px);
}

/* Fullscreen Menu */
.fullscreen-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--secondary);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                visibility 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.fullscreen-menu.active {
    opacity: 1;
    visibility: visible;
}

.menu-content {
    width: 100%;
    max-width: 1200px;
    padding: 0 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    gap: 3rem;
}

.menu-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.menu-link {
    display: flex;
    align-items: baseline;
    gap: 2rem;
    text-decoration: none;
    color: var(--text);
    padding: 1.2rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.fullscreen-menu.active .menu-link {
    opacity: 1;
    transform: translateY(0);
}

.fullscreen-menu.active .menu-link:nth-child(1) { transition-delay: 0.1s; }
.fullscreen-menu.active .menu-link:nth-child(2) { transition-delay: 0.15s; }
.fullscreen-menu.active .menu-link:nth-child(3) { transition-delay: 0.2s; }
.fullscreen-menu.active .menu-link:nth-child(4) { transition-delay: 0.25s; }
.fullscreen-menu.active .menu-link:nth-child(5) { transition-delay: 0.3s; }

.menu-link {
    position: relative;
}

.menu-link::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 5rem;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.76, 0, 0.24, 1);
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    font-weight: 400;
    letter-spacing: -0.01em;
    opacity: 0;
}

.menu-link:hover::before {
    transform: translateY(0);
    opacity: 1;
}

.menu-link:hover .menu-title span {
    transform: translateY(-100%);
    opacity: 0;
}

.menu-number {
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    color: rgba(0, 0, 0, 0.4);
    min-width: 3rem;
}

.menu-title {
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    font-weight: 400;
    letter-spacing: -0.01em;
    position: relative;
    overflow: hidden;
    display: inline-block;
}

.menu-title span {
    display: inline-block;
    transition: transform 0.4s cubic-bezier(0.76, 0, 0.24, 1), opacity 0.4s cubic-bezier(0.76, 0, 0.24, 1);
}

.menu-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.3s ease 0.35s, transform 0.3s ease 0.35s;
}

.fullscreen-menu.active .menu-footer {
    opacity: 1;
    transform: translateY(0);
}

.menu-social {
    display: flex;
    gap: 2rem;
}

.menu-social a {
    color: #1a1a1a;
    text-decoration: none;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    transition: opacity 0.3s ease;
}

.menu-social a:hover {
    opacity: 0.6;
}

.menu-tagline {
    color: rgba(0, 0, 0, 0.5);
    font-size: 0.875rem;
    letter-spacing: 0.05em;
}

/* Opening Animation */
.opening-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: openingFadeOut 1s ease-out 3.2s forwards;
    pointer-events: none;
}

.opening-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.03), transparent);
    animation: openingShimmer 2s ease-in-out 0.5s;
}

.opening-overlay.hide {
    display: none;
}

.opening-content {
    position: relative;
    text-align: center;
}

.opening-text-wrapper {
    overflow: hidden;
    padding: clamp(1rem, 2vw, 2rem);
}

.opening-main {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--text);
    margin: 0 0 clamp(1rem, 2vw, 1.5rem) 0;
    opacity: 0;
    clip-path: inset(0 100% 0 0);
    animation:
        openingMainReveal 1.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s forwards,
        openingMainFadeOut 0.8s ease-out 2.4s forwards;
}

.opening-sub {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: clamp(0.875rem, 2vw, 1.125rem);
    font-weight: 400;
    letter-spacing: 0.2em;
    color: var(--text);
    margin: 0;
    opacity: 0;
    clip-path: inset(0 100% 0 0);
    animation:
        openingSubReveal 1.8s cubic-bezier(0.4, 0, 0.2, 1) 0.8s forwards,
        openingSubFadeOut 0.8s ease-out 2.4s forwards;
}

@keyframes openingMainReveal {
    0% {
        opacity: 0;
        clip-path: inset(0 100% 0 0);
    }
    10% {
        opacity: 1;
    }
    100% {
        opacity: 1;
        clip-path: inset(0 0% 0 0);
    }
}

@keyframes openingSubReveal {
    0% {
        opacity: 0;
        clip-path: inset(0 100% 0 0);
    }
    10% {
        opacity: 1;
    }
    100% {
        opacity: 1;
        clip-path: inset(0 0% 0 0);
    }
}

@keyframes openingMainFadeOut {
    to {
        opacity: 0;
        transform: translateY(-30px) scale(1.05);
    }
}

@keyframes openingSubFadeOut {
    to {
        opacity: 0;
        transform: translateY(-20px) scale(1.05);
    }
}

@keyframes openingFadeOut {
    to {
        opacity: 0;
        visibility: hidden;
    }
}

@keyframes openingShimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(to right, rgba(200, 150, 150, 0.15) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(200, 150, 150, 0.15) 1px, transparent 1px),
        var(--primary);
    background-size: 20px 20px;
    overflow: hidden;
}


#drawingCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><line x1="18" y1="2" x2="22" y2="6"></line><path d="M7.5 20.5L19 9l-4-4L3.5 16.5 2 22z"></path></svg>') 0 20, auto;
    z-index: 1;
}

.hero-catchphrase {
    font-size: clamp(4rem, 12vw, 10rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: rgba(26, 26, 26, 0.08);
    opacity: 1;
}

.hero-logo-circle {
    position: fixed;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    width: clamp(320px, 45vw, 580px);
    height: clamp(320px, 45vw, 580px);
    animation: heroFadeInScale 1.2s ease-out forwards;
    opacity: 0;
    background: transparent;
    border: clamp(112px, 15.75vw, 203px) solid #000;
    border-radius: 50%;
    pointer-events: none;
    box-sizing: border-box;
}

.hero-logo-circle .circle-inner {
    display: none;
}

.hero-logo-circle.playing {
    animation: circleSpin 20s linear infinite;
    opacity: 1;
}

@keyframes circleSpin {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Hero Section Animations */
@keyframes heroFadeInScale {
    from {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.8);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

@keyframes heroFadeInUp {
    from {
        opacity: 0;
        transform: translate(-50%, -40%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

.logo-circle-outer {
    display: none;
}

.logo-circle-inner {
    display: none;
}

.record-highlight {
    display: none;
}

.hero-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: clamp(600px, 85vw, 1200px);
    height: auto;
    z-index: 1;
    animation: heroImageFadeIn 1s ease-out 0.3s forwards;
    opacity: 0;
}

@keyframes heroImageFadeIn {
    from {
        opacity: 0;
        transform: translate(-50%, -45%);
    }
    to {
        opacity: 0.25;
        transform: translate(-50%, -50%);
    }
}

.hero-image img,
.hero-image video {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* Hero Main Text - Centered */
.hero-main-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    text-align: center;
    animation: heroTextFadeIn 1s ease-out 0.6s forwards;
    opacity: 0;
}

.hero-title-ja {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--text);
    margin-bottom: clamp(0.5rem, 1vw, 1rem);
    line-height: 1.3;
}

.hero-title-en {
    font-size: clamp(0.75rem, 1.5vw, 1rem);
    font-weight: 400;
    letter-spacing: 0.15em;
    color: var(--text-light);
    text-transform: uppercase;
}

@keyframes heroTextFadeIn {
    from {
        opacity: 0;
        transform: translate(-50%, -45%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

.hero-content {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    max-width: 90%;
    animation: heroContentFadeIn 1s ease-out 0.5s forwards;
    opacity: 0;
}

@keyframes heroContentFadeIn {
    from {
        opacity: 0;
        transform: translate(-50%, -45%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

.hero-title-text {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 300;
    letter-spacing: 0.1em;
    color: var(--text);
    margin-bottom: 1rem;
}

.hero-tagline {
    font-size: clamp(0.8rem, 1.5vw, 1rem);
    font-weight: 600;
    letter-spacing: 0.05em;
    color: #1a1a1a;
    text-transform: uppercase;
}

.earth-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: clamp(450px, 55vw, 700px);
    height: clamp(450px, 55vw, 700px);
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
    background:
        radial-gradient(circle at 30% 30%, rgba(0, 0, 0, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(0, 0, 0, 0.02) 0%, transparent 50%),
        linear-gradient(135deg, #f8f8f8 0%, #e8e8e8 50%, #f0f0f0 100%);
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow:
        inset 0 0 100px rgba(0, 0, 0, 0.03),
        inset -30px -30px 60px rgba(0, 0, 0, 0.05),
        0 0 120px rgba(0, 0, 0, 0.04),
        0 20px 60px rgba(0, 0, 0, 0.06);
    animation: earthFadeIn 2.5s ease-out forwards, rotateEarth 120s linear 2.5s infinite;
    overflow: hidden;
    opacity: 0;
}

@keyframes rotateEarth {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes earthFadeIn {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.8) rotate(0deg);
    }
    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1) rotate(0deg);
    }
}

.earth-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 92%;
    height: 92%;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.earth-highlight {
    position: absolute;
    top: 20%;
    left: 20%;
    width: 35%;
    height: 35%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0) 70%);
    filter: blur(15px);
}

/* Earth Grid */
.earth-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

/* Latitude lines (horizontal) */
.latitude-line {
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(0, 0, 0, 0.06);
    border-radius: 50%;
}

.lat-1 { top: 20%; transform: scaleX(0.94); }
.lat-2 { top: 35%; transform: scaleX(0.98); }
.lat-3 { top: 50%; transform: scaleX(1); }
.lat-4 { top: 65%; transform: scaleX(0.98); }
.lat-5 { top: 80%; transform: scaleX(0.94); }

/* Longitude lines (vertical ellipses) */
.longitude-line {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.lon-1 { transform: translate(-50%, -50%) rotateY(0deg) scaleX(0.15); }
.lon-2 { transform: translate(-50%, -50%) rotateY(30deg) scaleX(0.3); }
.lon-3 { transform: translate(-50%, -50%) rotateY(60deg) scaleX(0.45); }
.lon-4 { transform: translate(-50%, -50%) rotateY(90deg) scaleX(0.6); }
.lon-5 { transform: translate(-50%, -50%) rotateY(120deg) scaleX(0.75); }
.lon-6 { transform: translate(-50%, -50%) rotateY(150deg) scaleX(0.9); }

.hero-title {
    position: relative;
    z-index: 1;
    width: clamp(300px, 80vw, 700px);
    opacity: 1;
}

#hero-svg {
    width: 100%;
    height: auto;
    display: block;
}

@keyframes pulse {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 0.3; }
}

/* Music Player Button */
.music-player-btn {
    position: fixed;
    bottom: 4rem;
    right: 3rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--text);
    color: var(--primary);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    transition: all 0.3s ease;
    animation: buttonFadeIn 0.8s ease-out 1s forwards;
    opacity: 0;
}

@keyframes buttonFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.music-player-btn:hover {
    transform: scale(1.1);
}

.music-player-btn.playing .play-icon {
    display: none;
}

.music-player-btn.playing .pause-icon {
    display: block !important;
}

.scroll-indicator {
    position: absolute;
    bottom: 4rem;
    right: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
    opacity: 0;
    animation: scrollFadeIn 1s ease-out 2s forwards;
    cursor: pointer;
}

@keyframes scrollFadeIn {
    0% {
        opacity: 0;
        transform: translateY(-10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.scroll-text {
    color: var(--text);
    font-size: 0.5rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    opacity: 0.5;
    margin-bottom: 1rem;
    font-weight: 600;
    writing-mode: vertical-rl;
    text-orientation: mixed;
}

.scroll-line {
    width: 1px;
    height: 80px;
    background: rgb(0 0 0 / 40%);
    position: relative;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 5px;
    height: 5px;
    background: #1a1a1a;
    border-radius: 50%;
    opacity: 0.8;
    animation: scrollDown 2.5s ease-in-out infinite;
}

@keyframes scrollDown {
    0%, 100% {
        transform: translate(-50%, 0);
        opacity: 0.8;
    }
    50% {
        transform: translate(-50%, 40px);
        opacity: 0.3;
    }
}

/* Main Sections (Philosophy, What We Do, Company) */
.main-sections {
    background: var(--primary);
    padding: clamp(10rem, 18vw, 16rem) 0;
}

.main-sections-grid {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 clamp(2rem, 5vw, 4rem);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(3rem, 5vw, 5rem);
}

.main-section {
    padding: clamp(3.5rem, 6vw, 5rem);
    border: 1px solid rgba(0, 0, 0, 0.08);
    text-decoration: none;
    color: var(--text);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    background: transparent;
    overflow: hidden;
}

.main-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.05);
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-section:hover::before {
    transform: translateY(0);
}

.main-section:hover {
    border-color: rgba(0, 0, 0, 0.3);
    transform: translateY(-5px);
}

.main-section-label {
    font-size: clamp(0.55rem, 1.1vw, 0.65rem);
    letter-spacing: 0.15em;
    color: rgba(0, 0, 0, 0.4);
    margin-bottom: var(--spacing-sm);
    font-weight: 300;
    position: relative;
    z-index: 1;
}

.main-section-title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 300;
    letter-spacing: 0.08em;
    margin-bottom: var(--spacing-md);
    position: relative;
    z-index: 1;
    text-transform: uppercase;
}

.main-section-link {
    font-size: clamp(0.7rem, 1.2vw, 0.8rem);
    letter-spacing: 0.2em;
    color: rgba(0, 0, 0, 0.4);
    margin-top: clamp(2.5rem, 5vw, 4rem);
    position: relative;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
    text-transform: uppercase;
}

.main-section:hover .main-section-link {
    color: rgba(0, 0, 0, 1);
    border-bottom-color: rgba(0, 0, 0, 0.6);
}

/* Section Common Styles */
section {
    padding: var(--spacing-xl) 0;
}

.section-title {
    font-size: clamp(1.3rem, 2.8vw, 2rem);
    font-weight: 300;
    margin-bottom: clamp(3rem, 6vw, 5rem);
    text-align: center;
    letter-spacing: 0.02em;
}

.label {
    font-size: clamp(0.55rem, 1.1vw, 0.6rem);
    letter-spacing: 0.2em;
    color: var(--text-light);
    margin-bottom: var(--spacing-sm);
    font-weight: 400;
    text-transform: uppercase;
    opacity: 0.7;
}

/* Philosophy Section */
.philosophy {
    background:
        linear-gradient(to right, rgba(200, 150, 150, 0.15) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(200, 150, 150, 0.15) 1px, transparent 1px),
        var(--secondary);
    background-size: 20px 20px, 20px 20px, 100%;
    color: #1a1a1a;
    padding: clamp(10rem, 16vw, 14rem) 0;
    position: relative;
    overflow: hidden;
}

.philosophy::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(0, 0, 0, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 0, 0, 0.01) 0%, transparent 50%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    pointer-events: none;
    z-index: 0;
}

.philosophy .container {
    position: relative;
    z-index: 1;
}

.philosophy .section-title {
    color: #1a1a1a;
    opacity: 0;
    transform: translateY(-30px);
    transition: opacity 1s ease, transform 1s ease;
}

.philosophy.scroll-animate .section-title {
    opacity: 1;
    transform: translateY(0);
}

.philosophy-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(3rem, 6vw, 5rem);
    max-width: 1400px;
    margin: 0 auto;
}

.philosophy-item .label {
    color: rgba(0, 0, 0, 0.5);
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
    display: inline-block;
    position: relative;
}

.philosophy-item .label::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 30px;
    height: 1px;
    background: rgba(0, 0, 0, 0.3);
}

.philosophy-title {
    font-size: clamp(1.1rem, 2.4vw, 1.5rem);
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: clamp(0.8rem, 1.6vw, 1.2rem);
    letter-spacing: 0.02em;
    background: linear-gradient(135deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.philosophy-subtitle {
    font-size: clamp(0.8rem, 1.6vw, 1rem);
    color: rgba(0, 0, 0, 0.75);
    margin-bottom: clamp(1.2rem, 2.4vw, 2rem);
    letter-spacing: 0.02em;
    font-weight: 300;
    font-style: italic;
}

.philosophy-text {
    font-size: clamp(0.65rem, 1.3vw, 0.75rem);
    line-height: 2;
    color: rgba(0, 0, 0, 0.6);
    letter-spacing: 0.03em;
    padding-left: clamp(1rem, 2vw, 1.5rem);
    border-left: 1px solid rgba(0, 0, 0, 0.1);
}

/* What We Do Section */
.what-we-do {
    background: var(--primary);
    padding: clamp(4rem, 10vw, 8rem) 0;
}

.business-section {
    margin-bottom: clamp(4rem, 8vw, 6rem);
    opacity: 1;
    transform: translateY(0);
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.business-header {
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-md);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: baseline;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.business-number {
    font-size: clamp(0.6rem, 1.2vw, 0.68rem);
    color: var(--text-light);
    letter-spacing: 0.15em;
    font-weight: 300;
}

.business-title {
    font-size: clamp(0.85rem, 1.9vw, 1.05rem);
    font-weight: 500;
    letter-spacing: 0.02em;
}

.business-subtitle {
    font-size: clamp(0.75rem, 1.5vw, 0.85rem);
    color: var(--text-light);
    letter-spacing: 0.01em;
    font-weight: 300;
}

.business-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: clamp(2rem, 4vw, 3rem);
}

.business-item {
    padding: 0;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 2px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.business-item:hover {
    background: rgba(0, 0, 0, 0.04);
    border-color: rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.business-item-image {
    width: 100%;
    height: clamp(180px, 18vw, 240px);
    overflow: hidden;
    background: rgba(0, 0, 0, 0.03);
}

.business-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, opacity 0.5s ease;
    opacity: 0.8;
}

.business-item:hover .business-item-image img {
    transform: scale(1.08);
    opacity: 1;
}

.business-item-text {
    padding: clamp(1.2rem, 2.5vw, 1.8rem);
}

.business-item h4 {
    font-size: clamp(0.7rem, 1.4vw, 0.78rem);
    font-weight: 500;
    margin-bottom: var(--spacing-sm);
    letter-spacing: 0.01em;
}

.business-item p {
    color: var(--text-light);
    line-height: 1.9;
    font-size: clamp(0.6rem, 1.2vw, 0.68rem);
    letter-spacing: 0.02em;
}

/* What We Do Parallax Section */
.wwd-parallax {
    position: relative;
    min-height: 100vh;
    background:
        linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(135deg, #0a0a0a 0%, #151515 50%, #0d0d0d 100%);
    background-size: 20px 20px, 20px 20px, 100% 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wwd-parallax::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 20% 30%, rgba(255, 255, 255, 0.04) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.wwd-parallax::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    backdrop-filter: blur(80px);
    -webkit-backdrop-filter: blur(80px);
    pointer-events: none;
}

.wwd-parallax-inner {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1400px;
    padding: clamp(4rem, 10vw, 8rem) clamp(4rem, 10vw, 8rem);
    display: flex;
    flex-direction: column;
    gap: clamp(4rem, 8vw, 6rem);
}

.wwd-parallax-content {
    display: flex;
    flex-direction: column;
    gap: clamp(3rem, 6vw, 5rem);
}

.wwd-parallax-item {
    display: block;
    text-decoration: none;
    color: #fff;
    position: relative;
    padding-left: clamp(3rem, 6vw, 5rem);
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.wwd-parallax-item:hover {
    transform: translateX(2rem) !important;
}

.wwd-parallax-number {
    position: absolute;
    left: 0;
    top: 0;
    font-size: clamp(0.7rem, 1.2vw, 0.9rem);
    font-weight: 300;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.5);
}

.wwd-parallax-title {
    font-size: clamp(1.8rem, 5vw, 3.5rem);
    font-weight: 300;
    letter-spacing: 0.02em;
    margin-bottom: 0.5rem;
    line-height: 1.2;
    color: #fff;
}

.wwd-parallax-subtitle {
    font-size: clamp(0.7rem, 1.2vw, 0.9rem);
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.5);
}

.wwd-parallax-tagline {
    padding-left: clamp(3rem, 6vw, 5rem);
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.wwd-parallax-tagline.visible {
    opacity: 1;
    transform: translateY(0);
}

.wwd-parallax-text {
    font-size: clamp(0.8rem, 1.5vw, 1rem);
    letter-spacing: 0.1em;
    line-height: 2;
    color: rgba(255, 255, 255, 0.7);
}

.wwd-parallax-arrow {
    display: inline-block;
    margin-left: 1rem;
    font-size: clamp(1rem, 2vw, 1.5rem);
    opacity: 0;
    transform: translateX(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    color: #fff;
}

.wwd-parallax-item:hover .wwd-parallax-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* News Section */
.news {
    background:
        linear-gradient(to right, rgba(200, 150, 150, 0.15) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(200, 150, 150, 0.15) 1px, transparent 1px),
        transparent;
    background-size: 20px 20px;
    padding: clamp(6rem, 10vw, 8rem) 0;
    overflow: hidden;
    position: relative;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.news-header {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 4vw, 3rem);
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: clamp(2rem, 4vw, 3rem);
}

.news-section-title {
    font-size: clamp(1.1rem, 2.2vw, 1.4rem);
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.news-navigation {
    display: flex;
    gap: 0.5rem;
}

.news-nav-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.05);
    color: var(--text);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.news-nav-btn:hover {
    background: rgba(0, 0, 0, 0.1);
    transform: scale(1.05);
}

.news-scroll-container {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.news-scroll-container::-webkit-scrollbar {
    display: none;
}

.news-cards {
    display: flex;
    gap: clamp(1.5rem, 3vw, 2rem);
    padding: 0 clamp(1.5rem, 4vw, 3rem);
    min-width: min-content;
}

.news-card {
    flex: 0 0 auto;
    width: clamp(350px, 32vw, 480px);
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.news-card:hover {
    transform: translateY(-4px);
}

.news-card-image {
    width: 100%;
    height: clamp(180px, 16vw, 240px);
    overflow: hidden;
    border-radius: 8px;
}

.news-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-card:hover .news-card-image img {
    transform: scale(1.05);
}

.news-card-content {
    padding: clamp(1.2rem, 2.5vw, 1.8rem);
}

.news-card-title {
    font-size: clamp(0.65rem, 1.3vw, 0.75rem);
    font-weight: 400;
    line-height: 1.7;
    color: var(--text);
    letter-spacing: 0.02em;
}

.news-footer {
    max-width: 1600px;
    margin: 0 auto;
    padding: clamp(2rem, 4vw, 3rem) clamp(1.5rem, 4vw, 3rem) 0;
    display: flex;
    justify-content: center;
}

.news-view-all {
    color: #fff;
    background: rgb(0 0 0 / 30%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    text-decoration: none;
    font-size: clamp(0.65rem, 1.3vw, 0.75rem);
    letter-spacing: 0.05em;
    padding: 0.8rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.news-view-all:hover {
    opacity: 0.8;
}

/* Company Section */
.company {
    background: var(--primary);
    padding: clamp(6rem, 10vw, 8rem) 0;
    position: relative;
    z-index: 1;
}

.company-content {
    max-width: 800px;
    margin: 0 auto;
}

.company-info {
    opacity: 1;
    transform: translateY(0);
}

.company-item {
    display: grid;
    grid-template-columns: clamp(120px, 20vw, 160px) 1fr;
    gap: clamp(1.5rem, 3vw, 2.5rem);
    padding: clamp(1.2rem, 2.5vw, 1.8rem) 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.company-item:last-child {
    border-bottom: none;
}

.company-item dt {
    font-weight: 400;
    color: var(--text-light);
    font-size: clamp(0.75rem, 1.4vw, 0.85rem);
    letter-spacing: 0.02em;
}

.company-item dd {
    color: var(--text);
    font-size: clamp(0.7rem, 1.3vw, 0.8rem);
    line-height: 1.8;
    letter-spacing: 0.02em;
}

.business-category {
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.business-category:last-child {
    margin-bottom: 0;
}

.business-title {
    font-size: clamp(0.65rem, 1.1vw, 0.75rem);
    font-weight: 400;
    color: var(--text);
    letter-spacing: 0.02em;
    margin-bottom: clamp(0.3rem, 0.5vw, 0.4rem);
}

.business-subtitle {
    font-size: clamp(0.65rem, 1.1vw, 0.75rem);
    font-weight: 500;
    color: var(--text-light);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}


/* Philosophy Page Styles */
.page-hero {
    background: var(--primary);
    padding: clamp(8rem, 15vw, 12rem) 0 clamp(4rem, 8vw, 6rem);
    position: relative;
    overflow: hidden;
}

.page-hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s ease;
}

.page-hero-content.visible {
    opacity: 1;
    transform: translateY(0);
}

.page-label {
    font-size: clamp(0.6rem, 1.2vw, 0.75rem);
    letter-spacing: 0.2em;
    color: rgba(0, 0, 0, 0.5);
    display: block;
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.page-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 300;
    letter-spacing: 0.05em;
    margin-bottom: clamp(0.5rem, 1vw, 1rem);
    background: linear-gradient(135deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-subtitle {
    font-size: clamp(0.8rem, 1.6vw, 1.1rem);
    color: rgba(0, 0, 0, 0.6);
    letter-spacing: 0.1em;
}

.philosophy-details {
    background: var(--primary);
    padding: clamp(6rem, 12vw, 10rem) 0;
}

.philosophy-intro {
    text-align: center;
    margin-bottom: clamp(4rem, 8vw, 6rem);
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s ease;
}

.philosophy-intro.visible {
    opacity: 1;
    transform: translateY(0);
}

.philosophy-intro-title {
    font-size: clamp(1.5rem, 3.5vw, 2.5rem);
    font-weight: 400;
    letter-spacing: 0.05em;
    margin-bottom: clamp(1.5rem, 3vw, 2rem);
    line-height: 1.6;
}

.philosophy-intro-text {
    font-size: clamp(0.75rem, 1.5vw, 0.9rem);
    color: rgba(0, 0, 0, 0.7);
    line-height: 2;
    letter-spacing: 0.05em;
}

.philosophy-grid-detail {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(4rem, 8vw, 6rem);
    max-width: 1200px;
    margin: 0 auto clamp(6rem, 12vw, 10rem);
}

.philosophy-item-detail {
    padding: clamp(3rem, 6vw, 5rem);
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: rgba(0, 0, 0, 0.02);
    position: relative;
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s ease;
}

.philosophy-item-detail.visible {
    opacity: 1;
    transform: translateY(0);
}

.philosophy-item-detail::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.3) 100%);
    transition: height 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
}

.philosophy-item-detail.visible::before {
    height: 100%;
}

.philosophy-item-detail .label {
    font-size: clamp(0.55rem, 1.1vw, 0.65rem);
    letter-spacing: 0.2em;
    color: rgba(0, 0, 0, 0.4);
    margin-bottom: clamp(1.5rem, 3vw, 2rem);
    display: block;
}

.philosophy-item-detail .philosophy-title {
    font-size: clamp(1.3rem, 2.8vw, 1.8rem);
    font-weight: 500;
    margin-bottom: clamp(0.5rem, 1vw, 0.8rem);
    letter-spacing: 0.02em;
    color: #1a1a1a;
    background: transparent;
    -webkit-text-fill-color: #1a1a1a;
    -webkit-background-clip: initial;
    background-clip: initial;
}

.philosophy-item-detail .philosophy-subtitle {
    font-size: clamp(0.7rem, 1.4vw, 0.85rem);
    color: rgba(0, 0, 0, 0.5);
    font-style: italic;
    margin-bottom: clamp(2rem, 4vw, 3rem);
}

.philosophy-item-detail .philosophy-text {
    border-left: none;
    padding-left: 0;
}

.philosophy-item-detail .philosophy-text p {
    font-size: clamp(0.7rem, 1.4vw, 0.8rem);
    line-height: 2;
    color: rgba(0, 0, 0, 0.7);
    letter-spacing: 0.03em;
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.philosophy-item-detail .philosophy-text p:last-child {
    margin-bottom: 0;
}

.philosophy-approach {
    max-width: 1200px;
    margin: 0 auto;
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s ease;
}

.philosophy-approach.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-subtitle {
    font-size: clamp(0.6rem, 1.2vw, 0.75rem);
    letter-spacing: 0.2em;
    color: rgba(0, 0, 0, 0.5);
    text-align: center;
    margin-bottom: clamp(0.5rem, 1vw, 1rem);
}

.section-title-small {
    font-size: clamp(1.3rem, 2.8vw, 2rem);
    font-weight: 300;
    letter-spacing: 0.05em;
    text-align: center;
    margin-bottom: clamp(3rem, 6vw, 4rem);
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: clamp(2rem, 4vw, 3rem);
}

.approach-item {
    padding: clamp(2rem, 4vw, 3rem);
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.approach-item:hover {
    background: rgba(0, 0, 0, 0.04);
    border-color: rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

.approach-number {
    font-size: clamp(0.6rem, 1.2vw, 0.75rem);
    color: rgba(0, 0, 0, 0.3);
    letter-spacing: 0.2em;
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.approach-title {
    font-size: clamp(0.85rem, 1.7vw, 1rem);
    font-weight: 500;
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
    letter-spacing: 0.05em;
}

.approach-text {
    font-size: clamp(0.65rem, 1.3vw, 0.75rem);
    line-height: 2;
    color: rgba(0, 0, 0, 0.6);
    letter-spacing: 0.03em;
}

.philosophy-cta {
    background: var(--primary);
    padding: clamp(6rem, 12vw, 10rem) 0;
    position: relative;
    overflow: hidden;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s ease;
}

.cta-content.visible {
    opacity: 1;
    transform: translateY(0);
}

.cta-title {
    font-size: clamp(1.5rem, 3.5vw, 2.5rem);
    font-weight: 400;
    margin-bottom: clamp(1.5rem, 3vw, 2rem);
    letter-spacing: 0.05em;
}

.cta-text {
    font-size: clamp(0.75rem, 1.5vw, 0.9rem);
    color: rgba(0, 0, 0, 0.7);
    line-height: 2;
    letter-spacing: 0.05em;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 1.5rem;
    padding: clamp(1rem, 2vw, 1.5rem) clamp(2rem, 4vw, 3rem);
    background: transparent;
    border: 1px solid rgba(0, 0, 0, 0.3);
    color: var(--text);
    text-decoration: none;
    font-size: clamp(0.75rem, 1.5vw, 0.9rem);
    letter-spacing: 0.1em;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #1a1a1a;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}

.cta-btn:hover::before {
    transform: translateX(0);
}

.cta-btn:hover {
    border-color: #1a1a1a;
    color: black;
}

.cta-btn span {
    position: relative;
    z-index: 1;
    transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-btn:hover span {
    color: black;
}

.cta-arrow {
    font-size: clamp(1rem, 2vw, 1.3rem);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-btn:hover .cta-arrow {
    transform: translateX(5px);
}

/* Contact CTA Section */
.contact-cta {
    width: 100%;
    background: var(--primary);
    padding: clamp(3rem, 4vw, 4rem) clamp(1.5rem, 4vw, 3rem);
    position: relative;
    z-index: 1;
}

.contact-cta-container {
    max-width: 800px;
    margin: 0 auto;
    padding: clamp(1.8rem, 3vw, 2.5rem) clamp(2rem, 4vw, 3rem);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(0.75rem, 1.5vw, 1rem);
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.contact-cta-container:hover {
    transform: translateY(-4px);
    box-shadow:
        0 16px 48px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.5);
    border-color: rgba(255, 255, 255, 0.4);
}

.contact-cta-container:active {
    transform: translateY(-2px);
}

.contact-cta-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: contactShimmer 3s ease-in-out infinite;
}

@keyframes contactShimmer {
    0%, 100% {
        left: -100%;
    }
    50% {
        left: 100%;
    }
}

.contact-cta-heading {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--text);
    margin: 0;
    line-height: 1.3;
    position: relative;
    z-index: 1;
}

.contact-cta-text {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: clamp(0.7rem, 1vw, 0.8rem);
    font-weight: 400;
    letter-spacing: 0.12em;
    color: var(--text-light);
    margin: 0;
    position: relative;
    z-index: 1;
}

.contact-cta-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: clamp(0.75rem, 1.2vw, 0.9rem) clamp(1.75rem, 2.5vw, 2rem);
    background: var(--text);
    color: var(--primary);
    font-family: 'Poppins', sans-serif;
    font-size: clamp(0.8rem, 1vw, 0.9rem);
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    margin-top: clamp(0.4rem, 0.8vw, 0.75rem);
    z-index: 1;
}

.contact-cta-arrow::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: left 0.5s ease;
}

.contact-cta-container:hover .contact-cta-arrow::before {
    left: 100%;
}

.contact-cta-arrow svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-cta-container:hover .contact-cta-arrow {
    transform: scale(1.05);
}

.contact-cta-container:hover .contact-cta-arrow svg {
    transform: translateX(4px);
}

/* Footer */
.footer {
    background: var(--primary);
    color: #1a1a1a;
    padding: clamp(8rem, 12vw, 10rem) clamp(1.5rem, 4vw, 3rem) clamp(3rem, 5vw, 4rem);
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    position: relative;
    z-index: 1;
}

.footer-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 4vw, 3rem);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: clamp(2rem, 5vw, 4rem);
    padding-bottom: clamp(2rem, 4vw, 3rem);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.footer-main {
    max-width: 500px;
}

.footer-logo {
    max-width: 180px;
    height: auto;
    margin-bottom: var(--spacing-xs);
}

.footer-tagline {
    font-size: clamp(0.6rem, 1vw, 0.7rem);
    color: rgba(0, 0, 0, 0.5);
    letter-spacing: 0.08em;
    margin-bottom: var(--spacing-sm);
}

.footer-description {
    font-size: clamp(0.65rem, 1.1vw, 0.75rem);
    line-height: 1.8;
    color: rgba(0, 0, 0, 0.6);
    letter-spacing: 0.02em;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1.5rem, 3vw, 2.5rem);
}

.footer-column h4 {
    font-size: clamp(0.55rem, 1vw, 0.65rem);
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: var(--spacing-xs);
    color: rgba(0, 0, 0, 0.5);
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column li {
    margin-bottom: 0.4rem;
}

.footer-column a {
    color: #1a1a1a;
    text-decoration: none;
    font-size: clamp(0.65rem, 1.1vw, 0.75rem);
    transition: opacity 0.3s ease;
    letter-spacing: 0.01em;
}

.footer-column a:hover {
    opacity: 0.6;
}

.footer-bottom {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    padding-top: var(--spacing-md);
    flex-wrap: wrap;
    gap: var(--spacing-md);
}

.footer-info {
    font-size: clamp(0.65rem, 1vw, 0.75rem);
    color: rgba(0, 0, 0, 0.4);
    letter-spacing: 0.02em;
}

/* iOSの自動リンク化を無効化 */
.footer-info a,
.footer-copyright a,
footer a[x-apple-data-detectors] {
    color: inherit !important;
    text-decoration: none !important;
    pointer-events: none;
}

.footer-copyright {
    font-size: clamp(0.65rem, 1vw, 0.75rem);
    color: rgba(0, 0, 0, 0.4);
    letter-spacing: 0.02em;
    margin-top: 0.5rem;
}

/* Fade-in Animation */
.fade-in {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    :root {
        --spacing-lg: 3rem;
        --spacing-xl: 4rem;
    }

    .nav-links {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .main-sections-grid {
        grid-template-columns: 1fr;
        gap: clamp(1.5rem, 3vw, 2rem);
    }

    .philosophy-grid {
        grid-template-columns: 1fr;
    }

    .business-content {
        grid-template-columns: 1fr;
    }

    .company-item {
        grid-template-columns: 1fr;
        gap: var(--spacing-xs);
    }

    .company-item dd {
        word-break: break-word;
        font-size: clamp(0.7rem, 2.5vw, 0.85rem);
    }

    .form-buttons {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        gap: var(--spacing-md);
        text-align: center;
    }

    .hero-title {
        font-size: clamp(2.5rem, 10vw, 4rem);
    }

    .hero-title-ja {
        white-space: nowrap;
        font-size: clamp(1.3rem, 6vw, 2rem);
    }

    .hero-title-en {
        font-size: clamp(0.55rem, 2.5vw, 0.8rem);
    }

    .opening-main {
        white-space: nowrap;
        font-size: clamp(1.3rem, 6vw, 2rem);
    }

    /* Custom Cursor - Disable on Mobile */
    .custom-cursor,
    .custom-cursor-dot {
        display: none !important;
    }

    body {
        cursor: auto;
    }
}

/* ============================================
   INDEX PAGE - MOBILE LAYOUT (768px)
   ============================================ */
@media (max-width: 768px) {
    /* Hero Section */
    .hero {
        min-height: 100vh;
        padding: clamp(1rem, 2vw, 2rem);
    }

    .hero-image {
        width: 95vw;
    }

    .hero-image img,
    .hero-image video {
        width: 100%;
        height: auto;
    }

    /* Scroll Indicator */
    .scroll-indicator {
        bottom: clamp(2rem, 4vh, 3rem);
    }

    /* About Section */
    .about-garabato {
        padding: clamp(4rem, 8vw, 6rem) clamp(1.5rem, 4vw, 2rem);
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: clamp(2.5rem, 5vw, 4rem);
    }

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

    .about-title-en {
        font-size: clamp(0.7rem, 2vw, 0.85rem);
        letter-spacing: 0.15em;
    }

    .about-title-ja {
        font-size: clamp(1.8rem, 5vw, 2.5rem);
        margin: clamp(0.5rem, 1vw, 0.8rem) 0;
    }

    .about-subtitle {
        font-size: clamp(1rem, 3vw, 1.3rem);
        margin: clamp(1rem, 2vw, 1.5rem) 0;
    }

    .about-formula {
        margin-top: clamp(1.5rem, 3vw, 2rem);
    }

    .about-formula p {
        font-size: clamp(0.85rem, 2.5vw, 1.1rem);
        padding: clamp(0.8rem, 2vw, 1rem) clamp(1.2rem, 3vw, 1.5rem);
    }

    .about-description {
        text-align: left;
    }

    .about-description p {
        font-size: clamp(0.9rem, 2.5vw, 1rem);
        line-height: 2;
        margin-bottom: clamp(1.2rem, 3vw, 1.8rem);
    }

    /* Philosophy Section */
    .philosophy-message {
        padding: clamp(4rem, 8vw, 6rem) 0;
    }

    .philosophy-content {
        grid-template-columns: 1fr;
    }

    .philosophy-logo {
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        padding: clamp(2.5rem, 5vw, 3.5rem) clamp(1.5rem, 4vw, 2rem);
        text-align: center;
    }

    .philosophy-heading {
        font-size: clamp(0.75rem, 2vw, 0.9rem);
        margin-bottom: clamp(1.5rem, 3vw, 2rem);
    }

    .philosophy-logo img {
        max-width: clamp(120px, 35vw, 160px);
    }

    .philosophy-items {
        padding: clamp(2.5rem, 5vw, 3.5rem) clamp(1.5rem, 4vw, 2rem);
        gap: clamp(2.5rem, 5vw, 3.5rem);
    }

    .philosophy-item {
        grid-template-columns: 1fr;
        gap: clamp(0.8rem, 2vw, 1.2rem);
        text-align: center;
    }

    .philosophy-label {
        padding-top: 0;
        font-size: clamp(0.65rem, 1.8vw, 0.75rem);
        letter-spacing: 0.2em;
    }

    .philosophy-title-ja {
        font-size: clamp(1.3rem, 4vw, 1.8rem);
        margin-bottom: clamp(0.3rem, 1vw, 0.5rem);
    }

    .philosophy-title-en {
        font-size: clamp(0.8rem, 2.2vw, 1rem);
    }

    /* What We Do Grid */
    .what-we-do-section {
        padding: clamp(4rem, 8vw, 6rem) clamp(1.5rem, 4vw, 2rem);
    }

    .wwd-grid {
        grid-template-columns: 1fr;
        gap: clamp(2rem, 4vw, 3rem);
    }

    .wwd-card {
        grid-template-columns: 1fr;
        padding: clamp(2rem, 4vw, 2.5rem);
    }

    .wwd-card-header {
        margin-bottom: clamp(1.5rem, 3vw, 2rem);
    }

    .wwd-card-title {
        font-size: clamp(1.5rem, 4.5vw, 2rem);
        margin-bottom: clamp(0.5rem, 1vw, 0.8rem);
    }

    .wwd-card-tagline {
        font-size: clamp(0.75rem, 2vw, 0.9rem);
        margin-bottom: clamp(1rem, 2vw, 1.5rem);
    }

    .wwd-view-more {
        font-size: clamp(0.7rem, 1.8vw, 0.85rem);
    }

    .wwd-card-content {
        flex-direction: column;
        gap: clamp(1.5rem, 3vw, 2rem);
    }

    .wwd-service {
        width: 100%;
    }

    .wwd-service-number {
        font-size: clamp(2.5rem, 7vw, 3.5rem);
    }

    .wwd-service-ja {
        font-size: clamp(1rem, 3vw, 1.3rem);
        margin-bottom: clamp(0.3rem, 1vw, 0.5rem);
    }

    .wwd-service-en {
        font-size: clamp(0.65rem, 1.8vw, 0.8rem);
        margin-bottom: clamp(0.8rem, 2vw, 1rem);
    }

    .wwd-service-description {
        font-size: clamp(0.85rem, 2.2vw, 0.95rem);
        line-height: 1.8;
    }

    /* Contact CTA */
    .contact-cta {
        padding: clamp(3rem, 6vw, 4rem) clamp(1.5rem, 4vw, 2rem);
    }

    .contact-cta-container {
        padding: clamp(2rem, 4vw, 2.5rem) clamp(1.5rem, 4vw, 2rem);
        border-radius: clamp(12px, 3vw, 20px);
    }

    .contact-cta-heading {
        font-size: clamp(1.3rem, 4vw, 1.8rem);
        line-height: 1.5;
        margin-bottom: clamp(1rem, 2vw, 1.5rem);
    }

    .contact-cta-text {
        font-size: clamp(0.85rem, 2.2vw, 0.95rem);
        line-height: 1.8;
        margin-bottom: clamp(1.5rem, 3vw, 2rem);
    }

    .contact-cta-arrow {
        width: 100%;
        max-width: 100%;
        justify-content: center;
        font-size: clamp(0.85rem, 2.2vw, 1rem);
    }

    /* Company Section */
    .company-section {
        padding: clamp(4rem, 8vw, 6rem) 0;
    }

    .company-title {
        font-size: clamp(1.5rem, 4.5vw, 2rem);
        margin-bottom: clamp(1.5rem, 3vw, 2rem);
    }

    .company-details {
        gap: clamp(1rem, 2.5vw, 1.5rem);
    }

    .company-detail-item dt {
        font-size: clamp(0.75rem, 2vw, 0.85rem);
        min-width: clamp(70px, 20vw, 100px);
    }

    .company-detail-item dd {
        font-size: clamp(0.85rem, 2.2vw, 0.95rem);
    }

    /* Footer */
    .footer {
        padding: clamp(3rem, 6vw, 4rem) clamp(1.5rem, 4vw, 2rem) clamp(2rem, 4vw, 2.5rem);
    }

    .footer-container {
        padding: 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: clamp(2rem, 4vw, 2.5rem);
        padding-bottom: clamp(1.5rem, 3vw, 2rem);
    }

    .footer-main {
        max-width: 100%;
        text-align: center;
    }

    .footer-logo {
        max-width: clamp(120px, 35vw, 150px);
        margin: 0 auto clamp(0.8rem, 2vw, 1rem);
    }

    .footer-tagline {
        font-size: clamp(0.6rem, 1.6vw, 0.7rem);
        margin-bottom: clamp(0.8rem, 1.8vw, 1rem);
    }

    .footer-description {
        font-size: clamp(0.7rem, 1.8vw, 0.8rem);
        line-height: 1.8;
        text-align: center;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: clamp(1.5rem, 3vw, 2rem);
        text-align: center;
    }

    .footer-column h4 {
        font-size: clamp(0.6rem, 1.6vw, 0.7rem);
        margin-bottom: clamp(0.6rem, 1.5vw, 0.8rem);
    }

    .footer-column li {
        margin-bottom: clamp(0.4rem, 1.2vw, 0.6rem);
    }

    .footer-column a {
        font-size: clamp(0.75rem, 2vw, 0.85rem);
    }

    .footer-bottom {
        justify-content: center;
        text-align: center;
        padding-top: clamp(1.2rem, 2.5vw, 1.5rem);
        flex-direction: column;
        gap: clamp(0.5rem, 1.5vw, 0.8rem);
    }

    .footer-info,
    .footer-copyright {
        font-size: clamp(0.65rem, 1.6vw, 0.75rem);
    }
}

@media (max-width: 480px) {
    /* Extra Small Mobile Adjustments */
    .nav-container {
        padding: clamp(0.8rem, 2vw, 1rem);
    }

    .container {
        padding: 0 clamp(1rem, 3vw, 1.5rem);
    }

    /* Hero */
    .hero-title-ja {
        font-size: clamp(1.1rem, 5.5vw, 1.5rem);
    }

    .hero-title-en {
        font-size: clamp(0.5rem, 2.2vw, 0.7rem);
    }

    /* About */
    .about-title-ja {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }

    .about-subtitle {
        font-size: clamp(0.9rem, 3.5vw, 1.2rem);
    }

    /* Philosophy */
    .philosophy-title-ja {
        font-size: clamp(1.2rem, 5vw, 1.6rem);
    }

    /* WWD Cards */
    .wwd-card {
        padding: clamp(1.5rem, 5vw, 2rem);
    }

    .wwd-card-title {
        font-size: clamp(1.3rem, 5.5vw, 1.8rem);
    }

    /* News Grid */
    .news-grid {
        grid-template-columns: 1fr;
    }

    /* Company */
    .company-map {
        min-height: 220px;
    }

    /* Footer */
    .footer {
        padding: clamp(2.5rem, 7vw, 3.5rem) clamp(1rem, 3vw, 1.5rem) clamp(1.5rem, 4vw, 2rem);
    }

    .footer-logo {
        max-width: clamp(100px, 40vw, 130px);
    }

    .footer-tagline {
        font-size: clamp(0.55rem, 1.5vw, 0.65rem);
    }

    .footer-description {
        font-size: clamp(0.65rem, 2vw, 0.75rem);
        line-height: 1.7;
    }

    .footer-links {
        gap: clamp(1.3rem, 4vw, 1.8rem);
    }

    .footer-column h4 {
        font-size: clamp(0.55rem, 1.5vw, 0.65rem);
    }

    .footer-column a {
        font-size: clamp(0.7rem, 2vw, 0.8rem);
    }

    .footer-bottom {
        padding-top: clamp(1rem, 2.5vw, 1.3rem);
    }
}

/* ============================================
   WHAT WE DO PAGE - MOBILE LAYOUT (768px)
   ============================================ */
@media (max-width: 768px) {
    /* WWD Services Grid */
    .wwd-services-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    /* WWD Main Feature */
    .wwd-main-feature {
        height: 60vh;
        min-height: 450px;
    }

    .wwd-feature-number {
        font-size: clamp(3rem, 10vw, 6rem);
    }

    .wwd-feature-overlay {
        padding: 2rem;
    }

    .wwd-secondary-feature {
        margin-top: 4rem;
    }

    /* Media Section Mobile */
    .wwd-media-section {
        margin-top: 5rem;
        padding: 4rem 0;
    }

    .wwd-media-header .wwd-feature-number {
        font-size: clamp(4rem, 12vw, 8rem);
    }

    .wwd-media-grid {
        grid-template-columns: 1fr;
        gap: 0;
        background: transparent;
    }

    .wwd-media-card {
        padding: 2rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .wwd-studio-vision {
        margin-top: 3rem;
        padding: 3rem 2rem;
    }

    .wwd-studio-vision::before {
        font-size: 3rem;
    }

    /* WWD Service Cards & Production Cards */
    .wwd-service-cards {
        grid-template-columns: 1fr;
    }

    .wwd-production-cards {
        grid-template-columns: 1fr;
        gap: clamp(2rem, 4vw, 2.5rem);
    }

    /* WWD Content Container */
    .wwd-content-container {
        padding: clamp(1.5rem, 3vw, 2rem) clamp(1.2rem, 2.5vw, 1.5rem);
        gap: clamp(3rem, 6vw, 4rem);
    }

    .wwd-detail-section {
        grid-template-columns: 1fr;
        gap: clamp(2rem, 4vw, 3rem);
    }

    .wwd-detail-image-container {
        min-height: clamp(300px, 40vh, 400px);
    }

    /* WWD Tabs & Overview */
    .wwd-tabs {
        flex-direction: column;
        gap: clamp(0.8rem, 1.5vw, 1rem);
        padding: clamp(1rem, 2vw, 1.2rem) clamp(1.5rem, 3vw, 2rem);
    }

    .wwd-tab-button {
        width: 100%;
        font-size: clamp(0.75rem, 1.2vw, 0.85rem);
        padding: clamp(0.75rem, 1.5vw, 0.9rem) clamp(1.5rem, 3vw, 2rem);
        text-align: center;
    }

    .wwd-overview-container {
        flex-direction: column;
        gap: clamp(2rem, 4vw, 3rem);
        padding: clamp(2rem, 4vw, 3rem) clamp(1.5rem, 3vw, 2rem);
    }

    .wwd-overview-title-section {
        flex: 1;
        padding-right: 0;
        text-align: center;
    }

    .wwd-overview-items {
        gap: clamp(2rem, 4vw, 3rem);
    }
}

/* ============================================
   NEWS PAGE - MOBILE LAYOUT (768px)
   ============================================ */
@media (max-width: 768px) {
    .news-list-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   CONTACT PAGE - MOBILE LAYOUT (768px)
   ============================================ */
@media (max-width: 768px) {
    /* Form Row */
    .form-row {
        grid-template-columns: 1fr;
    }

    /* Step Indicator */
    .step-indicator {
        gap: 0.5rem;
    }

    .step-line {
        width: 30px;
    }

    .step-number {
        width: 40px;
        height: 40px;
    }

    .step-label {
        display: none;
    }

    .form-step-title {
        font-size: clamp(1.2rem, 4.5vw, 1.5rem) !important;
    }

    /* Purpose Options */
    .purpose-options {
        display: block !important;
    }

    .purpose-option {
        margin-bottom: 0.8rem;
    }

    .purpose-card {
        padding: clamp(1.5rem, 4vw, 2rem);
    }

    .purpose-title {
        font-size: clamp(0.9rem, 3vw, 1rem);
    }

    .purpose-description {
        font-size: clamp(0.65rem, 2vw, 0.75rem);
    }

    /* Confirmation */
    .confirmation-item {
        display: block !important;
        padding: 0.8rem 0;
    }

    .confirmation-value {
        overflow-wrap: break-word;
        word-break: break-word;
        font-size: clamp(0.85rem, 3vw, 1rem);
    }

    /* Form Buttons */
    .form-buttons {
        flex-direction: column;
    }

    .btn-prev,
    .btn-next,
    .btn-submit {
        width: 100%;
    }
}

/* Philosophy Page Styles */
.philosophy-page-hero {
    background: var(--primary);
    padding: clamp(8rem, 14vw, 12rem) 0 clamp(3rem, 6vw, 5rem);
    text-align: center;
}

.philosophy-page-hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.philosophy-page-main-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 300;
    letter-spacing: 0.1em;
    margin-bottom: clamp(2rem, 4vw, 3rem);
    color: #1a1a1a;
    text-transform: uppercase;
}

.philosophy-page-subtitle-ja {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    font-weight: 400;
    letter-spacing: 0.08em;
    margin-bottom: clamp(0.8rem, 1.5vw, 1.2rem);
    color: #1a1a1a;
}

.philosophy-page-subtitle-en {
    font-size: clamp(0.85rem, 1.7vw, 1.1rem);
    color: rgba(0, 0, 0, 0.6);
    letter-spacing: 0.15em;
    font-style: italic;
}

.philosophy-content-section {
    background: var(--primary);
    padding: 0;
}

.philosophy-content-intro {
    text-align: center;
    margin-bottom: clamp(5rem, 10vw, 8rem);
}

.philosophy-content-text {
    font-size: clamp(0.8rem, 1.6vw, 1rem);
    color: rgba(0, 0, 0, 0.7);
    line-height: 2;
    letter-spacing: 0.05em;
}

.philosophy-content-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
    position: relative;
}

.philosophy-content-item-left {
    grid-template-areas: "text image";
}

.philosophy-content-item-right {
    grid-template-areas: "image text";
}

.philosophy-content-image {
    grid-area: image;
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.philosophy-content-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.philosophy-content-item:hover .philosophy-content-image img {
    transform: scale(1.05);
}

.philosophy-content-text-block {
    grid-area: text;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(3rem, 8vw, 8rem);
    background: var(--primary);
}

.philosophy-content-label {
    font-size: clamp(0.55rem, 1.1vw, 0.65rem);
    letter-spacing: 0.2em;
    color: rgba(0, 0, 0, 0.4);
    margin-bottom: clamp(1.5rem, 3vw, 2rem);
    text-transform: uppercase;
}

.philosophy-content-heading {
    font-size: clamp(1.4rem, 2.6vw, 2rem);
    font-weight: 500;
    margin-bottom: clamp(0.5rem, 1vw, 0.8rem);
    color: #1a1a1a;
    white-space: nowrap;
}

.philosophy-content-subtitle {
    font-size: clamp(0.85rem, 1.6vw, 1.1rem);
    color: rgba(0, 0, 0, 0.5);
    font-style: italic;
    margin-bottom: clamp(2rem, 4vw, 3rem);
}

.philosophy-content-body p {
    font-size: clamp(0.9rem, 1.6vw, 1.05rem);
    line-height: 1.8;
    color: rgba(0, 0, 0, 0.7);
    letter-spacing: 0.03em;
    margin-bottom: clamp(1.2rem, 2.4vw, 1.8rem);
}

.philosophy-content-body p:last-child {
    margin-bottom: 0;
}

.philosophy-approach-section {
    max-width: 1000px;
    margin: 0 auto;
    padding-top: clamp(3rem, 6vw, 5rem);
}

.philosophy-approach-subtitle {
    font-size: clamp(0.6rem, 1.2vw, 0.75rem);
    letter-spacing: 0.2em;
    color: rgba(0, 0, 0, 0.5);
    text-align: center;
    margin-bottom: clamp(0.5rem, 1vw, 1rem);
    text-transform: uppercase;
}

.philosophy-approach-title {
    font-size: clamp(1.3rem, 2.6vw, 1.8rem);
    font-weight: 300;
    letter-spacing: 0.05em;
    text-align: center;
    margin-bottom: clamp(3rem, 6vw, 4rem);
    color: #1a1a1a;
}

.philosophy-approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: clamp(2rem, 4vw, 3rem);
}

.philosophy-approach-card {
    padding: clamp(2rem, 4vw, 3rem);
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.philosophy-approach-card:hover {
    background: rgba(0, 0, 0, 0.04);
    border-color: rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

.philosophy-approach-number {
    font-size: clamp(0.6rem, 1.2vw, 0.75rem);
    color: rgba(0, 0, 0, 0.3);
    letter-spacing: 0.2em;
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.philosophy-approach-card-title {
    font-size: clamp(0.85rem, 1.7vw, 1rem);
    font-weight: 500;
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
    letter-spacing: 0.05em;
    color: #1a1a1a;
}

.philosophy-approach-card-text {
    font-size: clamp(0.65rem, 1.3vw, 0.75rem);
    line-height: 2;
    color: rgba(0, 0, 0, 0.6);
    letter-spacing: 0.03em;
}

.philosophy-cta-section {
    background: var(--primary);
    padding: clamp(6rem, 12vw, 10rem) 0;
}

.philosophy-cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.philosophy-cta-title {
    font-size: clamp(1.5rem, 3.5vw, 2.5rem);
    font-weight: 400;
    margin-bottom: clamp(1.5rem, 3vw, 2rem);
    letter-spacing: 0.05em;
    color: #1a1a1a;
}

.philosophy-cta-text {
    font-size: clamp(0.75rem, 1.5vw, 0.9rem);
    color: rgba(0, 0, 0, 0.7);
    line-height: 2;
    margin-bottom: clamp(3rem, 6vw, 4rem);
    letter-spacing: 0.05em;
}

.philosophy-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 1.5rem;
    padding: clamp(1rem, 2vw, 1.5rem) clamp(2rem, 4vw, 3rem);
    background: transparent;
    border: 1px solid rgba(0, 0, 0, 0.3);
    color: #1a1a1a;
    text-decoration: none;
    font-size: clamp(0.75rem, 1.5vw, 0.9rem);
    letter-spacing: 0.1em;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.philosophy-cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #1a1a1a;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}

.philosophy-cta-button:hover::before {
    transform: translateX(0);
}

.philosophy-cta-button:hover {
    border-color: #1a1a1a;
    color: black;
}

.philosophy-cta-button span {
    position: relative;
    z-index: 1;
    transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.philosophy-cta-button:hover span {
    color: black;
}

.philosophy-cta-arrow {
    font-size: clamp(1rem, 2vw, 1.3rem);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.philosophy-cta-button:hover .philosophy-cta-arrow {
    transform: translateX(5px);
}

/* What We Do Page Styles */
.wwd-content-section {
    background: var(--primary);
    padding: 0 0 clamp(6rem, 12vw, 10rem);
}

/* Main Feature - Bold & Minimal */
.wwd-main-feature {
    position: relative;
    height: 50vh;
    min-height: 400px;
    margin-bottom: clamp(3rem, 6vw, 5rem);
    overflow: hidden;
    cursor: pointer;
}

.wwd-feature-image {
    width: 100%;
    height: 100%;
    position: relative;
}

.wwd-feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7) saturate(0.9);
    transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.wwd-main-feature:hover .wwd-feature-image img {
    transform: scale(1.08);
    filter: brightness(0.5) saturate(1);
}

.wwd-feature-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: clamp(3rem, 8vw, 6rem);
    z-index: 2;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 100%);
}

/* Big Bold Number */
.wwd-feature-number {
    display: block;
    font-size: clamp(4rem, 12vw, 10rem);
    font-weight: 200;
    letter-spacing: -0.02em;
    color: rgba(255, 255, 255, 0.15);
    line-height: 1;
    position: absolute;
    top: clamp(2rem, 6vw, 4rem);
    right: clamp(2rem, 6vw, 4rem);
    transition: all 0.6s ease;
}

.wwd-main-feature:hover .wwd-feature-number {
    color: rgba(255, 255, 255, 0.3);
    transform: translateX(-10px);
}

.wwd-feature-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 300;
    letter-spacing: -0.01em;
    color: #fff;
    margin-bottom: clamp(0.5rem, 1.5vw, 1rem);
    transform: translateY(20px);
    opacity: 0.9;
    transition: all 0.6s ease;
}

.wwd-main-feature:hover .wwd-feature-title {
    transform: translateY(0);
    opacity: 1;
}

.wwd-feature-tagline {
    font-size: clamp(0.9rem, 1.8vw, 1.2rem);
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.2em;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.6s ease 0.1s;
}

.wwd-main-feature:hover .wwd-feature-tagline {
    transform: translateY(0);
    opacity: 1;
}

/* Services Grid - Minimal & Clean */
.wwd-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    max-width: 1600px;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.08);
}

.wwd-service-card {
    background: var(--primary);
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.wwd-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: #1a1a1a;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.wwd-service-card:hover::before {
    transform: scaleX(1);
}

.wwd-service-card:hover {
    background: rgba(0, 0, 0, 0.02);
}

/* Service Header */
.wwd-service-header {
    padding: clamp(1.5rem, 3vw, 2rem);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.wwd-service-number {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 200;
    letter-spacing: -0.02em;
    color: rgba(0, 0, 0, 0.1);
    line-height: 1;
    transition: all 0.4s ease;
}

.wwd-service-card:hover .wwd-service-number {
    color: rgba(0, 0, 0, 0.25);
    transform: translateX(5px);
}

.wwd-service-category {
    font-size: clamp(0.65rem, 1.2vw, 0.75rem);
    font-weight: 500;
    letter-spacing: 0.15em;
    color: rgba(0, 0, 0, 0.5);
    text-transform: uppercase;
}

/* Service Image */
.wwd-service-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.wwd-service-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    transition: background 0.5s ease;
}

.wwd-service-card:hover .wwd-service-image::after {
    background: rgba(0, 0, 0, 0.1);
}

.wwd-service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.wwd-service-card:hover .wwd-service-image img {
    transform: scale(1.1);
}

/* Service Content */
.wwd-service-content {
    padding: clamp(1.5rem, 3vw, 2rem);
}

.wwd-service-title {
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: clamp(0.3rem, 0.6vw, 0.5rem);
    letter-spacing: -0.01em;
    transition: transform 0.4s ease;
}

.wwd-service-card:hover .wwd-service-title {
    transform: translateX(5px);
}

.wwd-service-subtitle {
    font-size: clamp(0.7rem, 1.3vw, 0.85rem);
    color: rgba(0, 0, 0, 0.4);
    font-weight: 300;
    margin-bottom: clamp(1.5rem, 3vw, 2rem);
    letter-spacing: 0.05em;
}

.wwd-service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.wwd-service-list li {
    font-size: clamp(0.75rem, 1.4vw, 0.9rem);
    color: rgba(0, 0, 0, 0.6);
    line-height: 1.9;
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: clamp(0.5rem, 1vw, 0.7rem);
    transition: all 0.3s ease;
}

.wwd-service-card:hover .wwd-service-list li {
    transform: translateX(3px);
}

.wwd-service-list li:last-child {
    margin-bottom: 0;
}

.wwd-service-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.7em;
    width: 8px;
    height: 1px;
    background: rgba(0, 0, 0, 0.25);
    transition: width 0.3s ease;
}

.wwd-service-card:hover .wwd-service-list li::before {
    width: 12px;
}

/* Secondary Feature */
.wwd-secondary-feature {
    margin-top: clamp(6rem, 12vw, 10rem);
}

/* Media & Contents Section - Bold Typography */
.wwd-media-section {
    margin-top: clamp(4rem, 8vw, 6rem);
    padding: clamp(3rem, 6vw, 5rem) 0;
    background: #0a0a0a;
    position: relative;
}

.wwd-media-header {
    text-align: left;
    margin-bottom: clamp(3rem, 6vw, 4rem);
    position: relative;
}

.wwd-media-header .wwd-feature-number {
    position: relative;
    top: auto;
    right: auto;
    font-size: clamp(6rem, 15vw, 12rem);
    color: rgba(255, 255, 255, 0.05);
    margin-bottom: -2rem;
}

.wwd-media-header .wwd-feature-title {
    color: #fff;
    font-size: clamp(2rem, 5vw, 4rem);
}

.wwd-media-header .wwd-feature-tagline {
    color: rgba(255, 255, 255, 0.5);
    opacity: 1;
    transform: none;
}

.wwd-media-lead {
    font-size: clamp(0.85rem, 1.6vw, 1rem);
    color: rgba(255, 255, 255, 0.6);
    line-height: 2.2;
    margin-top: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    max-width: 500px;
}

.wwd-media-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.wwd-media-card {
    background: #0a0a0a;
    padding: clamp(2.5rem, 5vw, 4rem);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.wwd-media-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #fff;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.wwd-media-card:hover::before {
    transform: scaleX(1);
}

.wwd-media-card:hover {
    background: rgba(255, 255, 255, 0.03);
}

.wwd-media-card-header {
    margin-bottom: clamp(2rem, 4vw, 3rem);
    padding-bottom: clamp(1.5rem, 3vw, 2rem);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.wwd-media-number {
    display: block;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    color: rgba(255, 255, 255, 0.1);
    font-weight: 200;
    letter-spacing: -0.02em;
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
    transition: all 0.4s ease;
}

.wwd-media-card:hover .wwd-media-number {
    color: rgba(255, 255, 255, 0.25);
    transform: translateX(5px);
}

.wwd-media-title {
    font-size: clamp(1.1rem, 2.2vw, 1.5rem);
    font-weight: 400;
    color: #fff;
    letter-spacing: 0.01em;
    margin-bottom: clamp(0.4rem, 0.8vw, 0.6rem);
    transition: transform 0.4s ease;
}

.wwd-media-card:hover .wwd-media-title {
    transform: translateX(5px);
}

.wwd-media-subtitle {
    font-size: clamp(0.7rem, 1.3vw, 0.85rem);
    color: rgba(255, 255, 255, 0.4);
    font-weight: 300;
    letter-spacing: 0.05em;
}

.wwd-media-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.wwd-media-list li {
    position: relative;
    padding-left: 1.5rem;
    font-size: clamp(0.72rem, 1.4vw, 0.85rem);
    color: rgba(255, 255, 255, 0.6);
    line-height: 2;
    margin-bottom: 0.8rem;
    transition: all 0.3s ease;
}

.wwd-media-card:hover .wwd-media-list li {
    transform: translateX(3px);
}

.wwd-media-list li:last-child {
    margin-bottom: 0;
}

.wwd-media-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.8em;
    width: 6px;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
    transition: width 0.3s ease;
}

.wwd-media-card:hover .wwd-media-list li::before {
    width: 10px;
}

/* Garabato Studio Vision */
.wwd-studio-vision {
    margin-top: clamp(5rem, 10vw, 8rem);
    padding: clamp(4rem, 8vw, 6rem);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.wwd-studio-vision::before {
    content: 'STUDIO';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: clamp(4rem, 12vw, 10rem);
    font-weight: 200;
    color: rgba(255, 255, 255, 0.02);
    letter-spacing: 0.1em;
    white-space: nowrap;
}

.wwd-studio-vision-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.wwd-studio-label {
    font-size: clamp(0.6rem, 1.2vw, 0.7rem);
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.25em;
    text-transform: uppercase;
    margin-bottom: clamp(1.5rem, 3vw, 2rem);
    font-weight: 400;
}

.wwd-studio-tagline {
    font-size: clamp(1.1rem, 2.2vw, 1.5rem);
    color: #fff;
    font-weight: 400;
    line-height: 2;
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
    letter-spacing: 0.02em;
}

.wwd-studio-description {
    font-size: clamp(0.75rem, 1.4vw, 0.9rem);
    color: rgba(255, 255, 255, 0.5);
    line-height: 2;
    font-weight: 300;
}

/* News List Page Styles */
.news-list-section {
    background: var(--primary);
    padding: clamp(4rem, 8vw, 6rem) 0 clamp(6rem, 12vw, 10rem);
}

.news-list-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: clamp(2rem, 4vw, 3rem);
    max-width: 1200px;
    margin: 0 auto;
}

.news-list-item {
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.news-list-item:hover {
    background: rgba(0, 0, 0, 0.04);
    border-color: rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

.news-list-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.news-list-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.news-list-item:hover .news-list-image img {
    transform: scale(1.05);
}

.news-list-content {
    padding: clamp(1.5rem, 3vw, 2rem);
}

.news-list-date {
    display: block;
    font-size: clamp(0.6rem, 1.2vw, 0.7rem);
    color: rgba(0, 0, 0, 0.4);
    letter-spacing: 0.1em;
    margin-bottom: clamp(0.8rem, 1.6vw, 1rem);
}

.news-list-title {
    font-size: clamp(0.9rem, 1.8vw, 1.15rem);
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: clamp(0.8rem, 1.6vw, 1rem);
    line-height: 1.5;
}

.news-list-excerpt {
    font-size: clamp(0.68rem, 1.36vw, 0.78rem);
    color: rgba(0, 0, 0, 0.6);
    line-height: 1.8;
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.news-list-link {
    display: inline-block;
    font-size: clamp(0.65rem, 1.3vw, 0.75rem);
    color: rgba(0, 0, 0, 0.8);
    text-decoration: none;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
}

.news-list-link:hover {
    color: #1a1a1a;
    transform: translateX(5px);
}

/* Contact Form Page Styles */
.contact-form-section {
    background: #ffffff;
    background-size: 20px 20px, 20px 20px, 100% 100%;
    padding: clamp(4rem, 8vw, 6rem) 0 clamp(6rem, 12vw, 10rem);
    min-height: 100vh;
    position: relative;
}

.contact-form-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Step Indicator - Minimal Line Style */
.step-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: clamp(4rem, 8vw, 6rem);
    gap: 0;
    position: relative;
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 clamp(1.5rem, 4vw, 3rem);
    position: relative;
}

.step-item.active {
    opacity: 1;
}

.step-item.completed {
    opacity: 1;
}

.step-number {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 500;
    color: rgba(0, 0, 0, 0.2);
    line-height: 1;
    transition: all 0.5s ease;
    letter-spacing: -0.02em;
}

.step-item.active .step-number {
    color: var(--text);
    transform: scale(1.1);
}

.step-item.completed .step-number {
    color: rgba(0, 0, 0, 0.4);
}

.step-label {
    font-size: clamp(0.7rem, 1.4vw, 0.85rem);
    color: rgba(0, 0, 0, 0.35);
    letter-spacing: 0.1em;
    font-weight: 500;
}

.step-item.active .step-label {
    color: var(--text);
}

.step-item.completed .step-label {
    color: rgba(0, 0, 0, 0.5);
}

.step-line {
    width: 60px;
    height: 1px;
    background: rgba(0, 0, 0, 0.15);
    margin: 0 0.5rem;
}

/* Form Steps */
.multi-step-form {
    position: relative;
}

.form-step {
    display: none;
    animation: contactFadeIn 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-step.active {
    display: block;
}

@keyframes contactFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-step-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 300;
    color: var(--text);
    text-align: center;
    margin-bottom: clamp(0.5rem, 1vw, 0.8rem);
    letter-spacing: -0.01em;
}

.form-step-subtitle {
    font-size: clamp(0.7rem, 1.4vw, 0.85rem);
    color: var(--text-light);
    text-align: center;
    font-weight: 300;
    letter-spacing: 0.1em;
    margin-bottom: clamp(4rem, 8vw, 5rem);
}

/* Purpose Options - Interactive Cards */
.purpose-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1rem, 2vw, 1.5rem);
    margin-bottom: clamp(3rem, 6vw, 4rem);
    background: transparent;
}

.purpose-option {
    cursor: pointer;
}

.purpose-option input[type="radio"] {
    display: none;
}

.purpose-card {
    background: var(--primary);
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: clamp(3rem, 6vw, 4rem);
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.purpose-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--text);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.purpose-card:hover {
    background: rgba(0, 0, 0, 0.02);
    border-color: rgba(0, 0, 0, 0.2);
}

.purpose-card:hover::before {
    transform: scaleX(1);
}

.purpose-option input[type="radio"]:checked + .purpose-card {
    background: var(--text);
    border-color: var(--text);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.purpose-option input[type="radio"]:checked + .purpose-card::before {
    transform: scaleX(1);
    background: var(--primary);
}

.purpose-icon {
    margin-bottom: 2rem;
    color: rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
}

.purpose-card:hover .purpose-icon {
    color: rgba(0, 0, 0, 0.6);
    transform: scale(1.1);
}

.purpose-option input[type="radio"]:checked + .purpose-card .purpose-icon {
    color: var(--primary);
    transform: scale(1.1);
}

.purpose-title {
    font-size: clamp(1rem, 2vw, 1.3rem);
    font-weight: 400;
    color: var(--text);
    margin-bottom: 1rem;
    letter-spacing: 0.02em;
    transition: all 0.4s ease;
}

.purpose-card:hover .purpose-title {
    transform: translateY(-3px);
}

.purpose-option input[type="radio"]:checked + .purpose-card .purpose-title {
    color: var(--primary);
}

.purpose-description {
    font-size: clamp(0.65rem, 1.3vw, 0.78rem);
    color: var(--text-light);
    letter-spacing: 0.05em;
    transition: color 0.4s ease;
}

.purpose-option input[type="radio"]:checked + .purpose-card .purpose-description {
    color: rgba(255, 255, 255, 0.7);
}

/* Form Rows - 2 Column Layout */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(1.5rem, 3vw, 2rem);
}

/* Form Groups - Light Theme */
.form-group {
    margin-bottom: clamp(2rem, 4vw, 2.5rem);
}

.form-label {
    display: block;
    font-size: clamp(0.65rem, 1.3vw, 0.75rem);
    color: var(--text-light);
    margin-bottom: 1rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: clamp(1rem, 2vw, 1.3rem) clamp(1.2rem, 2.4vw, 1.5rem);
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
    color: var(--text);
    font-size: clamp(0.85rem, 1.7vw, 1rem);
    font-family: 'Poppins', sans-serif;
    transition: all 0.4s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-bottom-color: var(--text);
    background: rgba(0, 0, 0, 0.02);
}

.form-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='rgba(0,0,0,0.4)' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.2rem;
}

.form-select option {
    background: var(--primary);
    color: var(--text);
    padding: 1rem;
}

.form-textarea {
    resize: vertical;
    min-height: 150px;
    border: 1px solid rgba(0, 0, 0, 0.15);
}

.form-textarea:focus {
    border-color: rgba(0, 0, 0, 0.4);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: rgba(0, 0, 0, 0.25);
}

/* Form Buttons - Minimal Style */
.form-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: clamp(4rem, 8vw, 5rem);
}

.btn-prev,
.btn-next,
.btn-submit,
.btn-return {
    padding: clamp(1rem, 2vw, 1.3rem) clamp(2.5rem, 5vw, 4rem);
    font-size: clamp(0.75rem, 1.5vw, 0.9rem);
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.1em;
    border: 1px solid rgba(0, 0, 0, 0.2);
    background: transparent;
    color: var(--text);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-prev::before,
.btn-next::before,
.btn-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--text);
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.btn-prev:hover::before,
.btn-next:hover::before,
.btn-submit:hover::before {
    transform: translateX(0);
}

.btn-prev:hover,
.btn-next:hover {
    color: var(--primary);
    border-color: var(--text);
}

.btn-next,
.btn-submit {
    background: rgba(0, 0, 0, 0.03);
}

.btn-submit {
    background: var(--text);
    color: var(--primary);
    border-color: var(--text);
}

.btn-submit::before {
    background: var(--primary);
}

.btn-submit:hover {
    color: var(--text);
}

/* Confirmation - Light Theme */
.confirmation-content {
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: clamp(2rem, 4vw, 3rem);
    margin-bottom: clamp(2rem, 4vw, 3rem);
}

.confirmation-item {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 2rem;
    padding: clamp(1.2rem, 2.4vw, 1.8rem) 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.confirmation-item:last-child {
    border-bottom: none;
}

.confirmation-label {
    font-size: clamp(0.7rem, 1.4vw, 0.8rem);
    color: var(--text-light);
    letter-spacing: 0.05em;
}

.confirmation-value {
    font-size: clamp(0.9rem, 1.8vw, 1.1rem);
    color: var(--text);
    line-height: 1.6;
}

/* Success Message */
.form-success {
    display: none;
    text-align: center;
    padding: clamp(4rem, 8vw, 6rem) clamp(2rem, 4vw, 3rem);
}

.form-success.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.success-icon {
    color: #4CAF50;
    margin-bottom: 2rem;
}

.success-title {
    font-size: clamp(1.8rem, 3.6vw, 2.5rem);
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.success-message {
    font-size: clamp(0.9rem, 1.8vw, 1.1rem);
    color: rgba(0, 0, 0, 0.7);
    line-height: 1.8;
    margin-bottom: 3rem;
}

.btn-return {
    display: inline-block;
}

/* Print Styles */
@media print {
    .nav,
    .scroll-indicator,
    .menu-toggle {
        display: none;
    }

    section {
        page-break-inside: avoid;
    }
}

/* ============================================
   Custom Cursor (Logo Style - Black circle with white dot)
   ============================================ */
.custom-cursor {
    position: fixed;
    width: 32px;
    height: 32px;
    background: #000;
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease;
}

.custom-cursor-dot {
    position: fixed;
    width: 10px;
    height: 10px;
    background: #fff;
    border-radius: 50%;
    pointer-events: none;
    z-index: 10001;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease;
}

.custom-cursor.cursor-hover {
    width: 48px;
    height: 48px;
}

.custom-cursor-dot.cursor-hover {
    width: 18px;
    height: 18px;
}

/* Hide default cursor */
body:not([data-touch="true"]) {
    cursor: none;
}

body:not([data-touch="true"]) a,
body:not([data-touch="true"]) button,
body:not([data-touch="true"]) .news-card,
body:not([data-touch="true"]) .main-section {
    cursor: none;
}

/* ============================================
   Scroll Animations
   ============================================ */
.scroll-hidden {
    opacity: 0;
    transform: translateY(40px);
}

.scroll-animate {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Staggered animations for specific elements */
.main-section.scroll-animate {
    transition-delay: calc(var(--stagger, 0) * 0.1s);
}

.news-card.scroll-hidden {
    transform: translateY(30px) scale(0.95);
}

.news-card.scroll-animate {
    transform: translateY(0) scale(1);
}

/* ============================================
   Kinetic Typography - Flowing Text Animation
   ============================================ */
.hero-catchphrase-wrapper {
    position: fixed;
    top: 50%;
    left: 0;
    width: 100%;
    height: auto;
    transform: translateY(-50%);
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
    user-select: none;
}

@keyframes flow-text {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-16.666%);
    }
}

.hero-catchphrase {
    display: inline-block;
    white-space: nowrap;
    animation: flow-text 20s linear infinite;
}

.hero-catchphrase span {
    display: inline-block;
}

.kinetic-char {
    display: inline-block;
    opacity: 1;
}

/* ============================================
   Enhanced Hero Parallax
   ============================================ */
.hero-image,
.hero-catchphrase {
    will-change: transform, opacity;
}

/* Mobile: disable custom cursor */
/* ============================================
   About Garabato Section
   ============================================ */
.about-garabato {
    padding: clamp(4rem, 8vw, 6rem) 0;
    background: linear-gradient(to bottom, #fafafa 0%, #ffffff 100%);
    position: relative;
}

.about-garabato::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.05) 50%, transparent 100%);
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(2rem, 4vw, 4rem);
}

.about-header {
    margin-bottom: clamp(6rem, 12vw, 10rem);
    text-align: center;
    position: relative;
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 1s ease, transform 1s ease;
}

.about-garabato.scroll-animate .about-header {
    opacity: 1;
    transform: translateY(0);
}

.about-heading {
    font-size: clamp(0.65rem, 1.3vw, 0.75rem);
    font-weight: 600;
    letter-spacing: 0.4em;
    color: var(--text-light);
    text-transform: uppercase;
    position: relative;
    display: inline-block;
}

.about-heading::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 1px;
    background: var(--text-light);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(4rem, 8vw, 8rem);
    align-items: start;
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 1s ease 0.3s, transform 1s ease 0.3s;
}

.about-garabato.scroll-animate .about-content {
    opacity: 1;
    transform: scale(1);
}

.about-intro {
    text-align: left;
    position: relative;
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 1.2s ease 0.6s, transform 1.2s ease 0.6s;
}

.about-garabato.scroll-animate .about-intro {
    opacity: 1;
    transform: translateX(0);
}

.about-title-en {
    font-size: clamp(0.6rem, 1.2vw, 0.7rem);
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--text-light);
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
    text-transform: uppercase;
    position: relative;
    padding-left: 3.5rem;
}

.about-title-en::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 2.5rem;
    height: 1px;
    background: var(--text-light);
}

.about-title-ja {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    letter-spacing: 0.02em;
    color: #1a1a1a;
    margin-bottom: clamp(0.5rem, 1vw, 0.8rem);
    line-height: 1.2;
    white-space: nowrap;
}

.about-subtitle {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    letter-spacing: 0.03em;
    color: #1a1a1a;
    line-height: 1.2;
    white-space: nowrap;
}

.about-subtitle .highlight-gray {
    color: #888888;
}

.about-description {
    display: flex;
    flex-direction: column;
    gap: clamp(2rem, 4vw, 3rem);
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 1.2s ease 0.8s, transform 1.2s ease 0.8s;
}

.about-garabato.scroll-animate .about-description {
    opacity: 1;
    transform: translateX(0);
}

.about-description p {
    font-size: clamp(0.75rem, 1.5vw, 0.85rem);
    line-height: 2.2;
    letter-spacing: 0.05em;
    color: var(--text);
    text-align: left;
}

.about-formula {
    text-align: left;
    margin-top: clamp(1.5rem, 3vw, 2rem);
}

.about-formula p {
    font-size: clamp(1rem, 2vw, 1.3rem);
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--text);
    font-family: 'Poppins', sans-serif;
    font-style: normal;
}

/* ============================================
   Philosophy Message Section
   ============================================ */
.philosophy-message {
    padding: clamp(3rem, 6vw, 5rem) clamp(2rem, 4vw, 4rem);
    background: rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 1;
}

.philosophy-message::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(to right, rgba(200, 150, 150, 0.05) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(200, 150, 150, 0.05) 1px, transparent 1px);
    background-size: 20px 20px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    pointer-events: none;
    z-index: -1;
}

.philosophy-logo .philosophy-heading {
    font-size: clamp(0.65rem, 1.3vw, 0.75rem);
    font-weight: 500;
    letter-spacing: 0.2em;
    color: var(--text-light);
    margin: 0;
}

.philosophy-content {
    display: grid;
    grid-template-columns: 4.5fr 5.5fr;
    min-height: 60vh;
}

.philosophy-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
    gap: 0;
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 1s ease, transform 1s ease;
}

.philosophy-message.in-view .philosophy-logo {
    opacity: 1;
    transform: translateX(0);
}

.philosophy-logo img {
    max-width: 400px;
    height: auto;
}

.philosophy-items {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0;
    gap: 0;
    border-left: none;
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 1s ease 0.3s, transform 1s ease 0.3s;
}

.philosophy-message.in-view .philosophy-items {
    opacity: 1;
    transform: translateX(0);
}

.philosophy-item {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 0;
    padding: clamp(1.8rem, 3.5vw, 2.5rem) 0;
    align-items: baseline;
    background: transparent;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

.philosophy-item:last-child {
    border-bottom: none;
}

.philosophy-label {
    display: block;
    font-size: clamp(0.6rem, 1vw, 0.7rem);
    font-weight: 500;
    letter-spacing: 0.05em;
    color: #1a1a1a;
    padding-top: 0;
}

.philosophy-text {
    display: flex;
    flex-direction: column;
    gap: clamp(0.3rem, 0.6vw, 0.5rem);
    border-left: none;
}

.philosophy-title-ja {
    font-size: clamp(1.2rem, 2.4vw, 1.6rem);
    font-weight: 700;
    letter-spacing: 0.01em;
    line-height: 1.5;
    color: var(--text);
    white-space: nowrap;
}

.philosophy-title-en {
    font-size: clamp(0.6rem, 1vw, 0.75rem);
    font-weight: 500;
    letter-spacing: 0.03em;
    color: #888888;
    line-height: 1.6;
}

/* ============================================
   What We Do Section
   ============================================ */
.what-we-do-section {
    padding: clamp(3rem, 6vw, 5rem) 0;
    position: relative;
    background: url('img/wwd_section_bg.png') center center / cover no-repeat;
}

.what-we-do-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    pointer-events: none;
    z-index: 0;
}

.wwd-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(2rem, 4vw, 4rem);
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s ease, transform 1s ease;
}

.wwd-container.scroll-animate {
    opacity: 1;
    transform: translateY(0);
}

.wwd-grid {
    display: flex;
    flex-direction: column;
    gap: clamp(1rem, 2vw, 1.5rem);
}

.wwd-card {
    display: grid;
    grid-template-columns: 5.5fr 4.5fr;
    align-items: flex-start;
    gap: clamp(3rem, 6vw, 5rem);
    text-decoration: none;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    padding: clamp(2rem, 4vw, 3rem) clamp(2.5rem, 5vw, 4rem);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.wwd-card:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.9);
}

.wwd-card-header {
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    gap: clamp(0.5rem, 1vw, 0.8rem);
}

.wwd-card-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 700;
    letter-spacing: 0.01em;
    color: #1a1a1a;
    line-height: 1;
    margin-bottom: clamp(0.8rem, 1.5vw, 1.2rem);
}

.wwd-card-tagline {
    font-size: clamp(0.75rem, 1.3vw, 0.9rem);
    font-weight: 500;
    letter-spacing: 0.02em;
    color: #888888;
}

.wwd-card-content {
    display: flex;
    flex-direction: column;
    gap: clamp(1.5rem, 3vw, 2rem);
    max-width: 500px;
}

.wwd-service {
    display: flex;
    gap: clamp(0.5rem, 1vw, 0.8rem);
    align-items: flex-start;
}

.wwd-service-number {
    font-size: clamp(0.6rem, 1vw, 0.7rem);
    font-weight: 600;
    color: #888888;
    flex-shrink: 0;
}

.wwd-service-text {
    flex: 1;
}

.wwd-service-ja {
    font-size: clamp(0.75rem, 1.3vw, 0.9rem);
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #1a1a1a;
    margin-bottom: 0.2rem;
}

.wwd-service-en {
    font-size: clamp(0.6rem, 1vw, 0.7rem);
    font-weight: 500;
    letter-spacing: 0.08em;
    color: #888888;
    text-transform: uppercase;
}

.wwd-service-description {
    font-size: clamp(0.65rem, 1.1vw, 0.75rem);
    line-height: 1.7;
    color: #666666;
    margin-top: clamp(0.5rem, 1vw, 0.8rem);
    letter-spacing: 0.02em;
}

.wwd-view-more {
    font-size: clamp(0.65rem, 1.1vw, 0.75rem);
    font-weight: 600;
    letter-spacing: 0.08em;
    color: #ffffff;
    background: #1a1a1a;
    text-transform: uppercase;
    transition: background 0.3s ease, transform 0.3s ease;
    margin-top: clamp(1.2rem, 2vw, 1.5rem);
    display: inline-block;
    padding: clamp(0.5rem, 0.8vw, 0.6rem) clamp(0.8rem, 1.2vw, 1rem);
    border-radius: 50px;
    max-width: 120px;
    text-align: center;
}

.wwd-card:hover .wwd-view-more {
    background: #333333;
    transform: translateY(-2px);
}

/* ============================================
   Page Transition Animation - Curtain Style
   ============================================ */
.page-transition-overlay {
    display: none;
}

/* Left panel */
.page-transition-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: #1a1a1a;
    transform: translateX(-100%);
    transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}

/* Right panel */
.page-transition-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: #1a1a1a;
    transform: translateX(100%);
    transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}

/* Closing animation - panels slide in to cover screen */
.page-transition-overlay.closing::before {
    transform: translateX(0);
}

.page-transition-overlay.closing::after {
    transform: translateX(0);
}

/* Page loaded state - panels cover screen */
.page-transition-overlay.loaded::before,
.page-transition-overlay.loaded::after {
    transform: translateX(0);
    transition: none;
}

/* Opening animation - panels slide out to reveal page */
.page-transition-overlay.loaded.opening::before {
    transform: translateX(-100%);
    transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}

.page-transition-overlay.loaded.opening::after {
    transform: translateX(100%);
    transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}

/* ============================================
   What We Do - Scroll Storytelling System
   ============================================ */

/* Section Container & Layout */
.wwd-scroll-section {
    position: relative;
    background: #ffffff;
    color: #1a1a1a;
}

.wwd-scroll-section[data-business="media"] {
    background: #0a0a0a;
    color: #ffffff;
}

/* Section Hero */
.wwd-section-hero {
    padding: clamp(3rem, 5vw, 4rem) clamp(2rem, 4vw, 4rem);
    max-width: 1200px;
    margin: 0 auto;
}

.wwd-hero-header {
    margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
    text-align: center;
}

.wwd-hero-number {
    font-size: clamp(0.65rem, 1.1vw, 0.75rem);
    color: rgba(0, 0, 0, 0.4);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 500;
    display: block;
    margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.wwd-scroll-section[data-business="media"] .wwd-hero-number {
    color: rgba(255, 255, 255, 0.5);
}

.wwd-hero-title {
    font-size: clamp(1.6rem, 3.5vw, 2.5rem);
    font-weight: 300;
    letter-spacing: 0.02em;
    line-height: 1.2;
    margin: 0 0 clamp(0.5rem, 1vw, 0.8rem);
}

.wwd-hero-subtitle {
    font-size: clamp(0.75rem, 1.3vw, 0.95rem);
    color: rgba(0, 0, 0, 0.5);
    letter-spacing: 0.08em;
    font-style: italic;
    font-weight: 300;
}

.wwd-scroll-section[data-business="media"] .wwd-hero-subtitle {
    color: rgba(255, 255, 255, 0.6);
}

/* Overview Cards - Old styles removed, see new styles in Tab System section below */

/* Simple Content Container (Replaces 2-column layout) */
.wwd-content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: clamp(2rem, 4vw, 4rem) clamp(2.5rem, 5vw, 5rem);
    display: flex;
    flex-direction: column;
    gap: clamp(3rem, 6vw, 6rem);
}

/* OLD 2-Column Grid Container - DEPRECATED */
/* .wwd-two-column-container {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: clamp(1.5rem, 3vw, 2.5rem);
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(2rem, 4vw, 4rem) clamp(3rem, 5vw, 4rem);
    min-height: 100vh;
} */

/* OLD Fixed Navigation (Left Column) - DEPRECATED */
/* .wwd-fixed-nav {
    position: sticky;
    top: clamp(6rem, 10vh, 8rem);
    height: fit-content;
    padding: clamp(1.5rem, 3vw, 2rem) 0;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
}

.wwd-scroll-section[data-business="media"] .wwd-fixed-nav {
    border-right-color: rgba(255, 255, 255, 0.1);
}

.wwd-nav-items {
    display: flex;
    flex-direction: column;
}

.wwd-nav-item {
    display: block;
    padding: clamp(1rem, 2vw, 1.5rem) clamp(1rem, 2vw, 1.5rem) clamp(1rem, 2vw, 1.5rem) 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.4;
    position: relative;
}

.wwd-scroll-section[data-business="media"] .wwd-nav-item {
    border-bottom-color: rgba(255, 255, 255, 0.05);
    color: #ffffff;
}

.wwd-nav-item:last-child {
    border-bottom: none;
}

.wwd-nav-item.active {
    opacity: 1;
    transform: translateX(10px);
}

.wwd-nav-item:hover {
    opacity: 0.7;
}

.wwd-nav-number {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    font-weight: 200;
    color: rgba(0, 0, 0, 0.8);
    display: block;
    line-height: 1;
    margin-bottom: clamp(0.3rem, 0.6vw, 0.4rem);
}

.wwd-scroll-section[data-business="media"] .wwd-nav-number {
    color: rgba(255, 255, 255, 0.8);
}

.wwd-nav-title {
    font-size: clamp(0.75rem, 1.3vw, 0.95rem);
    font-weight: 500;
    display: block;
    margin-bottom: 0.2rem;
    color: inherit;
}

.wwd-nav-subtitle {
    font-size: clamp(0.6rem, 1vw, 0.75rem);
    letter-spacing: 0.1em;
    color: rgba(0, 0, 0, 0.4);
    text-transform: uppercase;
    display: block;
    font-weight: 500;
}

.wwd-scroll-section[data-business="media"] .wwd-nav-subtitle {
    color: rgba(255, 255, 255, 0.4);
} */

/* OLD Progress Bar - DEPRECATED */
/* .wwd-nav-progress {
    position: absolute;
    right: 0;
    top: 0;
    width: 2px;
    height: 100%;
    background: rgba(0, 0, 0, 0.05);
}

.wwd-scroll-section[data-business="media"] .wwd-nav-progress {
    background: rgba(255, 255, 255, 0.05);
}

.wwd-nav-progress-bar {
    width: 100%;
    height: 0;
    background: #1a1a1a;
    transition: height 0.3s ease;
}

.wwd-scroll-section[data-business="media"] .wwd-nav-progress-bar {
    background: #ffffff;
} */

/* OLD Scrolling Content (Right Column) - DEPRECATED */
/* .wwd-scroll-content {
    display: flex;
    flex-direction: column;
    gap: clamp(6rem, 12vh, 8rem);
    padding: clamp(2rem, 4vw, 3rem) 0;
} */

.wwd-detail-section {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    column-gap: clamp(3rem, 6vw, 6rem);
    row-gap: clamp(1.5rem, 3vw, 2rem);
    align-items: start;
}

/* Image Container */
.wwd-detail-image-container {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: clamp(1rem, 2vw, 1.5rem);
    opacity: 0;
    transform: translateY(60px) scale(0.95);
    transition: opacity 1s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.wwd-detail-image-container.in-view {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.wwd-detail-image-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 66.67%; /* 3:2 aspect ratio */
    overflow: hidden;
    border-radius: 4px;
}

.wwd-detail-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    will-change: transform;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.wwd-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(0, 0, 0, 0.05) 100%
    );
    pointer-events: none;
}

/* Content Area */
.wwd-detail-content {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    display: flex;
    flex-direction: column;
    gap: clamp(0.8rem, 1.5vw, 1.2rem);
}

.wwd-detail-label {
    display: flex;
    align-items: baseline;
    gap: 0.8rem;
    margin-bottom: clamp(0.8rem, 1.5vw, 1.2rem);
}

.wwd-detail-number {
    font-size: clamp(0.85rem, 1.6vw, 1.2rem);
    font-weight: 700;
    color: rgba(0, 0, 0, 0.3);
}

.wwd-scroll-section[data-business="media"] .wwd-detail-number {
    color: rgba(255, 255, 255, 0.4);
}

.wwd-detail-category {
    font-size: clamp(0.65rem, 1.1vw, 0.75rem);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.5);
    font-weight: 700;
}

.wwd-scroll-section[data-business="media"] .wwd-detail-category {
    color: rgba(255, 255, 255, 0.6);
}

.wwd-detail-heading {
    font-size: clamp(1.3rem, 2.8vw, 2rem);
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1.3;
    margin: 0;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition-delay: 0.1s;
}

.wwd-detail-heading.in-view {
    opacity: 1;
    transform: translateY(0);
}

.wwd-detail-subtitle {
    font-size: clamp(0.7rem, 1.2vw, 0.9rem);
    font-style: italic;
    color: rgba(0, 0, 0, 0.5);
    font-weight: 700;
    margin: 0;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition-delay: 0.2s;
}

.wwd-scroll-section[data-business="media"] .wwd-detail-subtitle {
    color: rgba(255, 255, 255, 0.6);
}

.wwd-detail-subtitle.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* Detail Body */
.wwd-detail-body {
    display: flex;
    flex-direction: column;
    gap: clamp(0.8rem, 1.6vw, 1.2rem);
}

.wwd-detail-body p {
    font-size: clamp(0.75rem, 1.5vw, 0.85rem);
    line-height: 1.8;
    color: rgba(0, 0, 0, 0.7);
    letter-spacing: 0.02em;
    margin: 0;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.wwd-scroll-section[data-business="media"] .wwd-detail-body p {
    color: rgba(255, 255, 255, 0.75);
}

.wwd-detail-body p:nth-child(1) { transition-delay: 0.3s; }
.wwd-detail-body p:nth-child(2) { transition-delay: 0.4s; }
.wwd-detail-body p:nth-child(3) { transition-delay: 0.5s; }
.wwd-detail-body p:nth-child(4) { transition-delay: 0.6s; }
.wwd-detail-body p:nth-child(5) { transition-delay: 0.7s; }

.wwd-detail-body p.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* Feature Box */
.wwd-feature-box {
    padding: clamp(1.2rem, 2.5vw, 1.8rem);
    background: rgba(0, 0, 0, 0.02);
    border-left: 3px solid #1a1a1a;
    border-radius: 2px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition-delay: 0.8s;
}

.wwd-scroll-section[data-business="media"] .wwd-feature-box {
    background: rgba(255, 255, 255, 0.05);
    border-left-color: #ffffff;
}

.wwd-feature-box.in-view {
    opacity: 1;
    transform: translateY(0);
}

.wwd-feature-box-title {
    font-size: clamp(0.8rem, 1.4vw, 1rem);
    font-weight: 600;
    letter-spacing: 0.05em;
    margin: 0 0 clamp(0.5rem, 1vw, 0.7rem);
}

.wwd-feature-box-text {
    font-size: clamp(0.7rem, 1.2vw, 0.85rem);
    line-height: 1.7;
    color: rgba(0, 0, 0, 0.65);
    letter-spacing: 0.02em;
    margin: 0;
}

.wwd-scroll-section[data-business="media"] .wwd-feature-box-text {
    color: rgba(255, 255, 255, 0.7);
}

/* Platform Badges */
.wwd-platform-badges {
    display: flex;
    gap: clamp(0.8rem, 1.5vw, 1.2rem);
    flex-wrap: wrap;
    margin-top: clamp(1.5rem, 3vw, 2rem);
}

.wwd-platform-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: clamp(0.5rem, 1vw, 0.65rem) clamp(1rem, 2vw, 1.4rem);
    font-size: clamp(0.6rem, 1.1vw, 0.7rem);
    letter-spacing: 0.12em;
    font-weight: 600;
    background: #ffffff;
    color: #0a0a0a;
    border-radius: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.wwd-platform-badge i {
    font-size: clamp(0.8rem, 1.4vw, 1rem);
}

.wwd-platform-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

/* Service Cards (for Media section) */
.wwd-service-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1.5rem, 3vw, 2rem);
    margin-top: clamp(2rem, 4vw, 3rem);
}

.wwd-service-mini-card {
    padding: clamp(1.5rem, 3vw, 2rem);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.wwd-service-mini-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.2);
}

.wwd-service-mini-title {
    font-size: clamp(1rem, 1.8vw, 1.3rem);
    font-weight: 500;
    letter-spacing: 0.02em;
    margin: 0 0 clamp(0.5rem, 1vw, 0.7rem);
}

.wwd-service-mini-label {
    font-size: clamp(0.6rem, 1.1vw, 0.7rem);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
    margin: 0;
}

/* Content Production Header */
.wwd-content-production-header {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.wwd-content-production-header .wwd-detail-label {
    justify-content: center;
    margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.wwd-content-production-header .wwd-detail-body {
    max-width: 700px;
    margin: clamp(1.5rem, 3vw, 2rem) auto 0;
}

/* Production Cards Grid */
.wwd-production-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(2rem, 4vw, 3rem);
    margin-bottom: clamp(4rem, 8vw, 6rem);
}

.wwd-production-card {
    position: relative;
    overflow: hidden;
}


.wwd-production-image-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 75%; /* 4:3 aspect ratio */
    overflow: hidden;
    background: #1a1a1a;
    border-radius: 8px;
}

.wwd-production-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.wwd-production-card:hover .wwd-production-image {
    transform: scale(1.05);
}

.wwd-production-card-content {
    padding: clamp(1rem, 2vw, 1.5rem);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(0.3rem, 0.6vw, 0.5rem);
}

.wwd-production-card-title {
    font-size: clamp(0.85rem, 1.3vw, 1rem);
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #000000;
    margin: 0;
    font-family: 'Noto Sans JP', sans-serif;
}

.wwd-production-card-label {
    font-size: clamp(0.55rem, 0.9vw, 0.65rem);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.6);
    font-weight: 400;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

/* Reduce animation delays on mobile */
    .wwd-detail-heading { transition-delay: 0.05s; }
    .wwd-detail-subtitle { transition-delay: 0.1s; }
    .wwd-detail-body p:nth-child(1) { transition-delay: 0.15s; }
    .wwd-detail-body p:nth-child(2) { transition-delay: 0.2s; }
    .wwd-detail-body p:nth-child(3) { transition-delay: 0.25s; }
    .wwd-detail-body p:nth-child(4) { transition-delay: 0.3s; }
    .wwd-detail-body p:nth-child(5) { transition-delay: 0.35s; }
    .wwd-feature-box { transition-delay: 0.4s; }

    /* Adjust image heights */
    .wwd-detail-image-container {
        height: auto;
        min-height: auto;
    }

    .wwd-section-hero {
        padding: clamp(4rem, 8vw, 6rem) clamp(1.5rem, 3vw, 2rem);
    }
}

/* Accessibility - Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .wwd-detail-image-container,
    .wwd-detail-heading,
    .wwd-detail-subtitle,
    .wwd-detail-body p,
    .wwd-feature-box {
        transition: none !important;
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }

    .wwd-detail-image {
        transform: none !important;
    }

    .wwd-nav-item {
        transition: opacity 0.2s ease;
    }
}

/* Touch Device Optimization */
.touch-device .wwd-detail-image {
    transform: none !important;
}

.touch-device .wwd-detail-image-container:active {
    transform: scale(0.98);
}
/* ==========================================================================
   What We Do - Tab System Styles
   ========================================================================== */

/* Main Container */
.wwd-main-container {
    background: rgba(255, 255, 255, 0.9);
    color: #1a1a1a;
    position: relative;
    z-index: 1;
    padding: 0 clamp(2rem, 4vw, 4rem);
}

.wwd-main-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(to right, rgba(200, 150, 150, 0.05) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(200, 150, 150, 0.05) 1px, transparent 1px);
    background-size: 20px 20px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    pointer-events: none;
    z-index: -1;
}

/* Tab Buttons - New Design */
.wwd-tabs {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(0.6rem, 1.2vw, 0.8rem);
    padding: clamp(0.8rem, 1.5vw, 1.2rem) clamp(1.5rem, 3vw, 2rem);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 62px;
    left: 0;
    right: 0;
    z-index: 999;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.wwd-tab-button {
    position: relative;
    background: transparent;
    border: 1.5px solid rgba(0, 0, 0, 0.15);
    border-radius: 50px;
    padding: clamp(0.45rem, 0.9vw, 0.6rem) clamp(0.9rem, 1.8vw, 1.2rem);
    font-size: clamp(0.65rem, 1vw, 0.75rem);
    font-weight: 600;
    cursor: pointer;
    color: rgba(0, 0, 0, 0.6);
    letter-spacing: 0.03em;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Poppins', sans-serif;
    white-space: nowrap;
    overflow: hidden;
}

.wwd-tab-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #1a1a1a;
    border-radius: 50px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.wwd-tab-button.active {
    color: #ffffff;
    border-color: #1a1a1a;
}

.wwd-tab-button.active::before {
    transform: scaleX(1);
}

.wwd-tab-button:hover:not(.active) {
    color: rgba(0, 0, 0, 0.85);
    border-color: rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

.wwd-tab-button:focus {
    outline: none;
}

.wwd-tab-button:focus-visible {
    outline: 2px solid #1a1a1a;
    outline-offset: 4px;
}

/* Unified Overview Container */
.wwd-overview-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: clamp(3rem, 6vw, 6rem);
    max-width: 1200px;
    margin: 0 auto;
    padding: clamp(4rem, 8vw, 6rem) clamp(2.5rem, 5vw, 5rem) clamp(4rem, 8vw, 8rem);
    background: rgba(255, 255, 255, 0.4);
}

/* Business Title Section (Left side) */
.wwd-overview-title-section {
    flex: 0 0 45%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: clamp(0.5rem, 1vw, 1rem);
    padding-right: clamp(2rem, 4vw, 3rem);
}

.wwd-business-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.5rem, 4.5vw, 3.8rem);
    font-weight: 600;
    line-height: 1;
    color: #1a1a1a;
    margin: 0;
}

.wwd-business-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(0.85rem, 1.3vw, 1.1rem);
    font-weight: 400;
    line-height: 1.4;
    color: rgba(0, 0, 0, 0.6);
    margin: 0;
}

.wwd-overview-items {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: clamp(2.5rem, 5vw, 4rem);
}

.wwd-overview-item {
    display: flex;
    flex-direction: column;
    gap: clamp(0.8rem, 1.5vw, 1.2rem);
}

.wwd-overview-header {
    display: flex;
    align-items: flex-start;
    gap: 0;
}

.wwd-overview-number {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    font-weight: 400;
    color: #1a1a1a;
    font-family: 'Poppins', sans-serif;
    line-height: 1.3;
    border-left: 2px solid #1a1a1a;
    padding-left: clamp(0.8rem, 1.5vw, 1rem);
    padding-right: clamp(1rem, 2vw, 1.5rem);
    flex-shrink: 0;
    min-width: clamp(3.5rem, 6vw, 5rem);
}

.wwd-overview-title-group {
    display: flex;
    flex-direction: column;
    gap: clamp(0.2rem, 0.4vw, 0.3rem);
}

.wwd-overview-title {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-weight: 600;
    color: #1a1a1a;
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.3;
    margin: 0;
}

.wwd-overview-subtitle {
    font-size: clamp(0.55rem, 0.9vw, 0.7rem);
    font-weight: 400;
    color: rgba(0, 0, 0, 0.5);
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    line-height: 1.4;
    margin: 0;
}

.wwd-overview-text {
    font-size: clamp(0.7rem, 1.1vw, 0.85rem);
    font-weight: 400;
    color: rgba(0, 0, 0, 0.7);
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.8;
    margin: 0;
    font-feature-settings: normal;
}

/* Em dash specific font override for proper display */
.wwd-overview-text {
    font-variant-east-asian: normal;
}

@supports (font-variant-numeric: normal) {
    .wwd-overview-text {
        font-family: 'Noto Sans JP', 'Georgia', 'Times New Roman', sans-serif;
    }
}

/* Detail Content Container */
.wwd-detail-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    padding-top: clamp(3.5rem, 7vw, 5rem);
}

.wwd-tab-content {
    display: none;
}

.wwd-tab-content.active {
    display: block;
    animation: fadeInContent 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes fadeInContent {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   PHILOSOPHY PAGE - DETAIL SECTION
   ============================================ */
.philosophy-detail-section {
    background: var(--primary);
    padding: clamp(4rem, 8vw, 6rem) 0;
}

.philosophy-detail-item {
    margin-bottom: clamp(4rem, 8vw, 6rem);
    padding-bottom: clamp(4rem, 8vw, 6rem);
    border-bottom: 1px solid rgba(26, 26, 26, 0.1);
}

.philosophy-detail-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.philosophy-detail-header {
    display: flex;
    align-items: baseline;
    gap: clamp(0.8rem, 1.5vw, 1.2rem);
    margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.philosophy-detail-label {
    font-size: clamp(0.7rem, 1.2vw, 0.85rem);
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--text);
    text-transform: uppercase;
}

.philosophy-detail-sublabel {
    font-size: clamp(0.65rem, 1vw, 0.75rem);
    font-weight: 400;
    letter-spacing: 0.05em;
    color: var(--text-light);
}

.philosophy-detail-content {
    max-width: 1200px;
}

.philosophy-detail-title-ja {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--text);
    margin-bottom: clamp(0.5rem, 1vw, 0.8rem);
    line-height: 1.4;
}

.philosophy-detail-title-en {
    font-size: clamp(0.7rem, 1.2vw, 0.85rem);
    font-weight: 400;
    letter-spacing: 0.08em;
    color: var(--text-light);
    margin-bottom: clamp(2rem, 4vw, 3rem);
}

.philosophy-detail-body {
    font-size: clamp(0.8rem, 1.3vw, 0.92rem);
    line-height: 2.2;
    color: var(--text);
    letter-spacing: 0.03em;
}

.philosophy-detail-body p {
    margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.philosophy-detail-body p:last-child {
    margin-bottom: 0;
}

/* ============================================
   PHILOSOPHY VIEW MORE BUTTON
   ============================================ */
.philosophy-view-more {
    font-size: clamp(0.65rem, 1.1vw, 0.75rem);
    font-weight: 600;
    letter-spacing: 0.08em;
    color: #ffffff;
    background: #1a1a1a;
    text-transform: uppercase;
    padding: clamp(0.5rem, 0.8vw, 0.6rem) clamp(0.8rem, 1.2vw, 1rem);
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    margin-top: clamp(1.5rem, 2.5vw, 2rem);
    transition: background 0.3s ease, transform 0.3s ease;
}

.philosophy-view-more:hover {
    background: #333333;
    transform: translateY(-2px);
}

/* ============================================
   INDEX PAGE - MOBILE OVERRIDES (768px)
   ============================================ */
@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr !important;
        gap: clamp(2rem, 5vw, 3rem);
    }

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

    .about-title-en {
        padding-left: 0;
        justify-content: center;
        margin-bottom: clamp(1rem, 3vw, 1.5rem);
    }

    .about-title-en::before {
        display: none;
    }

    .about-title-ja {
        margin-bottom: clamp(0.3rem, 1vw, 0.5rem);
    }

    .about-subtitle {
        margin: clamp(0.5rem, 1.5vw, 0.8rem) 0;
    }

    .about-formula p {
        font-size: clamp(0.7rem, 2.5vw, 0.85rem);
        letter-spacing: 0.02em;
        white-space: nowrap;
        text-align: center;
        padding: 0;
    }

    /* Philosophy Section */
    .philosophy-content {
        grid-template-columns: 1fr !important;
    }

    .philosophy-logo {
        padding: clamp(2rem, 5vw, 3rem) clamp(1rem, 3vw, 1.5rem);
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    }

    .philosophy-logo img {
        max-width: clamp(250px, 65vw, 350px);
    }

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

    .philosophy-item {
        grid-template-columns: 1fr !important;
        text-align: center;
        padding: clamp(1.5rem, 4vw, 2rem) clamp(1rem, 3vw, 1.5rem);
    }

    .philosophy-title-ja {
        font-size: clamp(1.2rem, 4vw, 1.6rem);
    }

    .philosophy-title-en {
        font-size: clamp(0.6rem, 2vw, 0.75rem);
    }

    .philosophy-body {
        font-size: clamp(0.75rem, 2.5vw, 0.9rem);
        text-align: center;
    }

    .philosophy-text {
        padding-left: 0;
    }

    /* What We Do Section */
    .what-we-do-section {
        padding: clamp(3rem, 6vw, 4rem) clamp(1rem, 3vw, 1.5rem);
    }

    .wwd-container {
        padding-left: 0;
        padding-right: 0;
    }

    .wwd-grid {
        grid-template-columns: 1fr !important;
        gap: clamp(1.5rem, 4vw, 2rem);
    }

    .wwd-card {
        grid-template-columns: 1fr !important;
        padding: clamp(3rem, 7vw, 4rem) clamp(1.5rem, 4vw, 2rem);
        gap: clamp(1rem, 3vw, 1.5rem);
    }

    .wwd-card-header {
        text-align: center;
        margin-bottom: clamp(1rem, 3vw, 1.5rem);
        gap: clamp(0.3rem, 1vw, 0.5rem);
    }

    .wwd-card-title {
        font-size: clamp(1.8rem, 6vw, 2.2rem);
        margin-bottom: 0;
    }

    .wwd-card-tagline {
        font-size: clamp(0.7rem, 2vw, 0.85rem);
        margin-bottom: 0;
    }

    .wwd-view-more {
        margin: clamp(1rem, 2vw, 1.2rem) auto 0;
    }

    .wwd-card-content {
        flex-direction: column;
        gap: clamp(2rem, 5vw, 3rem);
    }

    .wwd-service {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .wwd-service-number {
        font-size: clamp(0.8rem, 2.5vw, 1rem);
    }

    .wwd-service-ja {
        font-size: clamp(0.9rem, 3vw, 1.1rem);
    }

    .wwd-service-en {
        font-size: clamp(0.6rem, 1.8vw, 0.75rem);
    }

    .wwd-service-description {
        font-size: clamp(0.75rem, 2.2vw, 0.9rem);
        text-align: center;
    }

    .about-description {
        gap: 0;
    }

    /* News Section */
    .news {
        padding: clamp(3rem, 6vw, 4rem) 0;
    }

    .news-card {
        width: clamp(280px, 75vw, 320px);
    }

    .news-card-title {
        font-size: clamp(0.7rem, 2.5vw, 0.85rem);
    }

    .news-card-image {
        height: clamp(150px, 40vw, 200px);
    }

    /* Company Section */
    .company {
        padding: clamp(3rem, 6vw, 4rem) 0;
    }

    /* Philosophy Message */
    .philosophy-message {
        background: rgba(255, 255, 255, 0.7);
    }

    /* Menu Toggle */
    .menu-toggle {
        background: #1a1a1a !important;
        border-color: #1a1a1a !important;
    }

    .menu-toggle::before {
        display: none !important;
    }

    .menu-toggle .menu-text {
        color: #ffffff !important;
        background: transparent !important;
        font-size: 0.7rem;
        font-weight: 600;
    }

    .menu-toggle .menu-icon .line {
        background: #ffffff !important;
    }

    .menu-toggle:hover .menu-text {
        color: #ffffff !important;
        background: transparent !important;
    }

    .menu-toggle:hover .menu-icon .line {
        background: #ffffff !important;
    }

    .menu-toggle.active {
        background: #ffffff !important;
        border-color: #1a1a1a !important;
    }

    .menu-toggle.active .menu-text {
        color: #1a1a1a !important;
        background: transparent !important;
    }

    .menu-toggle.active .menu-icon .line {
        background: #1a1a1a !important;
    }

    /* Menu Footer - SNS only */
    .menu-footer {
        justify-content: center;
        border-top: none;
        padding-top: 0;
    }

    .menu-tagline {
        display: none;
    }

    .menu-social {
        justify-content: center;
    }

    /* Menu Link - No animation */
    .menu-link::before {
        display: none;
    }

    .menu-title {
        overflow: visible;
        font-size: clamp(1.2rem, 5vw, 1.6rem);
    }

    .menu-title span {
        transition: none;
    }

    .menu-link:hover .menu-title span {
        transform: none;
        opacity: 1;
    }

    /* Philosophy Detail Section - Mobile */
    .philosophy-detail-section {
        padding: clamp(3rem, 6vw, 4rem) 0;
    }

    .philosophy-detail-item {
        margin-bottom: clamp(3rem, 6vw, 4rem);
        padding-bottom: clamp(3rem, 6vw, 4rem);
    }

    .philosophy-detail-header {
        flex-direction: column;
        gap: clamp(0.3rem, 0.8vw, 0.5rem);
    }

    .philosophy-detail-body {
        font-size: clamp(0.8rem, 3vw, 0.95rem);
        line-height: 2;
    }

    .philosophy-detail-body br {
        display: none;
    }

    .philosophy-detail-title-ja {
        font-size: clamp(1.2rem, 5vw, 1.6rem);
    }

    .philosophy-detail-title-en {
        font-size: clamp(0.65rem, 2.2vw, 0.8rem);
    }

    .philosophy-detail-label {
        font-size: clamp(0.7rem, 2.5vw, 0.85rem);
    }

    .philosophy-detail-sublabel {
        font-size: clamp(0.6rem, 2vw, 0.7rem);
    }

    /* Philosophy View More - Mobile */
    .philosophy-view-more {
        margin: clamp(1.5rem, 3vw, 2rem) auto 0;
        display: block;
        max-width: 150px;
        text-align: center;
        font-size: clamp(0.6rem, 2.5vw, 0.75rem);
        padding: clamp(0.5rem, 2vw, 0.6rem) clamp(1rem, 3vw, 1.2rem);
    }

    /* ============================================
       WWD PAGE - MOBILE OVERRIDES (768px)
       ============================================ */

    /* WWD Tabs - 横並びで均等幅 */
    .wwd-tabs {
        flex-direction: row;
        gap: clamp(0.4rem, 1.5vw, 0.6rem);
        padding: clamp(0.6rem, 1.5vw, 0.8rem) clamp(1rem, 3vw, 1.2rem);
        top: 55px;
    }

    .wwd-tab-button {
        flex: 1;
        text-align: center;
        font-size: clamp(0.62rem, 1.8vw, 0.72rem);
        padding: clamp(0.5rem, 1.2vw, 0.65rem) clamp(0.5rem, 1.5vw, 0.8rem);
        white-space: nowrap;
    }

    /* WWD Tab Content - nav(55px) + tabs(~50px) = 105px */
    .wwd-tab-content {
        padding-top: 110px;
    }

    /* WWD Overview Container */
    .wwd-overview-container {
        flex-direction: column !important;
        align-items: stretch !important;
        gap: clamp(1.2rem, 3vw, 1.8rem);
        padding: clamp(1.5rem, 4vw, 2rem) clamp(1rem, 4vw, 1.5rem) clamp(2rem, 5vw, 3rem);
    }

    .wwd-overview-title-section {
        text-align: left;
        padding-right: 0;
        flex: 0 0 auto;
        width: 100%;
    }

    .wwd-overview-items {
        width: 100%;
    }

    .wwd-business-title {
        font-size: clamp(1.6rem, 6vw, 2rem);
    }

    .wwd-business-subtitle {
        font-size: clamp(0.65rem, 2vw, 0.8rem);
    }

    .wwd-overview-items {
        gap: clamp(1.5rem, 4vw, 2rem);
    }

    .wwd-overview-item {
        gap: clamp(0.6rem, 1.5vw, 0.8rem);
    }

    /* デスクトップ用<br>を非表示 */
    .wwd-overview-text br {
        display: none;
    }

    .wwd-overview-header {
        flex-direction: row;
        align-items: flex-start;
        gap: 0;
    }

    .wwd-overview-number {
        font-size: clamp(0.85rem, 2.5vw, 1rem);
        min-width: clamp(2.5rem, 8vw, 3.5rem);
    }

    .wwd-overview-title {
        font-size: clamp(0.95rem, 3vw, 1.1rem);
    }

    .wwd-overview-subtitle {
        font-size: clamp(0.58rem, 1.6vw, 0.7rem);
    }

    .wwd-overview-text {
        font-size: clamp(0.72rem, 2vw, 0.82rem);
        line-height: 1.7;
    }

    /* WWD Detail Section - 1カラム縦積み */
    .wwd-detail-section {
        grid-template-columns: 1fr !important;
        grid-template-rows: auto !important;
        gap: 0;
    }

    /* 明示的なgrid配置をリセット */
    /* モバイル: flexで順番制御 */
    .wwd-detail-section {
        display: flex !important;
        flex-direction: column;
        gap: 0;
    }

    /* display:contentsでcontentの子要素をflexの直接の子にする */
    .wwd-detail-section .wwd-detail-content {
        display: contents;
    }

    .wwd-detail-content-header {
        order: 1;
        padding: clamp(1.2rem, 4vw, 1.8rem) clamp(1rem, 4vw, 1.5rem) clamp(0.8rem, 2vw, 1rem);
    }

    .wwd-detail-section .wwd-detail-image-container {
        order: 2;
        min-height: auto;
        opacity: 1 !important;
        transform: none !important;
        margin-bottom: 0;
    }

    .wwd-detail-content-body {
        order: 3;
        padding: clamp(1rem, 3vw, 1.5rem) clamp(1rem, 4vw, 1.5rem) clamp(1.5rem, 4vw, 2rem);
    }

    .wwd-detail-image-wrapper {
        padding-bottom: 60%;
    }

    /* モバイルでアニメーション即時表示 */
    .wwd-detail-heading,
    .wwd-detail-subtitle,
    .wwd-detail-body p,
    .wwd-feature-box {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }

    .wwd-detail-label {
        flex-direction: row;
        align-items: baseline;
        gap: 0.6rem;
        flex-wrap: wrap;
        margin-bottom: clamp(0.6rem, 1.5vw, 0.8rem);
    }

    .wwd-detail-number {
        font-size: clamp(0.7rem, 2vw, 0.85rem);
    }

    .wwd-detail-category {
        font-size: clamp(0.6rem, 1.6vw, 0.72rem);
        letter-spacing: 0.06em;
    }

    .wwd-detail-heading {
        font-size: clamp(1.4rem, 5vw, 1.8rem);
    }

    .wwd-detail-subtitle {
        font-size: clamp(0.65rem, 1.8vw, 0.78rem);
    }

    .wwd-detail-body p {
        font-size: clamp(0.75rem, 2.2vw, 0.85rem);
        line-height: 1.8;
    }

    /* WWD Feature Box */
    .wwd-feature-box {
        padding: clamp(0.8rem, 2.5vw, 1.2rem);
    }

    .wwd-feature-box-title {
        font-size: clamp(0.65rem, 1.8vw, 0.78rem);
    }

    .wwd-feature-box-text {
        font-size: clamp(0.65rem, 1.8vw, 0.78rem);
    }

    /* WWD Content Container */
    .wwd-content-container {
        padding: 0;
        gap: clamp(3rem, 8vw, 4rem);
    }

    /* WWD Content Production Header */
    .wwd-content-production-header {
        padding: clamp(1.2rem, 4vw, 1.8rem) clamp(1rem, 4vw, 1.5rem);
        text-align: left;
        margin: 0;
    }

    .wwd-content-production-header .wwd-detail-label {
        justify-content: flex-start;
    }

    .wwd-content-production-header .wwd-detail-body {
        margin: clamp(1rem, 3vw, 1.5rem) 0 0;
    }

    /* WWD Production Cards - 1カラム */
    .wwd-production-cards {
        grid-template-columns: 1fr !important;
        gap: clamp(1rem, 3vw, 1.5rem);
        padding: 0 clamp(1rem, 4vw, 1.5rem) clamp(2rem, 5vw, 3rem);
        margin-bottom: 0;
    }

    .wwd-production-card-title {
        font-size: clamp(0.78rem, 2.5vw, 0.9rem);
    }

    .wwd-production-card-label {
        font-size: clamp(0.5rem, 1.5vw, 0.6rem);
    }

    .wwd-production-card-content {
        padding: clamp(0.6rem, 2vw, 0.8rem);
    }

    /* Platform Badges */
    .wwd-platform-badges {
        flex-wrap: nowrap;
        justify-content: space-between;
        gap: clamp(0.4rem, 2vw, 0.6rem);
    }

    .wwd-platform-badge {
        flex: 1;
        justify-content: center;
        font-size: clamp(0.55rem, 2vw, 0.65rem);
        padding: clamp(0.4rem, 1.5vw, 0.5rem) clamp(0.3rem, 1.5vw, 0.5rem);
        letter-spacing: 0.08em;
    }

    .wwd-platform-badge i {
        font-size: clamp(0.7rem, 2.5vw, 0.85rem);
    }

    /* Scroll Indicator - Position */
    .scroll-indicator {
        right: clamp(0.8rem, 2vw, 1rem);
    }
}



/* ================================================
   NEWS SINGLE  ( ns- prefix )
================================================ */

/* --- Hero --- */
.ns-hero {
    padding: clamp(7rem, 14vw, 10rem) 0 clamp(2.5rem, 5vw, 4rem);
    border-bottom: 1px solid rgba(26,26,26,0.1);
}

.ns-breadcrumb {
    display: inline-block;
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-light);
    text-decoration: none;
    margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
    transition: color 0.25s;
    font-family: 'Poppins', sans-serif;
}
.ns-breadcrumb:hover { color: var(--text); }

.ns-hero-inner {
    max-width: 820px;
}

.ns-date {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 0.14em;
    color: var(--text-light);
    font-family: 'Poppins', sans-serif;
    margin-bottom: 1rem;
}

.ns-title {
    font-size: clamp(1.7rem, 4vw, 2.8rem);
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: 0.02em;
    color: var(--text);
}

/* --- Thumbnail --- */
.ns-thumb {
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 16 / 6;
    background: #f0f0f0;
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.ns-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    max-width: 100%;
}

/* --- Grid --- */
.ns-body-section {
    padding: clamp(2rem, 4vw, 3rem) 0 clamp(4rem, 8vw, 6rem);
}

.ns-grid {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: clamp(3rem, 6vw, 6rem);
    align-items: start;
    margin-bottom: clamp(3rem, 6vw, 5rem);
}

.ns-grid--solo {
    grid-template-columns: 1fr;
}

/* --- Article body --- */
.ns-article {
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--text);
}

.ns-article p {
    margin-bottom: 1.7em;
    color: var(--text);
}

.ns-article h2 {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    font-weight: 600;
    color: var(--text);
    margin: 2.8em 0 0.9em;
    padding-bottom: 0.6em;
    border-bottom: 1px solid rgba(26,26,26,0.12);
    letter-spacing: 0.02em;
}

.ns-article h3 {
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    font-weight: 600;
    color: var(--text);
    margin: 2.2em 0 0.7em;
}

.ns-article a {
    color: var(--text-light);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.ns-article img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 2em 0;
    display: block;
}

.ns-article ul,
.ns-article ol {
    padding-left: 1.6em;
    margin-bottom: 1.6em;
    color: var(--text);
}

.ns-article li { margin-bottom: 0.5em; }

.ns-article blockquote {
    border-left: 2px solid rgba(26,26,26,0.2);
    padding: 1em 1.4em;
    margin: 2em 0;
    color: var(--text-light);
    font-size: 0.97rem;
}

/* --- Sidebar --- */
.ns-sidebar {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.ns-back-btn { display: none; }

.ns-related-label {
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
    color: var(--text-light);
    margin-bottom: 1.2rem;
}

.ns-related-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.ns-related-item {
    display: flex;
    gap: 0.9rem;
    align-items: flex-start;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(26,26,26,0.07);
    text-decoration: none;
    transition: opacity 0.25s;
}
.ns-related-item:hover { opacity: 0.6; }

.ns-related-img {
    width: 60px;
    height: 50px;
    flex-shrink: 0;
    border-radius: 4px;
    overflow: hidden;
    background: #f0f0f0;
}
.ns-related-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ns-related-date {
    display: block;
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    font-family: 'Poppins', sans-serif;
    color: var(--text-light);
    margin-bottom: 0.3rem;
}

.ns-related-title {
    font-size: 0.82rem;
    line-height: 1.5;
    color: var(--text);
    margin: 0;
}

/* --- Footer nav --- */
.ns-footer-nav {
    padding-top: 2.5rem;
    border-top: 1px solid rgba(26,26,26,0.1);
    display: flex;
    justify-content: center;
}

.ns-footer-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.25s;
}
.ns-footer-link:hover { color: var(--text); }
.ns-footer-link svg { transition: transform 0.25s; }
.ns-footer-link:hover svg { transform: translateX(-4px); }

/* --- Responsive --- */
@media (max-width: 900px) {
    .ns-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .ns-sidebar {
        position: static;
        padding-top: 2.5rem;
        border-top: 1px solid rgba(26,26,26,0.1);
        flex-direction: row;
        flex-wrap: wrap;
        gap: 2rem;
    }
    .ns-back-btn {
        width: auto;
        border-bottom: none;
        padding-bottom: 0;
    }
    .ns-related-label { display: none; }
}

@media (max-width: 768px) {
    .ns-thumb { aspect-ratio: 16 / 9; border-radius: 8px; }
    .ns-sidebar { flex-direction: column; }
}

/* ================================
   NEWS ARCHIVE PAGE
================================ */
.news-archive-page {
    padding: clamp(7rem, 14vw, 10rem) 0 clamp(4rem, 8vw, 7rem);
}

.news-archive-header {
    margin-bottom: clamp(3rem, 6vw, 5rem);
    padding-bottom: clamp(2rem, 4vw, 3rem);
    border-bottom: 1px solid rgba(26,26,26,0.1);
}

.news-archive-label {
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
    color: var(--text-light);
    margin-bottom: 0.8rem;
}

.news-archive-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 300;
    letter-spacing: 0.05em;
    color: var(--text);
}

.news-archive-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(2rem, 4vw, 3.5rem) clamp(2rem, 4vw, 3rem);
}

.news-archive-item {
    display: flex;
    flex-direction: column;
}

.news-archive-link {
    display: flex;
    flex-direction: column;
    text-decoration: none !important;
    color: #1a1a1a !important;
    height: 100%;
}

.news-archive-link * {
    color: inherit;
    text-decoration: none;
}

.news-archive-image {
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 8px;
    background: #f0f0f0;
    margin-bottom: 1.2rem;
}

.news-archive-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.news-archive-link:hover .news-archive-image img {
    transform: scale(1.04);
}

.news-archive-no-image {
    width: 100%;
    height: 100%;
    background: #f5f5f5;
}

.news-archive-content {
    flex: 1;
}

.news-archive-date {
    display: block;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    font-family: 'Poppins', sans-serif;
    color: var(--text-light);
    margin-bottom: 0.6rem;
}

.news-archive-item-title {
    font-size: clamp(0.95rem, 1.8vw, 1.1rem);
    font-weight: 500;
    line-height: 1.5;
    color: var(--text);
    margin-bottom: 0.8rem;
    transition: opacity 0.25s;
}

.news-archive-link:hover .news-archive-item-title {
    opacity: 0.6;
}

.news-archive-excerpt {
    font-size: 0.82rem;
    line-height: 1.7;
    color: var(--text-light);
}

.news-archive-pagination {
    margin-top: clamp(3rem, 6vw, 5rem);
    display: flex;
    justify-content: center;
}

.news-archive-empty {
    color: var(--text-light);
    font-size: 0.9rem;
}

@media (max-width: 640px) {
    .news-archive-grid {
        grid-template-columns: 1fr;
    }
}

/* ================================
   CONTACT FORM 7
================================ */
.cf7-form-wrap {
    max-width: 720px;
    margin: 0 auto;
}

/* ラベル */
.wpcf7 .wpcf7-form p {
    margin-bottom: 1.6rem;
}

.wpcf7 label,
.wpcf7 .wpcf7-form p > label {
    display: block;
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-family: 'Poppins', 'Noto Sans JP', sans-serif;
}

/* テキスト・メール・電話・URL */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="url"],
.wpcf7 input[type="number"] {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(26,26,26,0.2);
    padding: 0.7rem 0;
    font-size: 0.95rem;
    color: var(--text);
    font-family: 'Poppins', 'Noto Sans JP', sans-serif;
    outline: none;
    border-radius: 0;
    transition: border-color 0.3s;
    -webkit-appearance: none;
}

.wpcf7 input[type="text"]:focus,
.wpcf7 input[type="email"]:focus,
.wpcf7 input[type="tel"]:focus,
.wpcf7 input[type="url"]:focus {
    border-bottom-color: var(--text);
}

/* セレクト */
.wpcf7 select {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(26,26,26,0.2);
    padding: 0.7rem 0;
    font-size: 0.95rem;
    color: var(--text);
    font-family: 'Poppins', 'Noto Sans JP', sans-serif;
    outline: none;
    border-radius: 0;
    -webkit-appearance: none;
    cursor: pointer;
    transition: border-color 0.3s;
}

.wpcf7 select:focus {
    border-bottom-color: var(--text);
}

/* テキストエリア */
.wpcf7 textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(26,26,26,0.2);
    padding: 0.7rem 0;
    font-size: 0.95rem;
    color: var(--text);
    font-family: 'Poppins', 'Noto Sans JP', sans-serif;
    outline: none;
    border-radius: 0;
    resize: vertical;
    min-height: 120px;
    transition: border-color 0.3s;
}

.wpcf7 textarea:focus {
    border-bottom-color: var(--text);
}

/* プレースホルダー */
.wpcf7 input::placeholder,
.wpcf7 textarea::placeholder {
    color: rgba(26,26,26,0.3);
    font-size: 0.9rem;
}

/* チェックボックス・ラジオ */
.wpcf7 .wpcf7-checkbox,
.wpcf7 .wpcf7-radio {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem 2rem;
}

.wpcf7 .wpcf7-list-item {
    margin: 0;
}

.wpcf7 .wpcf7-list-item label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.88rem;
    color: var(--text);
    cursor: pointer;
    margin: 0;
}

/* 送信ボタン */
.wpcf7 input[type="submit"] {
    display: inline-block;
    margin-top: 1rem;
    padding: 1rem 3rem;
    background: #1a1a1a;
    color: #fff;
    font-size: 0.82rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
    border: none;
    border-radius: 0;
    cursor: pointer;
    transition: opacity 0.3s;
    -webkit-appearance: none;
}

.wpcf7 input[type="submit"]:hover {
    opacity: 0.7;
}

/* バリデーションメッセージ */
.wpcf7 .wpcf7-not-valid-tip {
    font-size: 0.72rem;
    color: #c0392b;
    margin-top: 0.3rem;
    display: block;
}

.wpcf7 .wpcf7-response-output {
    margin: 1.5rem 0 0;
    padding: 1rem 1.2rem;
    font-size: 0.82rem;
    border: 1px solid rgba(26,26,26,0.15);
    border-radius: 4px;
    color: var(--text);
}

.wpcf7 .wpcf7-mail-sent-ok {
    border-color: #27ae60;
    color: #27ae60;
    background: #f0faf4;
}

.wpcf7 .wpcf7-mail-sent-ng,
.wpcf7 .wpcf7-aborted {
    border-color: #c0392b;
    color: #c0392b;
    background: #fdf0ee;
}

.wpcf7 .wpcf7-spam-blocked {
    border-color: #e67e22;
    color: #e67e22;
}

/* Honeypot */
.website-field {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    height: 0;
    width: 0;
    z-index: -1;
    overflow: hidden;
}
