:root {
    --color-primary: #1a1a1a;
    --color-primary-light: #2c2c2c;
    --color-accent: #c43838;
    /* A beautiful traditional red */
    --color-accent-hover: #a32d2d;
    --color-bg: #ffffff;
    --color-bg-light: #f7f7f5;
    --color-text: #333333;
    --color-text-muted: #666666;
    --color-white: #ffffff;

    --font-heading: 'Noto Serif JP', serif;
    --font-body: 'Inter', 'Noto Sans JP', sans-serif;

    --transition: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

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

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background-color: var(--color-bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

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

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

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

.mt-2 {
    margin-top: 1rem;
}

.mt-4 {
    margin-top: 2rem;
}

.mt-5 {
    margin-top: 3rem;
}

.mr-2 {
    margin-right: 0.5rem;
}

.bg-light {
    background-color: var(--color-bg-light);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.8rem;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid transparent;
    letter-spacing: 0.05em;
}

.btn--small {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
}

.btn--large {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
}

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

.btn--primary:hover {
    background-color: var(--color-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(196, 56, 56, 0.3);
    color: var(--color-white);
}

.btn--secondary {
    background-color: rgba(255, 255, 255, 0.15);
    color: var(--color-white);
    border-color: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.btn--secondary:hover {
    background-color: var(--color-white);
    color: var(--color-primary);
    transform: translateY(-2px);
}

.btn--outline {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.btn--outline:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-2px);
}

.btn--glow:hover {
    box-shadow: 0 0 20px rgba(196, 56, 56, 0.6);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 1rem 0;
    transition: all 0.4s ease;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.header__inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header__logo a {
    display: block;
}

.header__logo a img {
    transition: filter 0.4s ease;
}

.header__nav {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.header__nav ul {
    display: flex;
    gap: 2rem;
}

.header__nav ul li a {
    color: var(--color-primary);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 0.5rem 0;
}

.header__nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-accent);
    transition: width 0.3s ease;
}

.header__nav ul li a:hover::after {
    width: 100%;
}

.header__btn {
    background-color: var(--color-accent);
    color: var(--color-white);
}

.header__btn:hover {
    background-color: var(--color-accent-hover);
    color: var(--color-white);
    transform: translateY(-2px);
}

.header__mobile-menu {
    display: none;
    font-size: 1.5rem;
    color: var(--color-primary);
    cursor: pointer;
    z-index: 101;
}

/* Mobile Menu Active State */
.header__nav.is-active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--color-white);
    padding: 2rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.header__nav.is-active ul {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 1.5rem;
}

.header__nav.is-active ul li a {
    color: var(--color-primary);
    font-size: 1.1rem;
    display: block;
    width: 100%;
}

/* Header Responsive */
@media (max-width: 900px) {
    .header__inner {
        padding: 0 1.5rem;
    }

    .header__logo a img {
        height: 35px !important;
    }

    .header__nav {
        gap: 1.5rem;
    }

    .header__nav ul {
        display: none;
    }

    .header__btn {
        display: none;
    }

    .header__mobile-menu {
        display: block;
    }
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #000;
}

.hero__slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero__slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transform: scale(1.05);
    animation: fadeSlide 24s infinite;
}

.hero__slide:nth-child(1) {
    animation-delay: 0s;
}

.hero__slide:nth-child(2) {
    animation-delay: 6s;
}

.hero__slide:nth-child(3) {
    animation-delay: 12s;
}

.hero__slide:nth-child(4) {
    animation-delay: 18s;
}

@keyframes fadeSlide {
    0% {
        opacity: 0;
        transform: scale(1.05);
    }

    10% {
        opacity: 1;
    }

    25% {
        opacity: 1;
    }

    35% {
        opacity: 0;
    }

    100% {
        opacity: 0;
        transform: scale(1.15);
    }
}

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.2) 100%);
    z-index: 2;
}

.hero__content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--color-white);
    padding: 0 2rem;
    max-width: 1000px;
    margin-top: 4rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

.hero__title {
    font-family: var(--font-heading);
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero__title-sub {
    font-size: 1.6rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    opacity: 0.95;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero__title-main {
    font-size: 4.5rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    line-height: 1.2;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

.hero__desc {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    letter-spacing: 0.05em;
    line-height: 1.8;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero__actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

/* Sections */
.section {
    padding: 7rem 0;
}

.section__title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--color-primary);
    position: relative;
    padding-bottom: 1.5rem;
    letter-spacing: 0.05em;
}

.section__title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--color-accent);
}

.section__title.text-left::after {
    left: 0;
    transform: none;
}

/* Strengths */
.strengths__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.strength__card {
    background: var(--color-white);
    padding: 3.5rem 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.02);
    position: relative;
    overflow: hidden;
}

.strength__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--color-accent);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.strength__card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.strength__card:hover::before {
    transform: scaleX(1);
}

.strength__icon {
    font-size: 3rem;
    color: var(--color-accent);
    margin-bottom: 1.5rem;
}

