/*
Theme Name: Hope Light Holdings
Theme URI: 
Description: Custom theme for Hope Light Holdings Co.,Ltd.
Version: 1.0
Author: 
Author URI: 
License: 
License URI: 
*/

:root {
    --primary-green: #5cb85c;
    --primary-green-light: #8ed08e;
    --primary-green-dark: #3d8b3d;
    --accent-cyan: #00bcd4;
    --accent-magenta: #e91e8c;
    --text-dark: #333333;
    --text-gray: #666666;
    --text-light: #999999;
    --bg-white: #ffffff;
    --bg-light: #f8f9fa;
    --bg-gray: #f0f0f0;
    --border-light: #e0e0e0;
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Shippori Mincho', 'Yu Mincho', 'YuMincho', 'Hiragino Mincho ProN', serif;
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   Header
======================================== */
.header {
    position: relative;
    /* becomes fixed after hero */
    top: 0;
    left: 0;
    right: 0;
    background: var(--bg-white);
    z-index: 1000;
    border-bottom: 1px solid var(--border-light);
}

.header.is-sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.header-top {
    background: var(--bg-light);
    padding: 22px 0;
    font-size: 12px;
    color: var(--text-gray);
    border-bottom: 1px solid var(--border-light);
}

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

.header-contact {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-contact a:hover {
    color: var(--primary-green);
}

.header-tel {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: 16px;
    color: var(--text-dark);
}

.header-tel .tel-icon {
    font-size: 18px;
    line-height: 1;
}

.header-main {
    padding: 0;
}

/* Nav bar (2nd row) */
.header-nav {
    background: #d8c3a5;
    /* close to the sample screenshot */
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

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



/* Nav fixed after hero (header-topは追従させない) */
.header-nav.is-sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1100;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.10);
    animation: navFadeIn 240ms ease both;
}

@keyframes navFadeIn {
    from {
        opacity: 0;
        transform: translateY(-12px);
    }

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

@media (prefers-reduced-motion: reduce) {
    .header-nav.is-sticky {
        animation: none;
    }
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-green);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
}

.logo-icon-img {
    width: 280px;
    max-height: 50px;
    height: auto;
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;
    font-family: sans-serif;
}

.logo-main {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: 1px;
}

.logo-sub {
    font-size: 10px;
    color: var(--text-light);
    letter-spacing: 0.5px;
}

/* ========================================
   Navigation
======================================== */
.nav-menu {
    display: flex;
    gap: 0;
}

.nav-menu>li {
    position: relative;
}

.nav-menu>li>a {
    display: block;
    padding: 16px 22px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
}

.nav-menu>li>a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary-green);
    transition: var(--transition-medium);
}

.nav-menu>li:hover>a::after {
    width: 80%;
}

.nav-menu>li:hover>a {
    color: var(--primary-green);
}

/* Dropdown */
.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-top: 2px solid var(--primary-green);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition-medium);
    z-index: 100;
}

.nav-menu>li:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown li {
    border-bottom: 1px solid var(--border-light);
}

.dropdown li:last-child {
    border-bottom: none;
}

.dropdown a {
    display: block;
    padding: 12px 20px;
    font-size: 13px;
    color: var(--text-dark);
}

.dropdown a:hover {
    background: var(--bg-light);
    color: var(--primary-green);
}

/* ========================================
   Hero
======================================== */
.hero {
    margin-top: 0;
    position: relative;
    height: 700px;
    overflow: hidden;
}

.hero-slide {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-bg {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #a8e6cf 0%, #88d8b0 50%, #7bc6a3 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-bg svg {
    width: 100%;
    height: 100%;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /*background: linear-gradient(135deg, rgba(92, 184, 92, 0.3), rgba(0, 188, 212, 0.2));*/
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 2;
}

.hero-catch {
    font-size: 42px;
    font-weight: 800;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    margin-bottom: 20px;
    letter-spacing: 3px;
}

.hero-subcatch {
    font-size: 18px;
    font-weight: 400;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
    letter-spacing: 2px;
}

.hero-buttons {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    z-index: 999;
}

.hero-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 20px;
    font-size: 13px;
    font-weight: 500;
    color: white;
    min-width: 100px;
    text-align: center;
}

