/* ========================================
   Obriguard - Kinetic Editorial Design
   IT × Marketing × Food
======================================== */

/* ========================================
   Custom Fonts & Reset
======================================== */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

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

:root {
    /* Primary Palette - Soft Watercolor */
    --color-ink: #2c2c2c;
    --color-ink-soft: #4a4a4a;
    --color-paper: #ffffff;
    --color-paper-warm: #f8fbfd;

    /* Brand Colors - Soft Watercolor Blue */
    --color-brand: #7cc2d8;
    --color-brand-dark: #5ba8c0;
    --color-brand-light: #a8d8e8;
    --color-brand-glow: rgba(124, 194, 216, 0.15);
    --color-accent: #c5e4ef;
    --color-accent-light: #e0f2f7;

    /* Domain Colors - Soft & Harmonious */
    --color-it: #7cc2d8;
    --color-it-glow: rgba(124, 194, 216, 0.15);
    --color-marketing: #e8a87c;
    --color-marketing-glow: rgba(232, 168, 124, 0.15);
    --color-food: #8bc9a0;
    --color-food-glow: rgba(139, 201, 160, 0.15);

    /* Neutrals - Clean tones */
    --color-gray-100: #f8f9fa;
    --color-gray-200: #e9ecef;
    --color-gray-300: #dee2e6;
    --color-gray-400: #adb5bd;
    --color-gray-500: #6c757d;
    --color-gray-600: #495057;

    /* Typography */
    --font-display: 'Outfit', -apple-system, sans-serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, sans-serif;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 8rem;
    --space-2xl: 12rem;

    /* Transitions */
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-ink);
    background: var(--color-paper);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* Selection */
::selection {
    background: var(--color-ink);
    color: var(--color-paper);
}

/* ========================================
   Layout
======================================== */
.container {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 5vw, 6rem);
}

.section {
    padding: clamp(5rem, 12vw, 10rem) 0;
    position: relative;
}

/* ========================================
   Header - Minimal & Floating
======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all 0.6s var(--ease-out-expo);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(124, 194, 216, 0.3);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    height: 48px;
}

.logo img {
    height: 48px;
    width: auto;
    transition: opacity 0.3s ease;
}

.logo:hover img {
    opacity: 0.7;
}

.nav {
    display: flex;
    align-items: center;
    gap: clamp(1.5rem, 3vw, 3rem);
}

.nav-link {
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-ink);
    text-decoration: none;
    letter-spacing: 0.02em;
    position: relative;
    padding: 0.25rem 0;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-brand), var(--color-accent));
    transition: width 0.5s var(--ease-out-expo);
}

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

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--color-ink);
    transition: all 0.4s var(--ease-out-expo);
    transform-origin: center;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translateY(4.5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-4.5px);
}

@media (max-width: 900px) {
    .header {
        padding: 0.75rem 0;
    }

    .logo {
        height: 36px;
        z-index: 1002;
    }

    .logo img {
        height: 36px;
    }

    .nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100vw;
        height: 100vh;
        height: 100dvh;
        background-color: #ffffff;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 0.5rem;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 0.4s var(--ease-out-expo), visibility 0.4s var(--ease-out-expo);
        z-index: 1001;
        padding: 4rem 2rem 2rem 2rem;
        box-sizing: border-box;
    }

    .nav.active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        display: flex;
    }

    .nav-link {
        font-size: 1.5rem;
        text-align: center;
        padding: 1rem 0;
        display: block;
        width: 100%;
        color: var(--color-ink);
    }

    .nav-link::after {
        display: none;
    }

    .nav .btn {
        margin-top: 2rem;
        width: auto;
        padding: 1rem 2.5rem;
    }

    .menu-toggle {
        display: flex;
        z-index: 1002;
    }
}

/* ========================================
   Buttons
======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.875rem;
    letter-spacing: 0.02em;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    transition: all 0.5s var(--ease-out-expo);
    position: relative;
    overflow: hidden;
}

.btn-sm {
    padding: 0.75rem 1.5rem;
    font-size: 0.8125rem;
}

.btn-lg {
    padding: 1.25rem 2.5rem;
    font-size: 1rem;
}

.btn-primary {
    background: var(--color-brand);
    color: white;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--color-brand-light), var(--color-marketing), var(--color-food));
    opacity: 0;
    transition: opacity 0.5s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(50, 83, 161, 0.3);
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary span {
    position: relative;
    z-index: 1;
}

.btn-outline {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: var(--color-brand-dark);
    border: 1.5px solid var(--color-brand);
}

.btn-outline:hover {
    background: var(--color-brand);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(91, 168, 192, 0.3);
}

.btn-white {
    background: var(--color-paper);
    color: var(--color-ink);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.btn-outline-white {
    background: transparent;
    color: var(--color-paper);
    border: 1.5px solid rgba(255, 255, 255, 0.4);
}

.btn-outline-white:hover {
    background: var(--color-paper);
    color: var(--color-ink);
}

/* ========================================
   Hero - Cinematic Editorial
======================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 100px;
    overflow: hidden;
    background: var(--color-paper);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: -5%;
    right: -5%;
    height: 100%;
    background: url('../images/bg_1.svg') no-repeat;
    background-size: cover;
    background-position: center top;
    opacity: 0.6;
    pointer-events: none;
    animation: heroPan 25s ease-in-out infinite;
}

@keyframes heroPan {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(3%);
    }
}

/* Orbiting Lines Background */
.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    border: 1px solid;
    opacity: 0;
    animation: orbitPulse 8s var(--ease-in-out) infinite;
}

