/* =============================================
   CHEESE & COMPANY - DESIGN SYSTEM
   frontend-design skill: Creative, memorable UI
   ============================================= */

:root {
    /* COLOR PALETTE */
    --color-background: #FAF9F7;
    --color-background-warm: #F5F3EF;
    --color-text: #1A1A1A;
    --color-text-light: #4A4A4A;
    --color-text-lighter: #7A7A7A;

    /* VMV ACCENT COLORS - Bold & Intentional */
    --color-direct: #2C3E7B;
    --color-tailored: #C46C4E;
    --color-lightweight: #7D9B8A;

    /* GRADIENTS */
    --gradient-hero: linear-gradient(
        135deg,
        #2C3E7B 0%,
        #3D5291 25%,
        #C46C4E 50%,
        #7D9B8A 75%,
        #2C3E7B 100%
    );
    --gradient-subtle: linear-gradient(180deg, var(--color-background) 0%, var(--color-background-warm) 100%);

    /* SECTION BACKGROUNDS */
    --color-bg-dark: #1A1A1A;

    /* Z-INDEX SCALE */
    --z-base: 0;
    --z-elevated: 10;
    --z-overlay: 20;
    --z-modal: 30;
    --z-header: 40;
    --z-grain: 100;

    /* TYPOGRAPHY - Space Grotesk for distinctive character */
    --font-display: 'Shippori Mincho', Georgia, serif;
    --font-heading: 'Space Grotesk', system-ui, sans-serif;
    --font-body: 'Noto Sans JP', system-ui, sans-serif;

    /* TYPE SCALE - Golden Ratio */
    --font-size-xs: 0.75rem;
    --font-size-s: 0.875rem;
    --font-size-base: 1rem;
    --font-size-m: 1.125rem;
    --font-size-l: 1.25rem;
    --font-size-xl: 1.618rem;
    --font-size-xxl: 2.618rem;
    --font-size-hero: clamp(2.5rem, 5vw, 4rem);

    /* SPACING */
    --space-xs: 0.5rem;
    --space-s: 1rem;
    --space-m: 1.5rem;
    --space-l: 2.5rem;
    --space-xl: 4rem;
    --space-xxl: 6.5rem;

    /* SHADOWS - Layered depth */
    --shadow-sm: 0 2px 8px rgba(26, 26, 26, 0.04);
    --shadow-md: 0 4px 24px rgba(26, 26, 26, 0.08);
    --shadow-lg: 0 8px 48px rgba(26, 26, 26, 0.12);
    --shadow-glow-direct: 0 0 40px rgba(44, 62, 123, 0.15);
    --shadow-glow-tailored: 0 0 40px rgba(196, 108, 78, 0.15);

    /* TRANSITIONS */
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --duration-fast: 0.2s;
    --duration-normal: 0.4s;
    --duration-slow: 0.8s;
}

/* =============================================
   GLOBAL RESETS & BASE
   ============================================= */

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: var(--font-body);
    font-size: var(--font-size-base);
    line-height: 1.7;
    color: var(--color-text);
    background: var(--color-background);
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img, svg, video {
    max-width: 100%;
    height: auto;
    display: block;
}

/* =============================================
   TEXTURE OVERLAY - Grain effect
   ============================================= */

.grain-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: var(--z-grain);
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* =============================================
   FOCUS STATES
   ============================================= */

*:focus {
    outline: 2px solid var(--color-direct);
    outline-offset: 3px;
}

*:focus:not(:focus-visible) {
    outline: none;
}

*:focus-visible {
    outline: 2px solid var(--color-direct);
    outline-offset: 3px;
}

/* =============================================
   LAYOUT
   ============================================= */

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 var(--space-l);
}

.sp-only {
    display: none;
}

/* =============================================
   HEADER
   ============================================= */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-header);
    background: rgba(250, 249, 247, 0.95);
    padding: var(--space-m) var(--space-l);
    padding-top: calc(var(--space-m) + env(safe-area-inset-top));
    transition: transform var(--duration-normal) var(--ease-out-expo);
}