.hero-btn.green {
    background: var(--primary-green);
}

.hero-btn.cyan {
    background: var(--accent-cyan);
}

.hero-btn:hover {
    opacity: 0.85;
}


/* Hero slideshow (任意枚数) */
.hero {
    position: relative;
}

.hero-slider {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slide-item {
    position: absolute;
    inset: 0;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0;
    transform: scale(1.02);
    transition: opacity 1s ease, transform 6s ease;
}

.hero-slide-item.is-active {
    opacity: 1;
    transform: scale(1);
}

.hero-overlay {
    z-index: 1;
}

.hero-content {
    z-index: 2;
}

.hero-dots {
    position: absolute;
    left: 50%;
    bottom: 18px;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.35);
    padding: 0;
    cursor: pointer;
}

.hero-dot.is-active {
    background: rgba(255, 255, 255, 0.95);
}

@media (prefers-reduced-motion: reduce) {
    .hero-slide-item {
        transition: none;
        transform: none;
    }
}

/* ========================================
   Section Common
======================================== */
.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title-main {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    position: relative;
    display: inline-block;
    padding: 0 30px;
}

.section-title-main::before,
.section-title-main::after {
    content: '―';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    font-weight: 300;
}

.section-title-main::before {
    left: -20px;
}

.section-title-main::after {
    right: -20px;
}

.section-title-en {
    font-family: 'Cormorant Garamond', serif;
    font-size: 12px;
    font-weight: 700;
    color: var(--primary-green);
    letter-spacing: 2px;
    margin-top: 8px;
    text-transform: uppercase;
}

/* ========================================
   News Section
======================================== */
.news-section {
    background: var(--bg-white);
}

.news-list {
    max-width: 800px;
    margin: 0 auto;
}

.news-item {
    display: flex;
    align-items: flex-start;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-light);
    gap: 20px;
}

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

.news-date {
    font-family: 'Cormorant Garamond', serif;
    font-size: 13px;
    color: var(--text-light);
    min-width: 100px;
}

.news-category {
    display: inline-block;
    padding: 3px 12px;
    font-size: 11px;
    background: var(--primary-green);
    color: white;
    min-width: 80px;
    text-align: center;
}

.news-category.pickup {
    background: var(--accent-magenta);
}

.news-title {
    flex: 1;
    font-size: 14px;
    color: var(--text-dark);
}

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

/* ========================================
   Scroll Top
======================================== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--accent-cyan);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-medium);
    z-index: 100;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--primary-green);
}

/* ========================================
   Message Section
======================================== */
.message-section {
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
}

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

.message-text {
    font-size: 15px;
    line-height: 2.2;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.btn-primary {
    display: inline-block;
    padding: 12px 40px;
    background: var(--primary-green);
    color: white;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition-medium);
    border: 2px solid var(--primary-green);
}

.btn-primary:hover {
    background: var(--bg-white);
    color: var(--primary-green);
}

/* ========================================
   Business Section
======================================== */
.business-section {
    background: var(--bg-white);
}

.business-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.business-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    overflow: hidden;
    transition: var(--transition-medium);
}

.business-card:hover {
    border-color: var(--primary-green);
}

.business-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.business-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-medium);
}

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

.business-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-green-light), var(--accent-cyan));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    font-weight: 500;
}

.business-body {
    padding: 20px;
}

.business-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
    padding-left: 12px;
    border-left: 3px solid var(--primary-green);
}

.business-desc {
    font-size: 13px;
    color: var(--text-gray);
    line-height: 1.7;
}

/* ========================================
   Gallery Section
======================================== */
.gallery-section {
    background: var(--bg-gray);
    position: relative;
    overflow: hidden;
    padding-bottom: 80px;
}