.hero-shape-1 {
    width: 120vw;
    height: 120vw;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-color: var(--color-brand);
    animation-delay: 0s;
}

.hero-shape-2 {
    width: 100vw;
    height: 100vw;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-color: var(--color-accent);
    animation-delay: -2.6s;
}

.hero-shape-3 {
    width: 80vw;
    height: 80vw;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-color: var(--color-brand-light);
    animation-delay: -5.3s;
}

@keyframes orbitPulse {
    0%, 100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.9) rotate(0deg);
    }
    50% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1.1) rotate(180deg);
    }
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 1px 1px, var(--color-gray-300) 1px, transparent 0);
    background-size: 40px 40px;
    opacity: 0.3;
}

.hero-character {
    position: absolute;
    bottom: 5%;
    right: 8%;
    width: clamp(200px, 25vw, 400px);
    opacity: 0.08;
    filter: grayscale(100%);
    animation: gentleFloat 8s ease-in-out infinite;
}

@keyframes gentleFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
}

.hero-character img {
    width: 100%;
    height: auto;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1000px;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.625rem 1.25rem;
    background: linear-gradient(135deg, rgba(50, 83, 161, 0.08), rgba(184, 186, 220, 0.15));
    border: 1px solid var(--color-accent);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-brand);
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeSlideUp 1s var(--ease-out-expo) 0.2s forwards;
}

.hero-label::before {
    content: '';
    width: 6px;
    height: 6px;
    background: linear-gradient(135deg, var(--color-brand), var(--color-accent));
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.7; }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 7vw, 6rem);
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeSlideUp 1.2s var(--ease-out-expo) 0.4s forwards;
    white-space: nowrap;
}

.hero-title-line {
    display: block;
    color: var(--color-ink);
}

.hero-x {
    color: var(--color-brand);
    font-weight: 500;
}

@media (max-width: 1100px) {
    .hero-title {
        font-size: clamp(3rem, 8vw, 5rem);
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: clamp(2rem, 10vw, 3.5rem);
        white-space: normal;
        line-height: 1.2;
    }
}

@keyframes gradientFlow {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}

.hero-subtitle {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 400;
    font-style: italic;
    color: var(--color-gray-500);
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeSlideUp 1.2s var(--ease-out-expo) 0.6s forwards;
}

.hero-description {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    line-height: 1.8;
    color: var(--color-gray-600);
    max-width: 600px;
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeSlideUp 1.2s var(--ease-out-expo) 0.8s forwards;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 4rem;
    opacity: 0;
    animation: fadeSlideUp 1.2s var(--ease-out-expo) 1s forwards;
}

.hero-scroll {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-gray-600);
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
    opacity: 0;
    animation: fadeSlideUp 1.2s var(--ease-out-expo) 1.2s forwards;
}

.hero-scroll::before {
    content: '';
    width: 60px;
    height: 1px;
    background: var(--color-gray-500);
    box-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
}

.hero-scroll svg {
    width: 16px;
    height: 16px;
    animation: bounce 2s ease-in-out infinite;
}

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

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
}

/* ========================================
   Section Headers - Editorial Style
======================================== */
.section-header {
    margin-bottom: clamp(3rem, 8vw, 6rem);
    position: relative;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-gray-500);
    margin-bottom: 1.5rem;
}

.section-label::before {
    content: '';
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, var(--color-brand), var(--color-accent), var(--color-brand-light));
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 8vw, 6rem);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.03em;
    color: var(--color-ink);
    margin-bottom: 1.5rem;
}

.section-description {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    line-height: 1.8;
    color: var(--color-gray-600);
    max-width: 700px;
}

/* ========================================
   About Section
======================================== */
.section-about {
    background: var(--color-paper-warm);
    position: relative;
}