@supports (backdrop-filter: blur(12px)) {
    .header {
        background: rgba(250, 249, 247, 0.85);
        backdrop-filter: blur(12px) saturate(180%);
    }
}

.header.hidden {
    transform: translateY(-100%);
}

.header .logo h1 {
    font-family: var(--font-display);
    font-size: var(--font-size-m);
    font-weight: 400;
    color: var(--color-text);
    letter-spacing: 0.02em;
}

/* =============================================
   HERO SECTION - Immersive gradient
   ============================================= */

.hero {
    position: relative;
    height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-visual {
    position: absolute;
    inset: 0;
    z-index: var(--z-base);
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: var(--gradient-hero);
    background-size: 300% 300%;
    animation: gradientShift 20s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    25% { background-position: 50% 0%; }
    50% { background-position: 100% 50%; }
    75% { background-position: 50% 100%; }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(26, 26, 26, 0.3) 0%,
        rgba(26, 26, 26, 0.5) 100%
    );
    z-index: var(--z-elevated);
}

.hero-content {
    position: relative;
    z-index: var(--z-overlay);
    text-align: center;
    padding: 0 var(--space-l);
    max-width: 1000px;
    margin: 0 auto;
}

.hero-mission {
    font-family: var(--font-display);
    font-size: var(--font-size-hero);
    font-weight: 400;
    color: white;
    line-height: 1.3;
    letter-spacing: 0.02em;
    margin-bottom: var(--space-xxl);
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.mission-line {
    display: block;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s var(--ease-out-expo) forwards;
}

.mission-line:nth-child(1) { animation-delay: 0.3s; }
.mission-line:nth-child(2) { animation-delay: 0.5s; }
.mission-line:nth-child(3) { animation-delay: 0.7s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, white);
    animation: scrollPulse 2s ease-in-out infinite;
}

.scroll-indicator::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
}

@keyframes scrollPulse {
    0%, 100% {
        opacity: 0.4;
        transform: translateX(-50%) scaleY(0.8);
    }
    50% {
        opacity: 1;
        transform: translateX(-50%) scaleY(1);
    }
}

/* =============================================
   SCROLL ANIMATIONS
   ============================================= */

.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity var(--duration-slow) var(--ease-out-expo),
                transform var(--duration-slow) var(--ease-out-expo);
}

.animate-on-scroll.in-view {
    opacity: 1;
    transform: translateY(0);
}

.stagger-item {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity var(--duration-normal) var(--ease-out-expo),
                transform var(--duration-normal) var(--ease-out-expo);
    transition-delay: calc(var(--stagger, 0) * 0.1s);
}

.stagger-item.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* =============================================
   SECTION STYLES
   ============================================= */

/* Section Labels - Distinctive */
.section-label {
    font-family: var(--font-heading);
    font-size: var(--font-size-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--color-text-lighter);
    margin-bottom: var(--space-xl);
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: var(--space-s);
}

.section-label::before {
    content: '';
    width: 40px;
    height: 1px;
    background: currentColor;
    opacity: 0.4;
}

/* Section Accents - Decorative elements */
.section-accent {
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(135deg, transparent 50%, rgba(44, 62, 123, 0.03) 100%);
    pointer-events: none;
}

/* =============================================
   VISION SECTION
   ============================================= */

.vision {
    position: relative;
    padding: 120px 0 80px;
    background: var(--gradient-subtle);
}

@media (min-width: 768px) {
    .vision {
        padding: 180px 0 120px;
    }
}

/* =============================================
   MISSION SECTION
   ============================================= */

.mission {
    padding: 80px 0;
    background: var(--color-background);
    position: relative;
}

.mission::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 200px;
    background: linear-gradient(to bottom, transparent, var(--color-tailored), transparent);
    opacity: 0.6;
}

@media (min-width: 768px) {
    .mission {
        padding: 120px 0;
    }
}

/* =============================================
   VALUES SECTION
   ============================================= */

.values {
    padding: 80px 0;
    background: var(--color-background-warm);
    position: relative;
}

.values::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 80px;
    background: linear-gradient(to bottom, var(--color-text-lighter), transparent);
    opacity: 0.2;
}