.gallery-wrapper {
    overflow: hidden;
    width: 100%;
}

.gallery-track {
    display: flex;
    animation: scroll-gallery 30s linear infinite;
    width: max-content;
}

.gallery-track:hover {
    animation-play-state: paused;
}

@keyframes scroll-gallery {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.gallery-item {
    position: relative;
    width: 300px;
    height: 200px;
    flex-shrink: 0;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-medium);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: white;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: white;
    font-size: 14px;
    font-weight: 500;
}

/* ========================================
   About Section
======================================== */
.about-section {
    background: var(--bg-white);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.about-card {
    text-align: center;
    padding: 30px 20px;
    transition: var(--transition-medium);
    border: 1px solid var(--border-light);
}

.about-card:hover {
    border-color: var(--primary-green);
}

.about-image {
    width: 100%;
    height: 150px;
    margin-bottom: 20px;
    overflow: hidden;
}

.about-image-placeholder {
    width: 100%;
    height: 100%;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: var(--text-light);
}

.about-card-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.about-card-link {
    display: inline-block;
    font-size: 13px;
    color: var(--primary-green);
    padding-top: 10px;
    border-top: 1px solid var(--border-light);
    margin-top: 10px;
}

.about-card-link:hover {
    color: var(--primary-green-dark);
}

/* ========================================
   Latest News Section
======================================== */
.latest-section {
    background: var(--bg-light);
}

.latest-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.latest-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    overflow: hidden;
    transition: var(--transition-medium);
}

.latest-card:hover {
    border-color: var(--primary-green);
}

.latest-image {
    aspect-ratio: 16/10;
    overflow: hidden;
}

.latest-image-placeholder {
    width: 100%;
    height: 100%;
    background: var(--bg-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 12px;
}

.latest-body {
    padding: 15px;
}

.latest-date {
    font-family: 'Cormorant Garamond', serif;
    font-size: 11px;
    color: var(--text-light);
    margin-bottom: 8px;
}

.latest-title {
    font-size: 13px;
    color: var(--text-dark);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ========================================
   Contact Section
======================================== */
.contact-section {
    background: var(--bg-white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.contact-info {
    padding: 30px;
    background: var(--bg-light);
    border: 1px solid var(--border-light);
}

.contact-info-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-dark);
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-light);
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 14px;
}

.contact-info-label {
    min-width: 60px;
    font-weight: 500;
    color: var(--primary-green);
}

.contact-map {
    height: 300px;
    background: var(--bg-gray);
    overflow: hidden;
    border: 1px solid var(--border-light);
}

.contact-map-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
}

/* ========================================
   Footer
======================================== */
.footer {
    background: var(--bg-white);
    color: var(--text-dark);
    padding: 60px 0 30px;
    border-top: 1px solid var(--border-light);
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-green);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-family: 'Cormorant Garamond', serif;
    font-size: 14px;
}

.footer-logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
}

.footer-address {
    font-size: 13px;
    line-height: 2;
    color: var(--text-gray);
}

.footer-nav {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.footer-nav-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-dark);
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-light);
}

.footer-nav-list li {
    margin-bottom: 10px;
}

.footer-nav-list a {
    font-size: 13px;
    color: var(--text-gray);
}

.footer-nav-list a:hover {
    color: var(--primary-green);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-light);
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-gray);
}

.footer-social a:hover {
    background: var(--primary-green);
    border-color: var(--primary-green);
    color: white;
}

.footer-social a svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.footer-copyright {
    font-size: 12px;
    color: var(--text-light);
}