.section-about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-brand-light), transparent);
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

@media (max-width: 900px) {
    .areas-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.area-card {
    padding: clamp(2rem, 4vw, 3.5rem);
    background: linear-gradient(145deg, #ffffff 0%, var(--color-paper) 100%);
    border: 1px solid var(--color-accent-light);
    border-radius: 24px;
    position: relative;
    transition: all 0.6s var(--ease-out-expo);
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(50, 83, 161, 0.06);
}

.area-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--color-gray-200);
    transition: all 0.5s var(--ease-out-expo);
}

.area-card:nth-child(1)::before { background: var(--color-brand); transform: scaleX(0); transform-origin: left; }
.area-card:nth-child(2)::before { background: var(--color-marketing); transform: scaleX(0); transform-origin: left; }
.area-card:nth-child(3)::before { background: var(--color-food); transform: scaleX(0); transform-origin: left; }

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

.area-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(50, 83, 161, 0.12);
    border-color: var(--color-accent);
}

.area-icon {
    width: 100%;
    max-width: 350px;
    height: auto;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.5s var(--ease-out-expo);
}

.area-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform: scale(1.3);
}

/* ITアイコンは大きめに */
.area-card:first-child .area-icon img {
    transform: scale(1.5);
}

/* 食アイコンは少し小さめに調整 */
.area-card:last-child .area-icon img {
    transform: scale(1.15);
}

.area-card:hover .area-icon {
    transform: scale(1.1) rotate(-3deg);
}

.area-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 400;
    margin-bottom: 1rem;
    transition: color 0.4s ease;
}

.area-card:nth-child(1):hover .area-title { color: var(--color-brand); }
.area-card:nth-child(2):hover .area-title { color: var(--color-marketing); }
.area-card:nth-child(3):hover .area-title { color: var(--color-food); }

.area-description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-gray-600);
    margin-bottom: 1.5rem;
}

.area-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(50, 83, 161, 0.05), rgba(184, 186, 220, 0.1));
    border: 1px solid var(--color-accent-light);
    border-radius: 100px;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--color-gray-600);
    transition: all 0.3s ease;
}

.area-card:nth-child(1) .tag:hover {
    background: var(--color-brand-glow);
    border-color: var(--color-brand);
    color: var(--color-brand);
}

.area-card:nth-child(2) .tag:hover {
    background: var(--color-marketing-glow);
    border-color: var(--color-marketing);
    color: var(--color-marketing);
}

.area-card:nth-child(3) .tag:hover {
    background: var(--color-food-glow);
    border-color: var(--color-food);
    color: var(--color-food);
}

.value-box {
    padding: clamp(2rem, 5vw, 4rem);
    background: linear-gradient(135deg, var(--color-brand-light) 0%, var(--color-brand) 50%, var(--color-brand-dark) 100%);
    border-radius: 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(124, 194, 216, 0.25);
}

.value-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.2), transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.15), transparent 50%);
    opacity: 1;
}

.value-title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 400;
    color: white;
    margin-bottom: 1rem;
    position: relative;
}

.value-description {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
}

/* ========================================
   Services Section
======================================== */
.section-services {
    background: var(--color-paper);
    position: relative;
    overflow: hidden;
}

/* Cloud-like floating background layers */
.section-services::before,
.section-services::after {
    content: '';
    position: absolute;
    top: -20%;
    height: 140%;
    background: url('../images/bg_2.svg') no-repeat;
    background-size: cover;
    pointer-events: none;
}

.section-services::before {
    left: -15%;
    right: -15%;
    background-position: left center;
    opacity: 0.35;
    animation: cloudDrift1 40s ease-in-out infinite;
}

.section-services::after {
    left: -15%;
    right: -15%;
    background-position: right center;
    opacity: 0.2;
    animation: cloudDrift2 55s ease-in-out infinite;
    transform: scaleX(-1);
}

@keyframes cloudDrift1 {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(5%, 8%);
    }
}