@media (min-width: 768px) {
    .values {
        padding: 140px 0 160px;
    }
}

/* =============================================
   VMV ITEM LAYOUT - Asymmetric
   ============================================= */

.vmv-item {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    align-items: center;
}

@media (min-width: 768px) {
    .vmv-item {
        grid-template-columns: 1.5fr 1fr;
        gap: var(--space-xxl);
    }

    .mission .vmv-item {
        grid-template-columns: 1fr 1.5fr;
    }
}

.vmv-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, var(--font-size-xxl));
    font-weight: 400;
    color: var(--color-text);
    line-height: 1.3;
    margin-bottom: var(--space-l);
    letter-spacing: 0.02em;
}

.vmv-description {
    font-family: var(--font-body);
    font-size: var(--font-size-base);
    color: var(--color-text-light);
    line-height: 1.9;
}

.vmv-description p {
    margin-bottom: var(--space-m);
}

.vmv-description p:last-child {
    margin-bottom: 0;
}

/* VMV Illustration */
.vmv-illustration {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 280px;
    position: relative;
}

.vmv-illustration::before {
    content: '';
    position: absolute;
    inset: 20px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(44, 62, 123, 0.05) 0%, transparent 70%);
}

.vmv-svg {
    width: 200px;
    height: 200px;
    transition: transform var(--duration-slow) var(--ease-out-expo);
}

.vmv-illustration:hover .vmv-svg {
    transform: scale(1.05) rotate(2deg);
}

/* Mission Title */
.mission-title {
    text-wrap: balance;
}

@media (max-width: 768px) {
    .mission-title br {
        display: none;
    }
}

/* =============================================
   VALUES LIST
   ============================================= */

.values-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-xxl);
    max-width: 900px;
    margin: 0 auto;
}

.value-item {
    position: relative;
    padding: var(--space-l);
    padding-left: var(--space-xl);
    background: var(--color-background);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: transform var(--duration-normal) var(--ease-out-expo),
                box-shadow var(--duration-normal) var(--ease-out-expo);
}

.value-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    border-radius: 4px 0 0 4px;
}

.value-item.direct::before { background: var(--color-direct); }
.value-item.tailored::before { background: var(--color-tailored); }
.value-item.lightweight::before { background: var(--color-lightweight); }

.value-item:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
}

.value-header {
    display: flex;
    align-items: center;
    gap: var(--space-m);
    margin-bottom: var(--space-m);
}

.value-icon {
    flex-shrink: 0;
}

.icon-placeholder {
    width: 56px;
    height: 56px;
    border: 2px solid;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: transform var(--duration-fast) var(--ease-out-expo);
}

.value-item:hover .icon-placeholder {
    transform: rotate(10deg);
}

.direct-icon { border-color: var(--color-direct); }
.tailored-icon { border-color: var(--color-tailored); }
.lightweight-icon { border-color: var(--color-lightweight); }

/* Icon internals */
.direct-icon::before {
    content: '';
    position: absolute;
    width: 60%;
    height: 3px;
    background: var(--color-direct);
    border-radius: 2px;
}

.direct-icon::after {
    content: '';
    position: absolute;
    right: 20%;
    width: 8px;
    height: 8px;
    background: var(--color-direct);
    border-radius: 50%;
}

.tailored-icon::before {
    content: '';
    position: absolute;
    width: 22px;
    height: 22px;
    border: 2px solid var(--color-tailored);
    border-radius: 3px;
}

.tailored-icon::after {
    content: '';
    position: absolute;
    width: 14px;
    height: 14px;
    border: 2px solid var(--color-tailored);
    border-radius: 2px;
    transform: translate(25%, -35%) rotate(12deg);
    opacity: 0.5;
}

.lightweight-icon::before {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--color-lightweight);
    border-radius: 50%;
}

.lightweight-icon::after {
    content: '';
    position: absolute;
    width: 5px;
    height: 5px;
    background: var(--color-lightweight);
    border-radius: 50%;
    transform: translate(120%, 80%);
    opacity: 0.5;
}