.strength__title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.strength__desc {
    color: var(--color-text-muted);
}

/* Products */
.products__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.product__card {
    display: block;
    background: var(--color-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.product__card:hover .product__img img {
    transform: scale(1.08);
}

.product__img {
    height: 260px;
    overflow: hidden;
}

.product__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.product__content {
    padding: 2rem;
}

.product__title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--color-primary);
    transition: color 0.3s ease;
}

.product__card:hover .product__title {
    color: var(--color-accent);
}

.product__desc {
    color: var(--color-text-muted);
    font-size: 1rem;
}

/* Wholesale */
.wholesale__partners {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.partner__logo.text-logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: #aeaeae;
    transition: var(--transition);
    cursor: default;
}

.partner__logo.text-logo:hover {
    color: var(--color-primary);
    transform: scale(1.05);
}

.wholesale__info {
    background-color: var(--color-bg-light);
    padding: 4rem;
    border-radius: 12px;
    max-width: 850px;
    margin: 0 auto;
    border-left: 5px solid var(--color-accent);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.wholesale__text h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    color: var(--color-primary);
}

/* Factory */
.factory__inner {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 5rem;
    align-items: center;
}

.factory__image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.factory__image img {
    transition: transform 0.6s ease;
}

.factory__image:hover img {
    transform: scale(1.03);
}

.factory__subtitle {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
    color: var(--color-primary);
}