@keyframes cloudDrift2 {
    0%, 100% {
        transform: scaleX(-1) translate(0, 0);
    }
    50% {
        transform: scaleX(-1) translate(-5%, -10%);
    }
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

@media (max-width: 900px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

.service-card {
    padding: clamp(2rem, 4vw, 3.5rem);
    background: #ffffff;
    border: 1px solid var(--color-accent-light);
    border-radius: 24px;
    position: relative;
    z-index: 1;
    transition: all 0.6s var(--ease-out-expo);
    box-shadow: 0 4px 24px rgba(50, 83, 161, 0.08);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(50, 83, 161, 0.12);
    border-color: var(--color-accent);
}

.service-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    transition: all 0.5s var(--ease-out-expo);
}

.service-card:nth-child(1) .service-number {
    background: var(--color-brand-glow);
    color: var(--color-brand);
}

.service-card:nth-child(2) .service-number {
    background: var(--color-marketing-glow);
    color: var(--color-marketing);
}

.service-card:nth-child(3) .service-number {
    background: var(--color-food-glow);
    color: var(--color-food);
}

.service-card:nth-child(4) .service-number {
    background: linear-gradient(135deg, var(--color-brand-glow), var(--color-accent-light));
    color: var(--color-brand);
}

.service-card:nth-child(5) .service-number {
    background: linear-gradient(135deg, #e8f4f8, #d4eef5);
    color: #4a9cb8;
}

.service-card:hover .service-number {
    transform: scale(1.1) rotate(-5deg);
}

.service-title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--color-gray-600);
}

.service-description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-gray-600);
    margin-bottom: 1.5rem;
}

.service-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.9375rem;
    color: var(--color-gray-600);
}

.service-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    transform: translateY(-50%);
}

.service-card:nth-child(1) .service-list li::before { background: var(--color-brand); }
.service-card:nth-child(2) .service-list li::before { background: var(--color-marketing); }
.service-card:nth-child(3) .service-list li::before { background: var(--color-food); }
.service-card:nth-child(4) .service-list li::before {
    background: linear-gradient(135deg, var(--color-brand), var(--color-accent));
}
.service-card:nth-child(5) .service-list li::before { background: #4a9cb8; }

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

/* ========================================
   Works Section
======================================== */
.section-works {
    background: linear-gradient(180deg, #f5fbfd 0%, #eef8fb 100%);
    position: relative;
}

.section-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-brand-light), transparent);
}

.works-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (max-width: 1100px) {
    .works-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 700px) {
    .works-grid {
        grid-template-columns: 1fr;
    }
}

.work-card {
    background: linear-gradient(145deg, #ffffff 0%, var(--color-paper) 100%);
    border: 1px solid var(--color-accent-light);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.6s var(--ease-out-expo);
    box-shadow: 0 4px 24px rgba(50, 83, 161, 0.06);
}

.work-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(50, 83, 161, 0.15);
    border-color: var(--color-accent);
}

.work-image {
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    position: relative;
}

.work-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(0, 0, 0, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.work-card:hover .work-image::after {
    opacity: 1;
}

.work-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out-expo);
    filter: grayscale(20%);
}

.work-card:hover .work-image img {
    transform: scale(1.05);
    filter: grayscale(0%);
}

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

.work-categories {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    display: flex;
    gap: 0.5rem;
    z-index: 10;
}

.work-category {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.85rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    border-radius: 4px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}

.work-category--it {
    background: rgba(124, 194, 216, 0.95);
    color: #ffffff;
    border: none;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.work-category--marketing {
    background: rgba(232, 168, 124, 0.95);
    color: #ffffff;
    border: none;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.work-category--food {
    background: rgba(139, 201, 160, 0.95);
    color: #ffffff;
    border: none;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Logo image style for work cards */
.work-image--logo {
    object-fit: contain !important;
    padding: 2.5rem;
    background: #ffffff;
}

.work-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--color-ink);
    transition: color 0.4s ease;
}

.work-card:hover .work-title {
    color: var(--color-brand);
}

.work-card--link {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

/* Link indicator - always visible */
.work-card--link::after {
    content: '↗';
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 2.25rem;
    height: 2.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-brand);
    border-radius: 50%;
    font-size: 1rem;
    color: #ffffff;
    opacity: 1;
    transform: translate(0, 0);
    transition: all 0.4s var(--ease-out-expo);
    box-shadow: 0 4px 12px rgba(124, 194, 216, 0.4);
    z-index: 10;
}

.work-card--link:hover::after {
    background: var(--color-brand-dark);
    transform: translate(3px, -3px);
    box-shadow: 0 6px 20px rgba(124, 194, 216, 0.5);
}

/* Subtle border accent for link cards */
.work-card--link {
    border: 1px solid var(--color-brand-light);
}

.work-card--link:hover {
    border-color: var(--color-brand);
}

.work-description {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--color-gray-600);
    margin-bottom: 1rem;
}

.work-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.work-tags .tag {
    background: var(--color-gray-100);
    border: 1px solid var(--color-gray-300);
    color: var(--color-gray-600);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.4rem 0.85rem;
}

.works-note {
    text-align: center;
    font-size: 0.875rem;
    color: var(--color-gray-500);
    font-style: italic;
}

/* ========================================
   Profile Section
======================================== */
.section-profile {
    background: var(--color-paper-warm);
    color: var(--color-ink);
    position: relative;
    overflow: hidden;
}