.value-title {
    font-family: var(--font-heading);
    font-size: var(--font-size-l);
    font-weight: 600;
    letter-spacing: 0.02em;
}

.value-item.direct .value-title { color: var(--color-direct); }
.value-item.tailored .value-title { color: var(--color-tailored); }
.value-item.lightweight .value-title { color: var(--color-lightweight); }

.value-definition {
    font-family: var(--font-body);
    font-size: var(--font-size-m);
    font-weight: 500;
    color: var(--color-text);
    margin-bottom: var(--space-s);
    line-height: 1.5;
}

.value-description {
    font-family: var(--font-body);
    font-size: var(--font-size-base);
    color: var(--color-text-light);
    line-height: 1.8;
}

/* =============================================
   NEWS SECTION
   ============================================= */

.news {
    padding: var(--space-xxl) 0;
    background: var(--color-background);
}

.news h2 {
    font-family: var(--font-heading);
    font-size: var(--font-size-xs);
    font-weight: 600;
    color: var(--color-text-lighter);
    text-transform: uppercase;
    letter-spacing: 0.3em;
    margin-bottom: var(--space-xl);
    display: flex;
    align-items: center;
    gap: var(--space-s);
}

.news h2::before {
    content: '';
    width: 24px;
    height: 1px;
    background: currentColor;
    opacity: 0.4;
}

.news-list {
    margin-bottom: var(--space-l);
}

.news-item {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: var(--space-l);
    align-items: start;
    padding: var(--space-l) 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transition: transform var(--duration-fast) var(--ease-out-expo);
}

.news-item:hover {
    transform: translateX(8px);
}

.news-meta {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.news-date {
    font-family: var(--font-heading);
    font-size: var(--font-size-s);
    color: var(--color-text-lighter);
    font-weight: 400;
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.05em;
}

.news-category {
    font-family: var(--font-heading);
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 4px 10px;
    border-radius: 4px;
    text-align: center;
    color: white;
    align-self: flex-start;
}

.news-category.direct { background: var(--color-direct); }
.news-category.tailored { background: var(--color-tailored); }
.news-category.lightweight { background: var(--color-lightweight); }

.news-title {
    font-family: var(--font-body);
    font-size: var(--font-size-base);
    font-weight: 400;
    color: var(--color-text);
    line-height: 1.6;
}

.news-title a {
    color: inherit;
    text-decoration: none;
    transition: color var(--duration-fast) var(--ease-out-expo);
}

.news-title a:hover {
    color: var(--color-direct);
}

.news-more {
    text-align: right;
    margin-top: var(--space-l);
}

.news-all-link {
    font-family: var(--font-heading);
    font-size: var(--font-size-s);
    font-weight: 500;
    color: var(--color-direct);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    transition: gap var(--duration-fast) var(--ease-out-expo);
}

.news-all-link:hover {
    gap: var(--space-s);
}

/* =============================================
   COMPANY SECTION
   ============================================= */

.company {
    padding: var(--space-xxl) 0;
    background: var(--color-background-warm);
    position: relative;
}

.company::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.08), transparent);
}

.company h2 {
    font-family: var(--font-heading);
    font-size: var(--font-size-xs);
    font-weight: 600;
    color: var(--color-text-lighter);
    text-transform: uppercase;
    letter-spacing: 0.3em;
    margin-bottom: var(--space-xl);
}

.company-info {
    display: grid;
    gap: var(--space-l);
}

.company-info dt {
    font-family: var(--font-heading);
    font-size: var(--font-size-xs);
    color: var(--color-text-lighter);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: var(--space-xs);
}

.company-info dd {
    font-family: var(--font-body);
    font-size: var(--font-size-base);
    color: var(--color-text);
    font-weight: 400;
    line-height: 1.6;
}

/* =============================================
   CONTACT SECTION
   ============================================= */