.factory__details {
    margin: 2rem 0;
    background: var(--color-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

.factory__details li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.factory__details li:last-child {
    margin-bottom: 0;
}

.factory__details i {
    color: var(--color-accent);
    font-size: 1.2rem;
    width: 20px;
}

.factory__details span {
    font-weight: 600;
    color: var(--color-primary);
    min-width: 80px;
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    color: var(--color-accent);
    font-weight: 600;
    font-size: 1.1rem;
}

.link-arrow::after {
    content: '→';
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.link-arrow:hover::after {
    transform: translateX(8px);
}

/* Pre-Footer CTA */
.cta {
    position: relative;
    text-align: center;
    padding: 8rem 2rem;
    color: var(--color-white);
}

.cta__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 1;
}

.cta__bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(2px);
}

.cta__content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta__title {
    font-family: var(--font-heading);
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.cta__desc {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

/* Footer */
.footer {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 5rem 0 2rem;
}

.footer__inner {
    display: flex;
    justify-content: space-between;
    margin-bottom: 4rem;
    flex-wrap: wrap;
    gap: 3rem;
}

.footer__logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
}

.footer__brand p {
    color: #bbbbbb;
    margin-bottom: 0.5rem;
}

.header__logo a img {
    height: 100%;
    width: auto;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.footer__logo img {
    height: 60px;
    width: auto;
    margin-bottom: 1.5rem;
    mix-blend-mode: screen;
}

.footer__socials {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.footer__socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--color-white);
    font-size: 1.2rem;
    transition: var(--transition);
}

.footer__socials a:hover {
    background-color: var(--color-accent);
    transform: translateY(-3px);
}

.footer__links ul {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.footer__links a {
    color: #bbbbbb;
    position: relative;
}

.footer__links a::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 1px;
    background-color: var(--color-white);
    transition: width 0.3s ease;
}

.footer__links a:hover {
    color: var(--color-white);
}

.footer__links a:hover::before {
    width: 100%;
}

.footer__copy {
    text-align: center;
    color: #777777;
    font-size: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .factory__inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero__title-main {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .header__nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--color-white);
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

    .header__nav.is-active {
        display: flex;
    }

    .header__nav ul {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .header__nav ul li a {
        color: var(--color-primary);
        font-size: 1.1rem;
    }

    .header__mobile-menu {
        display: block;
    }

    .header__btn {
        margin-top: 1rem;
        width: 100%;
        background-color: var(--color-accent);
        color: var(--color-white);
    }

    .header__btn-sub {
        display: none;
    }

    .hero__title-sub {
        font-size: 1.2rem;
    }

    .hero__title-main {
        font-size: 2.5rem;
    }

    .hero__actions {
        flex-direction: column;
    }

    .section {
        padding: 5rem 0;
    }

    .section__title {
        font-size: 2.2rem;
    }

    .wholesale__info {
        padding: 2.5rem;
    }

    .cta__title {
        font-size: 2.2rem;
    }

    .margin-bottom-mobile {
        margin-bottom: 2rem;
    }

    .cta__btn {
        font-size: 0.9rem;
        padding: 1rem 1.5rem;
    }
}

/* Contact Form Styles */
.contact__intro {
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.contact__form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: var(--color-white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

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

.form__group label {
    font-weight: 600;
    color: var(--color-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.required {
    background-color: var(--color-accent);
    color: var(--color-white);
    font-size: 0.75rem;
    padding: 0.1rem 0.4rem;
    border-radius: 3px;
    font-weight: normal;
}

.form__group input,
.form__group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

.form__group input:focus,
.form__group textarea:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(196, 56, 56, 0.1);
}

@media (max-width: 768px) {
    .contact__form-wrapper {
        padding: 2rem 1.5rem;
    }
}

/* Customers Section */
.customers__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.customer__card {
    background: var(--color-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.customer__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.customer__img {
    height: 200px;
    width: 100%;
    overflow: hidden;
    background-color: var(--color-bg-light);
}

.customer__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.customer__card:hover .customer__img img {
    transform: scale(1.05);
}

.customer__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #ccc;
    font-size: 2rem;
}

.customer__placeholder span {
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.customer__info {
    padding: 1.5rem;
    text-align: center;
}

.customer__name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--color-primary);
    margin-bottom: 0.8rem;
}

.customer__link {
    display: inline-flex;
    align-items: center;
    color: var(--color-accent);
    font-size: 0.9rem;
    font-weight: 500;
}

.customer__link:hover {
    text-decoration: underline;
}

.ml-1 {
    margin-left: 0.25rem;
}

/* Recovery Section */
.recovery__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.recovery__content {
    order: 1;
    /* Default desktop order */
}

.recovery__image {
    order: 2;
    position: relative;
}

.recovery__image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    background-color: var(--color-accent);
    opacity: 0.1;
    border-radius: 12px;
    z-index: -1;
}

.recovery__text p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

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

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

    .recovery__content {
        order: 2;
    }

    .recovery__image {
        order: 1;
    }
}

.recovery__image a {
    display: block;
    overflow: hidden;
    border-radius: 12px;
}

.recovery__image a:hover img {
    transform: scale(1.03);
}

/* SNS Section */
.sns__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.sns__item {
    display: block;
    position: relative;
    aspect-ratio: 1 / 1;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.sns__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: var(--color-white);
    font-size: 2.5rem;
}

.sns__item:hover .sns__overlay {
    opacity: 1;
}

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

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

/* Factory Interior Section */
.factory-interior__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.factory-interior__img {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.factory-interior__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.factory-interior__img:hover img {
    transform: scale(1.05);
}

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

@media (max-width: 768px) {
    .factory-interior__grid {
        grid-template-columns: 1fr;
    }
}

/* Media Appearances */
.media__list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.media__item {
    display: flex;
    align-items: center;
    background: var(--color-white);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.media__item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.media__icon {
    font-size: 2rem;
    color: var(--color-accent);
    margin-right: 1.2rem;
    width: 40px;
    text-align: center;
}

.media__title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-primary);
    margin: 0;
}

/* Furusato Nozei */
.furusato .section__title::after {
    background-color: var(--color-white);
}

/* ==========================================================================
   Multi-page Specific Styles
   ========================================================================== */

/* Page Header (Subpage Hero) */
.page-header {
    height: 40vh;
    min-height: 300px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--color-white);
    margin-top: 80px;
    /* Offset for fixed header */
}

.page-header__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.page-header__title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.page-header__desc {
    font-size: 1.1rem;
    font-family: var(--font-primary);
    letter-spacing: 0.2rem;
    position: relative;
    z-index: 1;
}

/* Ensure subpage headers always have a solid background, not just on scroll */
.header.is-page-header {
    background: rgba(255, 255, 255, 0.98) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header.is-page-header .header__nav ul li a {
    color: var(--color-text);
}

.header.is-page-header .header__logo a img {
    filter: none;
}

/* Nav Banners (Top Page Links to Subpages) */
.nav-banners__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.nav-banner {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-decoration: none;
    color: var(--color-white);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nav-banner:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.nav-banner__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.nav-banner:hover .nav-banner__image {
    transform: scale(1.05);
}

.nav-banner__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(44, 62, 80, 0.4), rgba(44, 62, 80, 0.8));
}

.nav-banner__content {
    position: relative;
    z-index: 1;
    padding: 2rem;
}

.nav-banner__content h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.nav-banner__content p {
    font-size: 1rem;
    opacity: 0.9;
}

/* Company Table */
.company-table {
    max-width: 800px;
    margin: 0 auto;
    background: var(--color-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.company-table table {
    width: 100%;
    border-collapse: collapse;
}

.company-table th,
.company-table td {
    padding: 1.5rem;
    border-bottom: 1px solid var(--color-light);
    text-align: left;
}

.company-table tr:last-child th,
.company-table tr:last-child td {
    border-bottom: none;
}

.company-table th {
    width: 30%;
    background: #fafafa;
    font-weight: 600;
    color: var(--color-primary);
}

@media (max-width: 768px) {
    .nav-banners__grid {
        grid-template-columns: 1fr;
    }

    .company-table th,
    .company-table td {
        display: block;
        width: 100%;
    }

    .company-table th {
        background: transparent;
        padding-bottom: 0.5rem;
        border-bottom: none;
    }

    .company-table td {
        padding-top: 0;
        padding-left: 1.5rem;
        border-bottom: 1px dotted var(--color-light);
    }
}