.profile-wrapper {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: clamp(3rem, 6vw, 5rem);
    align-items: center;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

@media (max-width: 900px) {
    .profile-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

.profile-image {
    position: relative;
}

.profile-image-placeholder {
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--color-brand-light), var(--color-accent-light));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--color-brand-dark);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    overflow: hidden;
}

.profile-image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-image::after {
    content: '';
    position: absolute;
    inset: -4px;
    background: linear-gradient(135deg, var(--color-brand-light), var(--color-accent), var(--color-brand));
    border-radius: 24px;
    z-index: -1;
    opacity: 0.5;
}

@media (max-width: 900px) {
    .profile-image {
        max-width: 250px;
        margin: 0 auto;
    }
}

.profile-content {
    position: relative;
}

.section-profile .section-label {
    color: var(--color-gray-500);
}

.section-profile .section-label::before {
    background: linear-gradient(90deg, var(--color-brand-dark), var(--color-brand), var(--color-brand-light));
}

.profile-name {
    margin-bottom: 1rem;
}

.profile-name-ja {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 400;
    letter-spacing: 0.1em;
    color: var(--color-ink);
    margin-bottom: 0.25rem;
}

.profile-name-en {
    font-size: 1rem;
    color: var(--color-gray-500);
    letter-spacing: 0.05em;
}

.profile-role {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--color-brand-dark);
    margin-bottom: 1.5rem;
}

.profile-description {
    font-size: 1rem;
    line-height: 1.9;
    color: var(--color-gray-600);
    margin-bottom: 2rem;
}

.profile-section-group {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.profile-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.profile-group-title {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-brand-dark);
}

.profile-credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.credential {
    display: inline-block;
    padding: 0.4rem 0.75rem;
    font-size: 0.8125rem;
    font-weight: 400;
    color: var(--color-gray-500);
    background: transparent;
    border: 1px solid var(--color-gray-300);
    border-radius: 6px;
}

.profile-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

@media (max-width: 900px) {
    .profile-tags,
    .profile-credentials {
        justify-content: center;
    }

    .profile-group-title {
        text-align: center;
    }
}

.section-profile .tag {
    background: var(--color-brand-glow);
    border-color: var(--color-brand-light);
    color: var(--color-gray-600);
}

.section-profile .tag:hover {
    background: var(--color-brand-light);
    border-color: var(--color-brand);
    color: var(--color-ink);
}

/* ========================================
   CTA Section
======================================== */
.section-cta {
    background: linear-gradient(180deg, var(--color-paper) 0%, var(--color-paper-warm) 50%, var(--color-accent-light) 100%);
    color: var(--color-ink);
    position: relative;
    overflow: hidden;
}

/* Dual-layer animated background */
.section-cta::before,
.section-cta::after {
    content: '';
    position: absolute;
    top: -30%;
    height: 160%;
    background: url('../images/bg_3.svg') no-repeat;
    background-size: cover;
    pointer-events: none;
}

.section-cta::before {
    left: -20%;
    right: -20%;
    background-position: left center;
    opacity: 0.4;
    animation: ctaDrift1 45s ease-in-out infinite;
}

.section-cta::after {
    left: -20%;
    right: -20%;
    background-position: right center;
    opacity: 0.25;
    animation: ctaDrift2 60s ease-in-out infinite;
    transform: scaleX(-1) scaleY(-1);
}

@keyframes ctaDrift1 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(4%, 6%) scale(1.03);
    }
    66% {
        transform: translate(-2%, 3%) scale(1.01);
    }
}

@keyframes ctaDrift2 {
    0%, 100% {
        transform: scaleX(-1) scaleY(-1) translate(0, 0);
    }
    50% {
        transform: scaleX(-1) scaleY(-1) translate(-5%, -8%);
    }
}

.cta-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.cta-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
}

.cta-shape-1 {
    width: 600px;
    height: 600px;
    background: var(--color-brand);
    opacity: 0.08;
    top: -200px;
    left: -200px;
    animation: ctaFloat 15s ease-in-out infinite;
}

.cta-shape-2 {
    width: 500px;
    height: 500px;
    background: var(--color-brand-light);
    opacity: 0.08;
    bottom: -200px;
    right: -200px;
    animation: ctaFloat 15s ease-in-out infinite reverse;
}

@keyframes ctaFloat {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(50px, 30px); }
}

.cta-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 6vw, 4rem);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.cta-description {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    line-height: 1.7;
    color: var(--color-gray-600);
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.cta-examples {
    padding: clamp(2rem, 4vw, 3rem);
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid var(--color-brand-light);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.cta-examples-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: var(--color-ink);
}

.cta-examples-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
    text-align: left;
    margin-bottom: 1.5rem;
}