.contact {
    padding: var(--space-xxl) 0;
    background: var(--color-bg-dark);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 50% 100%, rgba(44, 62, 123, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.contact h2 {
    font-family: var(--font-heading);
    font-size: var(--font-size-xs);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.3em;
    margin-bottom: var(--space-xl);
    position: relative;
}

.email-link {
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 3vw, var(--font-size-xl));
    color: white;
    text-decoration: none;
    letter-spacing: 0.03em;
    padding: var(--space-m) var(--space-l);
    display: inline-block;
    position: relative;
    transition: transform var(--duration-fast) var(--ease-out-expo);
}

.email-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: var(--space-l);
    right: var(--space-l);
    height: 1px;
    background: white;
    opacity: 0.3;
    transform: scaleX(0);
    transition: transform var(--duration-normal) var(--ease-out-expo);
}

.email-link:hover {
    transform: translateY(-4px);
}

.email-link:hover::after {
    transform: scaleX(1);
}

/* =============================================
   FOOTER
   ============================================= */

.footer {
    padding: var(--space-xl) 0;
    background: var(--color-bg-dark);
}

.footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: var(--font-size-base);
    color: white;
    font-weight: 400;
    letter-spacing: 0.02em;
}

.footer-content {
    text-align: right;
}

.footer-copyright,
.footer-email {
    font-family: var(--font-heading);
    font-size: var(--font-size-xs);
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: var(--space-xs);
    letter-spacing: 0.05em;
}

.footer-email:last-child {
    margin-bottom: 0;
}

/* =============================================
   MOBILE STYLES
   ============================================= */

@media (max-width: 768px) {
    .container {
        padding: 0 var(--space-m);
    }

    .header {
        padding: var(--space-s) var(--space-m);
    }

    .sp-only {
        display: inline;
    }

    .hero-mission {
        font-size: clamp(1.75rem, 7vw, 2.5rem);
        line-height: 1.4;
    }

    .scroll-indicator {
        bottom: 40px;
        height: 40px;
    }

    .section-accent {
        display: none;
    }

    .vmv-item {
        grid-template-columns: 1fr;
    }

    .mission .vmv-item {
        grid-template-columns: 1fr;
    }

    .vmv-illustration {
        order: -1;
        height: 200px;
    }

    .vmv-svg {
        width: 150px;
        height: 150px;
    }

    .vmv-title {
        font-size: 1.5rem;
        text-align: center;
    }

    .vmv-description {
        text-align: center;
    }

    .value-item {
        padding: var(--space-m);
        padding-left: var(--space-l);
    }

    .news-item {
        grid-template-columns: 1fr;
        gap: var(--space-s);
    }

    .news-meta {
        flex-direction: row;
        align-items: center;
        gap: var(--space-s);
    }

    .footer .container {
        flex-direction: column;
        gap: var(--space-m);
        text-align: center;
    }

    .footer-content {
        text-align: center;
    }
}

/* =============================================
   REDUCED MOTION
   ============================================= */

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

    .hero-video {
        animation: none;
        background-position: center;
    }

    .scroll-indicator {
        animation: none;
        opacity: 0.6;
    }

    .animate-on-scroll,
    .stagger-item {
        opacity: 1;
        transform: none;
    }

    .mission-line {
        opacity: 1;
        transform: none;
        animation: none;
    }
}

/* =============================================
   PRINT STYLES
   ============================================= */

@media print {
    .grain-overlay,
    .hero-visual,
    .section-accent,
    .scroll-indicator {
        display: none;
    }

    body {
        background: white;
        color: black;
    }

    .header {
        position: relative;
        background: transparent;
        box-shadow: none;
    }

    .hero {
        height: auto;
        padding: 2cm 0;
    }

    .hero-mission {
        color: black;
        text-shadow: none;
    }
}

/* =============================================
   NEWS PAGE STYLES
   ============================================= */

.news-page {
    padding-top: calc(var(--space-xxl) + 80px);
    min-height: 80vh;
}