/* ========================================
   Responsive
======================================== */
@media (max-width: 1024px) {

    .business-grid,
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .latest-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .header-top {
        padding: 10px 0;
    }

    .logo-icon {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }

    .logo-main {
        font-size: 16px;
    }

    .header-tel {
        font-size: 14px;
    }

    .hero {
        height: 400px;
        margin-top: 0;
    }

    .hero-catch {
        font-size: 28px;
    }

    .hero-subcatch {
        font-size: 14px;
    }

    .hero-buttons {
        display: none;
    }

    .section {
        padding: 50px 0;
    }

    .section-title-main {
        font-size: 22px;
    }

    .business-grid,
    .about-grid,
    .latest-grid {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-nav {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

/* ========================================
   Subpage Common
======================================== */
/* ========================================
   Subpage Common
======================================== */
/* ========================================
   Subpage Common
======================================== */
.page-header {
    background: #f8f9fa;
    padding: 120px 0 80px;
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 80px;
    position: relative;
}

.page-header::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: var(--primary-green);
    margin: 40px auto 0;
}

.page-title {
    font-size: 32px;
    font-family: serif;
    /* More sophisticated */
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 0.1em;
}

.page-subtitle {
    font-size: 10px;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    letter-spacing: 0.25em;
    color: var(--primary-green);
    text-transform: uppercase;
}

.page-content {
    max-width: 800px;
    margin: 0 auto 120px;
    padding: 0 40px;
}

.page-section {
    margin-bottom: 120px;
}

.page-section-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 50px;
    letter-spacing: 0.1em;
}

.greeting-profile {
    display: flex;
    gap: 80px;
    margin-bottom: 60px;
    align-items: flex-start;
}

.greeting-image {
    width: 250px;
    flex-shrink: 0;
}

.greeting-image-inner {
    width: 100%;
    height: 350px;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.greeting-text {
    flex: 1;
    font-size: 15px;
    line-height: 2.2;
    text-align: justify;
    font-family: 'Yu Mincho', 'Hiragino Mincho ProN', serif;
    /* Essay style */
}

.greeting-text p {
    margin-bottom: 1.5em;
}

.greeting-signature {
    text-align: right;
    margin-top: 60px;
    font-family: sans-serif;
    font-size: 14px;
    line-height: 1.8;
}

.vision-box {
    padding: 60px 0;
    text-align: center;
    margin-bottom: 50px;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.vision-title {
    font-size: 12px;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 25px;
    letter-spacing: 0.2em;
}

.vision-text {
    font-size: 26px;
    font-weight: 700;
    line-height: 1.8;
    font-family: serif;
}

.vision-description {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
    font-size: 15px;
    line-height: 2.2;
}

.vision-description p {
    margin-bottom: 2em;
}

.vision-description .mt-4 {
    margin-top: 2em;
    font-weight: 700;
}

.mission-list {
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    gap: 60px;
    /* Generous spacing between items */
}

.mission-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0;
    border: none;
    /* Remove table-like borders */
    position: relative;
}

.mission-item:first-child {
    border: none;
}

/* Subtle separator dot between items (except last) */
.mission-item:not(:last-child)::after {
    content: '';
    display: block;
    width: 20px;
    height: 1px;
    background: var(--primary-green);
    margin-top: 60px;
    opacity: 0.5;
}

.mission-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 14px;
    /* Smaller, more elegant label style */
    font-weight: 700;
    color: var(--primary-green);
    margin-right: 0;
    margin-bottom: 20px;
    width: auto;
    flex-shrink: 0;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.mission-desc {
    font-size: 20px;
    /* Larger, clearer text */
    font-weight: 500;
    letter-spacing: 0.05em;
    line-height: 1.6;
    font-family: 'Shippori Mincho', serif;
    white-space: nowrap;
    /* Force 1 line (container is 800px, text is ~450px, should be safe) */
}

@media (max-width: 768px) {
    .mission-desc {
        white-space: normal;
        /* Allow wrap on mobile */
        font-size: 16px;
        line-height: 1.8;
    }

    .mission-list {
        gap: 50px;
    }

    .mission-item:not(:last-child)::after {
        margin-top: 50px;
    }
}

@media (max-width: 768px) {
    .greeting-profile {
        flex-direction: column;
        gap: 40px;
    }

    .greeting-image {
        width: 100%;
    }

    .greeting-image-inner {
        height: 300px;
    }
}