.cta-examples-list li {
    font-size: 0.9375rem;
    padding-left: 1.5rem;
    position: relative;
    color: var(--color-gray-600);
    line-height: 1.6;
}

.cta-examples-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--color-brand);
}

.cta-note {
    font-size: 0.8125rem;
    color: var(--color-gray-500);
}

/* ========================================
   Contact Section
======================================== */
.section-contact {
    background: linear-gradient(180deg, var(--color-paper) 0%, var(--color-paper-warm) 50%, var(--color-accent-light) 100%);
    color: var(--color-ink);
    position: relative;
    overflow: hidden;
}

.section-contact::before,
.section-contact::after {
    content: '';
    position: absolute;
    top: -30%;
    height: 160%;
    background: url('../images/bg_3.svg') no-repeat;
    background-size: cover;
    pointer-events: none;
}

.section-contact::before {
    left: -20%;
    right: -20%;
    background-position: left center;
    opacity: 0.4;
    animation: ctaDrift1 45s ease-in-out infinite;
}

.section-contact::after {
    left: -20%;
    right: -20%;
    background-position: right center;
    opacity: 0.25;
    animation: ctaDrift2 60s ease-in-out infinite;
    transform: scaleX(-1) scaleY(-1);
}

.contact-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.contact-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
}

.contact-shape-1 {
    width: 600px;
    height: 600px;
    background: var(--color-brand);
    opacity: 0.08;
    top: -200px;
    left: -200px;
    animation: ctaFloat 15s ease-in-out infinite;
}

.contact-shape-2 {
    width: 500px;
    height: 500px;
    background: var(--color-brand-light);
    opacity: 0.08;
    bottom: -200px;
    right: -200px;
    animation: ctaFloat 15s ease-in-out infinite reverse;
}

.contact-wrapper {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

@media (max-width: 900px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

.contact-info {
    position: sticky;
    top: 120px;
}

@media (max-width: 900px) {
    .contact-info {
        position: static;
    }
}

.contact-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    margin-top: 1rem;
}

.contact-description {
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    line-height: 1.7;
    color: var(--color-gray-600);
    margin-bottom: 2.5rem;
}

.contact-examples {
    padding: clamp(1.5rem, 3vw, 2rem);
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid var(--color-brand-light);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.contact-examples-title {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--color-brand);
}

.contact-examples-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-examples-list li {
    font-size: 0.875rem;
    padding-left: 1.25rem;
    position: relative;
    color: var(--color-gray-600);
    line-height: 1.5;
}

.contact-examples-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--color-brand);
}

/* Contact Form */
.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--color-brand-light);
    border-radius: 24px;
    padding: clamp(1.5rem, 4vw, 3rem);
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 60px rgba(91, 168, 192, 0.1);
    overflow: hidden;
    max-width: 100%;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label {
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-ink);
}

.form-label .required {
    color: var(--color-food);
    margin-left: 0.25rem;
}

.form-input,
.form-select,
.form-textarea {
    font-family: var(--font-body);
    font-size: 1rem;
    padding: 1rem 1.25rem;
    border: 2px solid var(--color-gray-200);
    border-radius: 12px;
    background: #ffffff;
    color: var(--color-ink);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    transition: all 0.3s ease;
    outline: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: var(--color-brand);
    box-shadow: 0 0 0 4px rgba(91, 168, 192, 0.15);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--color-gray-400);
}

.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='%236c757d' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.25rem;
    padding-right: 3rem;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit {
    width: 100%;
    justify-content: center;
    margin-top: 0.5rem;
}

/* ========================================
   Camp Section
======================================== */
.section-camp {
    background: linear-gradient(180deg, #1a2f23 0%, #243b2a 50%, #2d4a33 100%);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.section-camp .section-label {
    color: rgba(255, 255, 255, 0.7);
}

.section-camp .section-label::before {
    background: linear-gradient(90deg, #8bc9a0, #6db585, #4a9e6b);
}

.section-camp .section-title {
    color: #ffffff;
}

.section-camp .section-description {
    color: rgba(255, 255, 255, 0.8);
}

/* Camp Love Message - Personal touch */
.camp-love-message {
    display: block;
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.15em;
    color: #8bc9a0;
    line-height: 1.9;
    margin-bottom: 0.5rem;
}

.camp-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.camp-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
}

.camp-shape-1 {
    width: 500px;
    height: 500px;
    background: #4a9e6b;
    opacity: 0.15;
    top: -150px;
    right: -100px;
    animation: campFloat 20s ease-in-out infinite;
}

.camp-shape-2 {
    width: 400px;
    height: 400px;
    background: #8bc9a0;
    opacity: 0.1;
    bottom: -100px;
    left: -100px;
    animation: campFloat 25s ease-in-out infinite reverse;
}

@keyframes campFloat {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, 20px); }
}