.page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-xxl);
    padding-bottom: var(--space-l);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.page-title {
    font-family: var(--font-heading);
    font-size: var(--font-size-xl);
    font-weight: 500;
    color: var(--color-text);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.back-link {
    font-family: var(--font-heading);
    font-size: var(--font-size-s);
    color: var(--color-text-lighter);
    text-decoration: none;
    transition: color var(--duration-fast) var(--ease-out-expo);
}

.back-link:hover {
    color: var(--color-direct);
}

.news-archive {
    display: grid;
    gap: var(--space-xl);
}

.news-article {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: var(--space-l);
    align-items: start;
    padding-bottom: var(--space-xl);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.news-article:last-child {
    border-bottom: none;
}

.news-meta-archive {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.news-content .news-title {
    font-family: var(--font-body);
    font-size: var(--font-size-l);
    font-weight: 400;
    color: var(--color-text);
    line-height: 1.4;
    margin-bottom: var(--space-s);
}

.news-content .news-title a {
    color: inherit;
    text-decoration: none;
    transition: color var(--duration-fast) var(--ease-out-expo);
}

.news-content .news-title a:hover {
    color: var(--color-direct);
}

.news-excerpt {
    font-family: var(--font-body);
    font-size: var(--font-size-base);
    color: var(--color-text-light);
    line-height: 1.7;
}

/* =============================================
   ARTICLE PAGE STYLES
   ============================================= */

.article-page {
    padding-top: calc(var(--space-xxl) + 80px);
    min-height: 80vh;
}

.breadcrumb {
    font-family: var(--font-heading);
    font-size: var(--font-size-s);
    color: var(--color-text-lighter);
    margin-bottom: var(--space-l);
}

.breadcrumb a {
    color: inherit;
    text-decoration: none;
    transition: color var(--duration-fast) var(--ease-out-expo);
}

.breadcrumb a:hover {
    color: var(--color-direct);
}

.breadcrumb span {
    margin: 0 var(--space-xs);
    opacity: 0.4;
}

.article-meta {
    margin-bottom: var(--space-xxl);
    padding-bottom: var(--space-l);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.article-date {
    font-family: var(--font-heading);
    font-size: var(--font-size-s);
    color: var(--color-text-lighter);
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-s);
    display: block;
}

.article-title {
    font-family: var(--font-display);
    font-size: clamp(var(--font-size-xl), 4vw, var(--font-size-xxl));
    font-weight: 400;
    color: var(--color-text);
    line-height: 1.3;
    letter-spacing: 0.02em;
}

.article-content {
    font-family: var(--font-body);
    font-size: var(--font-size-base);
    line-height: 1.8;
    color: var(--color-text);
}

.article-content .lead {
    font-size: var(--font-size-m);
    color: var(--color-text-light);
    margin-bottom: var(--space-xl);
    padding-left: var(--space-m);
    border-left: 3px solid var(--color-direct);
}

.article-content h2 {
    font-family: var(--font-heading);
    font-size: var(--font-size-l);
    font-weight: 600;
    color: var(--color-text);
    margin-top: var(--space-xxl);
    margin-bottom: var(--space-l);
    letter-spacing: 0.02em;
}

.article-content p {
    margin-bottom: var(--space-l);
}

.company-table {
    margin: var(--space-xl) 0;
}

.company-table dl {
    display: grid;
    gap: var(--space-m);
    padding: var(--space-l);
    background: var(--color-background-warm);
    border-radius: 8px;
}

.company-table dt {
    font-family: var(--font-heading);
    font-size: var(--font-size-xs);
    color: var(--color-text-lighter);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-xs);
}

.company-table dd {
    font-family: var(--font-body);
    font-size: var(--font-size-base);
    color: var(--color-text);
    line-height: 1.6;
}

.article-footer {
    margin-top: var(--space-xxl);
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.back-to-news {
    font-family: var(--font-heading);
    font-size: var(--font-size-s);
    color: var(--color-direct);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    transition: gap var(--duration-fast) var(--ease-out-expo);
}

.back-to-news:hover {
    gap: var(--space-s);
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .news-page,
    .article-page {
        padding-top: calc(var(--space-xl) + 60px);
    }

    .page-header {
        flex-direction: column;
        gap: var(--space-m);
        align-items: flex-start;
    }

    .news-article {
        grid-template-columns: 1fr;
        gap: var(--space-s);
    }

    .news-meta-archive {
        flex-direction: row;
        align-items: center;
        gap: var(--space-s);
    }
}