/* Media Gallery - Photos & Video */
.camp-media-gallery {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    margin-bottom: 4rem;
}

.camp-media-item {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 1;
}

.camp-media-item img,
.camp-media-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out-expo), filter 0.4s ease;
    filter: brightness(0.9);
}

.camp-media-item:hover img,
.camp-media-item:hover video {
    transform: scale(1.08);
    filter: brightness(1);
}

.camp-media-item--video {
    grid-column: span 2;
    grid-row: span 2;
    aspect-ratio: auto;
}

.camp-media-item--large {
    grid-column: span 2;
    grid-row: span 2;
    aspect-ratio: auto;
}

@media (max-width: 1100px) {
    .camp-media-gallery {
        grid-template-columns: repeat(5, 1fr);
        gap: 0.75rem;
    }
}

@media (max-width: 900px) {
    .camp-media-gallery {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .camp-media-gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .camp-media-item--video {
        grid-column: span 2;
        grid-row: span 1;
        aspect-ratio: 16/9;
    }

    .camp-media-item--large {
        grid-column: span 2;
        grid-row: span 1;
        aspect-ratio: 16/9;
    }
}

@media (max-width: 600px) {
    .camp-media-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .camp-media-item {
        border-radius: 12px;
    }

    .camp-media-item--video {
        grid-column: span 2;
    }
}

/* Camp Services */
.camp-services {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem;
}

@media (max-width: 1000px) {
    .camp-services {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .camp-services {
        grid-template-columns: 1fr;
    }
}

.camp-service-card {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(139, 201, 160, 0.2);
    border-radius: 16px;
    transition: all 0.4s var(--ease-out-expo);
    position: relative;
    z-index: 1;
}

.camp-service-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(139, 201, 160, 0.4);
    transform: translateY(-4px);
}

.camp-service-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(139, 201, 160, 0.2), rgba(74, 158, 107, 0.2));
    border-radius: 12px;
    margin-bottom: 1.25rem;
    color: #8bc9a0;
}

.camp-service-title {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.camp-service-desc {
    font-size: 0.875rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
}

/* Camp × Deli Feature - With Video Layout */
.campxdeli-feature--with-video {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
    padding: 2.5rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 24px;
    border: 1px solid rgba(139, 201, 160, 0.15);
    align-items: center;
}

@media (max-width: 900px) {
    .campxdeli-feature--with-video {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 1.5rem;
    }
}

.campxdeli-video-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 16px;
    overflow: hidden;
}

.campxdeli-video {
    width: 100%;
    height: auto;
    border-radius: 16px;
    display: block;
}

/* Simple Layout (fallback) */
.campxdeli-feature--simple {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
    padding: 2.5rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 24px;
    border: 1px solid rgba(139, 201, 160, 0.15);
    align-items: center;
}

@media (max-width: 900px) {
    .campxdeli-feature--simple {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 1.5rem;
    }
}

.campxdeli-image-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.campxdeli-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out-expo);
}

.campxdeli-image-wrapper:hover img {
    transform: scale(1.05);
}

.campxdeli-image-badge {
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    padding: 0.5rem 1rem;
    background: rgba(139, 201, 160, 0.95);
    color: #1a2f23;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 6px;
    backdrop-filter: blur(8px);
}

.campxdeli-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

@media (max-width: 900px) {
    .campxdeli-info {
        align-items: center;
        text-align: center;
    }
}

.campxdeli-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3.5vw, 2.25rem);
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 0.25rem;
    letter-spacing: 0.02em;
}

.campxdeli-reading {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0.75rem;
    letter-spacing: 0.1em;
}

.campxdeli-tagline {
    font-size: 0.9375rem;
    font-weight: 500;
    color: #8bc9a0;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}

.campxdeli-description {
    font-size: 0.9375rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 1.5rem;
}

.campxdeli-stats {
    display: flex;
    gap: 2.5rem;
    margin-bottom: 1.5rem;
}

.campxdeli-stat {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

@media (max-width: 900px) {
    .campxdeli-stat {
        align-items: center;
    }
}

.campxdeli-stat-number {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 600;
    color: #8bc9a0;
    line-height: 1;
}

.campxdeli-stat-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0.25rem;
}

.campxdeli-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(139, 201, 160, 0.15);
    border: 1px solid rgba(139, 201, 160, 0.3);
    border-radius: 50px;
    color: #8bc9a0;
    font-weight: 600;
    font-size: 0.9375rem;
    text-decoration: none;
    transition: all 0.4s var(--ease-out-expo);
}

.campxdeli-link:hover {
    background: #8bc9a0;
    color: #1a2f23;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 201, 160, 0.3);
}

.campxdeli-photo {
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1;
}

.campxdeli-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out-expo), filter 0.4s ease;
    filter: brightness(0.85);
}

.campxdeli-photo:hover img {
    transform: scale(1.1);
    filter: brightness(1);
}

@media (max-width: 600px) {
    .campxdeli-photos {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Instagram CTA */
.camp-instagram {
    text-align: center;
    position: relative;
    z-index: 1;
}

.camp-instagram--gallery {
    margin-bottom: 4rem;
}

.camp-instagram-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #8bc9a0, #6db585);
    color: #1a2f23;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.4s var(--ease-out-expo);
    box-shadow: 0 4px 20px rgba(139, 201, 160, 0.3);
}

.camp-instagram-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(139, 201, 160, 0.4);
}

.camp-instagram-arrow {
    transition: transform 0.3s ease;
}

.camp-instagram-link:hover .camp-instagram-arrow {
    transform: translateX(4px);
}

.camp-instagram-note {
    margin-top: 1rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

/* ========================================
   Footer
======================================== */
.footer {
    padding: 3rem 0;
    background: var(--color-paper);
    border-top: 1px solid var(--color-brand-light);
    position: relative;
    overflow: hidden;
}

/* ========================================
   Fixed Character CTA
======================================== */
.fixed-character-cta {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.3s var(--ease-out-expo);
}

.fixed-character-cta:hover {
    transform: scale(1.05);
}

.character-image {
    width: 80px;
    height: auto;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15));
    transition: transform 0.4s var(--ease-out-expo);
    animation: characterBounce 3s ease-in-out infinite;
}

.character-image img {
    width: 100%;
    height: auto;
    display: block;
}

@keyframes characterBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.fixed-character-cta:hover .character-image {
    animation: none;
    transform: translateY(-5px) rotate(-5deg);
}

/* Speech Bubble */
.character-bubble {
    position: relative;
    background: var(--color-brand);
    color: white;
    padding: 0.6rem 1rem;
    border-radius: 20px;
    margin-bottom: 0.5rem;
    font-size: 0.8125rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(124, 194, 216, 0.4);
    opacity: 0;
    transform: translateY(10px) scale(0.9);
    transition: all 0.4s var(--ease-out-expo);
    pointer-events: none;
}

.character-bubble::after {
    content: '';
    position: absolute;
    bottom: -6px;
    right: 20px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid var(--color-brand);
}

/* Bubble appears on hover and periodically */
.fixed-character-cta:hover .character-bubble,
.fixed-character-cta.bubble-visible .character-bubble {
    opacity: 1;
    transform: translateY(0) scale(1);
}

@media (max-width: 768px) {
    .fixed-character-cta {
        bottom: 1rem;
        right: 1rem;
    }

    .character-image {
        width: 60px;
    }

    .character-bubble {
        font-size: 0.75rem;
        padding: 0.5rem 0.875rem;
    }
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-logo img {
    height: 40px;
    opacity: 0.9;
    margin-bottom: 0.75rem;
}

.footer-address {
    font-size: 0.8125rem;
    color: var(--color-gray-500);
    margin-bottom: 0.5rem;
}

.footer-copyright {
    font-size: 0.8125rem;
    color: var(--color-gray-500);
}

.footer-nav {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-nav a {
    font-size: 0.875rem;
    color: var(--color-gray-500);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: var(--color-brand);
}

@media (max-width: 600px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-nav {
        justify-content: center;
    }
}

/* ========================================
   Scroll Animations
======================================== */
.scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s var(--ease-out-expo);
}

.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered reveals for grid items */
.areas-grid .area-card,
.services-grid .service-card,
.works-grid .work-card {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s var(--ease-out-expo);
}

.areas-grid .area-card.visible,
.services-grid .service-card.visible,
.works-grid .work-card.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   Cursor Effects (Optional Enhancement)
======================================== */
@media (hover: hover) {
    .cursor-dot {
        width: 8px;
        height: 8px;
        background: var(--color-ink);
        border-radius: 50%;
        position: fixed;
        pointer-events: none;
        z-index: 9999;
        transition: transform 0.15s ease;
        mix-blend-mode: difference;
    }

    .cursor-outline {
        width: 40px;
        height: 40px;
        border: 1px solid var(--color-ink);
        border-radius: 50%;
        position: fixed;
        pointer-events: none;
        z-index: 9998;
        transition: all 0.2s ease;
        opacity: 0.5;
    }
}

/* ========================================
   Smooth Scroll Behavior
======================================== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
