/* =========================================
   DELIC Recruit - Main Stylesheet
   モダン × カラフル × 親しみやすい
   ========================================= */

:root {
    --c-navy: #1a3a8f;
    --c-navy-dark: #112660;
    --c-coral: #ff6b6b;
    --c-coral-dark: #ff4d6d;
    --c-yellow: #ffd166;
    --c-yellow-dark: #ffb13b;
    --c-mint: #06d6a0;
    --c-mint-dark: #04b386;
    --c-sky: #4cc9f0;
    --c-purple: #b388ff;
    --c-bg: #fffaf3;
    --c-bg-soft: #fff4e6;
    --c-text: #2d2d3a;
    --c-text-soft: #5a5a6e;
    --c-border: #f1e6d3;
    --c-white: #ffffff;
    --c-black: #1a1a24;

    --radius-sm: 12px;
    --radius: 20px;
    --radius-lg: 32px;
    --radius-xl: 48px;

    --shadow-sm: 0 4px 12px rgba(26, 58, 143, 0.08);
    --shadow: 0 10px 30px rgba(26, 58, 143, 0.12);
    --shadow-lg: 0 20px 60px rgba(26, 58, 143, 0.18);
    --shadow-coral: 0 14px 40px rgba(255, 107, 107, 0.35);

    --font-jp: "Noto Sans JP", "Hiragino Sans", "ヒラギノ角ゴ ProN", "Yu Gothic", "Meiryo", sans-serif;
    --font-en: "Montserrat", "Helvetica Neue", Arial, sans-serif;

    --transition: 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* ----- Reset ----- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: var(--font-jp);
    color: var(--c-text);
    background: var(--c-bg);
    line-height: 1.8;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--c-navy); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--c-coral); }
ul, ol { padding: 0; margin: 0; }
li { list-style: none; }
button { font-family: inherit; cursor: pointer; }
.screen-reader-text {
    position: absolute !important;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0,0,0,0);
    border: 0;
}
.skip-link {
    position: absolute; top: -100px; left: 0;
    padding: 12px 16px; background: var(--c-navy); color: white; z-index: 10000;
}
.skip-link:focus { top: 0; }

/* ----- Layout ----- */
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.wrap-narrow { max-width: 820px; margin: 0 auto; padding: 0 24px; }
.center { text-align: center; }
.between { display: flex; justify-content: space-between; align-items: flex-end; }
.kicker {
    font-family: var(--font-en);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.2em;
    color: var(--c-coral);
    margin: 0 0 12px;
    text-transform: uppercase;
}
.kicker.white { color: rgba(255,255,255,0.9); }

/* ----- Buttons ----- */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 15px;
    border: 2px solid transparent;
    transition: all var(--transition);
    cursor: pointer;
    text-align: center;
    line-height: 1.4;
}
.btn-lg { padding: 18px 36px; font-size: 16px; }
.btn-primary {
    background: linear-gradient(135deg, var(--c-coral) 0%, var(--c-coral-dark) 100%);
    color: white;
    box-shadow: var(--shadow-coral);
}
.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    color: white;
    box-shadow: 0 18px 50px rgba(255, 107, 107, 0.5);
}
.btn-outline {
    background: white;
    color: var(--c-navy);
    border-color: var(--c-navy);
}
.btn-outline:hover {
    background: var(--c-navy);
    color: white;
    transform: translateY(-3px);
}
.btn-white {
    background: white;
    color: var(--c-coral);
}
.btn-white:hover {
    transform: translateY(-3px) scale(1.02);
    color: var(--c-coral-dark);
    box-shadow: 0 18px 50px rgba(0,0,0,0.25);
}
.btn-ghost {
    background: rgba(255,255,255,0.15);
    color: white;
    border-color: rgba(255,255,255,0.6);
}
.btn-ghost:hover { background: white; color: var(--c-coral); }
.btn-link {
    display: inline-block;
    padding: 8px 0;
    color: var(--c-coral);
    font-weight: 700;
    border-bottom: 2px solid transparent;
}
.btn-link:hover {
    color: var(--c-coral-dark);
    border-bottom-color: var(--c-coral);
}

/* ----- Header ----- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 250, 243, 0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--c-border);
}
.header-inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.brand-link {
    display: flex;
    align-items: center;
    gap: 12px;
}
.brand-logo {
    height: 44px;
    width: auto;
}
.brand-tagline {
    font-family: var(--font-en);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--c-text-soft);
}
.primary-menu {
    display: flex;
    gap: 4px;
    align-items: center;
}
.primary-menu li a {
    display: inline-block;
    padding: 10px 14px;
    font-weight: 700;
    font-size: 14px;
    color: var(--c-text);
    border-radius: 999px;
    transition: all var(--transition);
}
.primary-menu li a:hover {
    background: var(--c-bg-soft);
    color: var(--c-coral);
}
.primary-menu .menu-item-highlight a {
    color: var(--c-coral);
    position: relative;
}
.primary-menu .menu-item-highlight a::after {
    content: "✦";
    margin-left: 4px;
    font-size: 10px;
}
.primary-menu .header-cta {
    background: var(--c-navy);
    color: white !important;
    padding: 10px 22px !important;
}
.primary-menu .header-cta:hover {
    background: var(--c-coral) !important;
    transform: translateY(-2px);
}
.menu-toggle {
    display: none;
    width: 44px; height: 44px;
    background: transparent;
    border: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
}
.menu-toggle .bar {
    display: block;
    width: 22px; height: 2px;
    background: var(--c-text);
    transition: all var(--transition);
}
.menu-toggle.is-open .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-toggle.is-open .bar:nth-child(2) { opacity: 0; }
.menu-toggle.is-open .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 1100px) {
    .menu-toggle { display: inline-flex; align-items: center; }
    .primary-menu {
        position: fixed;
        top: 76px; left: 0; right: 0;
        flex-direction: column;
        align-items: stretch;
        background: var(--c-bg);
        gap: 0;
        padding: 16px 24px 40px;
        border-top: 1px solid var(--c-border);
        transform: translateY(-20px);
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition);
        max-height: calc(100vh - 76px);
        overflow-y: auto;
    }
    .primary-menu.is-open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    .primary-menu li a {
        display: block;
        padding: 16px 12px;
        border-radius: 12px;
    }
    .primary-menu .header-cta { text-align: center; margin-top: 12px; }
}

/* ----- Hero ----- */
.hero {
    position: relative;
    padding: 80px 0 0;
    overflow: hidden;
    background:
        radial-gradient(circle at 20% 0%, rgba(255, 209, 102, 0.35), transparent 50%),
        radial-gradient(circle at 95% 30%, rgba(255, 107, 107, 0.25), transparent 50%),
        radial-gradient(circle at 50% 100%, rgba(6, 214, 160, 0.18), transparent 60%),
        linear-gradient(180deg, var(--c-bg) 0%, var(--c-bg-soft) 100%);
}
.hero-bg-blobs { position: absolute; inset: 0; pointer-events: none; }
.hero-bg-blobs .blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.4;
    animation: float 12s ease-in-out infinite;
}
.blob-1 { width: 320px; height: 320px; background: var(--c-coral); top: -60px; left: -80px; }
.blob-2 { width: 260px; height: 260px; background: var(--c-yellow); bottom: 20%; right: -60px; animation-delay: -3s; }
.blob-3 { width: 200px; height: 200px; background: var(--c-mint); top: 50%; left: 40%; animation-delay: -6s; }
.blob-4 { width: 180px; height: 180px; background: var(--c-sky); top: 20%; right: 20%; animation-delay: -9s; }
@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -30px) scale(1.1); }
}
.hero-inner {
    position: relative;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 60px;
    align-items: center;
    padding: 40px 24px 100px;
}
.hero-kicker {
    font-family: var(--font-en);
    font-size: 14px;
    letter-spacing: 0.3em;
    font-weight: 700;
    color: var(--c-coral);
    margin: 0 0 16px;
}
.hero-title {
    font-size: clamp(56px, 9vw, 120px);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin: 0 0 28px;
    color: var(--c-navy-dark);
}
.hero-title .line { display: block; }
.hero-title em {
    font-style: normal;
    background: linear-gradient(135deg, var(--c-coral) 0%, var(--c-yellow-dark) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.hero-lead {
    font-size: 17px;
    color: var(--c-text-soft);
    margin: 0 0 36px;
    max-width: 480px;
}
.hero-lead strong { color: var(--c-coral); }
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-visual {
    position: relative;
    aspect-ratio: 1 / 1;
}
.hero-visual img {
    position: relative;
    z-index: 2;
    max-width: 100%;
    width: 100%;
    filter: drop-shadow(0 30px 40px rgba(26, 58, 143, 0.25));
    animation: floatY 5s ease-in-out infinite;
}
@keyframes floatY {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-16px); }
}
.visual-deco {
    position: absolute;
    border-radius: 50%;
    z-index: 1;
}
.deco-yellow { width: 65%; height: 65%; background: var(--c-yellow); top: 10%; left: 15%; opacity: 0.85; }
.deco-coral { width: 25%; height: 25%; background: var(--c-coral); top: 0; right: 5%; opacity: 0.9; }
.deco-mint { width: 18%; height: 18%; background: var(--c-mint); bottom: 8%; left: 8%; }

.hero-marquee {
    position: relative;
    background: var(--c-navy);
    color: white;
    padding: 18px 0;
    overflow: hidden;
    border-top: 4px solid var(--c-coral);
}
.marquee-track {
    display: inline-flex;
    gap: 36px;
    white-space: nowrap;
    animation: marquee 28s linear infinite;
    font-family: var(--font-en);
    font-weight: 800;
    font-size: 22px;
    letter-spacing: 0.08em;
}
.marquee-track span:nth-child(even) { color: var(--c-yellow); }
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@media (max-width: 900px) {
    .hero-inner { grid-template-columns: 1fr; gap: 32px; padding: 24px 24px 60px; text-align: center; }
    .hero-buttons { justify-content: center; }
    .hero-lead { margin-left: auto; margin-right: auto; }
    .hero-visual { max-width: 420px; margin: 0 auto; }
}

/* ----- Sections ----- */
.section { padding: 100px 0; position: relative; }
.section-head {
    margin-bottom: 56px;
}
.section-head.center { text-align: center; }
.section-title {
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.3;
    font-weight: 900;
    color: var(--c-navy-dark);
    margin: 0;
    letter-spacing: -0.01em;
}
.section-title em {
    font-style: normal;
    background: linear-gradient(135deg, var(--c-coral), var(--c-yellow-dark));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* ----- Mission ----- */
.mission-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.mission-card {
    border-radius: var(--radius-lg);
    padding: 48px 32px;
    text-align: center;
    transition: all var(--transition-slow);
    position: relative;
    overflow: hidden;
}
.mission-card:hover { transform: translateY(-8px) rotate(-1deg); }
.card-coral { background: linear-gradient(160deg, #fff0f0 0%, #ffe2e2 100%); }
.card-yellow { background: linear-gradient(160deg, #fff8e0 0%, #ffeeb0 100%); }
.card-mint { background: linear-gradient(160deg, #e6fff7 0%, #c8f5e4 100%); }
.mission-icon { font-size: 56px; display: block; margin-bottom: 16px; }
.mission-card h3 {
    font-family: var(--font-en);
    font-size: 30px;
    font-weight: 800;
    margin: 0 0 6px;
    color: var(--c-navy-dark);
}
.mission-card > p {
    font-size: 18px;
    font-weight: 700;
    color: var(--c-coral);
    margin: 0 0 12px;
}
.mission-card small {
    font-size: 14px;
    color: var(--c-text-soft);
    display: block;
    line-height: 1.7;
}

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

/* ----- About ----- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-visual { position: relative; }
.about-visual img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}
.about-badge {
    position: absolute;
    bottom: -24px; right: -24px;
    background: var(--c-yellow);
    border-radius: 50%;
    width: 140px; height: 140px;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    box-shadow: var(--shadow);
    transform: rotate(-8deg);
}
.about-badge strong {
    font-family: var(--font-en);
    font-size: 48px;
    font-weight: 800;
    color: var(--c-navy-dark);
    line-height: 1;
}
.about-badge small {
    font-size: 12px;
    font-weight: 700;
    color: var(--c-navy-dark);
}
.about-text p { font-size: 16px; line-height: 2; color: var(--c-text-soft); }

@media (max-width: 900px) {
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-badge { width: 110px; height: 110px; bottom: -16px; right: -8px; }
    .about-badge strong { font-size: 36px; }
}

/* ----- Business cards ----- */
.biz-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.biz-card {
    display: block;
    padding: 36px 28px;
    border-radius: var(--radius-lg);
    color: white;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-slow);
}
.biz-card:hover {
    transform: translateY(-10px) scale(1.02);
    color: white;
}
.biz-1 { background: linear-gradient(160deg, #ff8a8a 0%, var(--c-coral-dark) 100%); }
.biz-2 { background: linear-gradient(160deg, #ffd166 0%, var(--c-yellow-dark) 100%); color: var(--c-navy-dark); }
.biz-2:hover { color: var(--c-navy-dark); }
.biz-3 { background: linear-gradient(160deg, #06d6a0 0%, #04a37a 100%); }
.biz-4 { background: linear-gradient(160deg, var(--c-navy) 0%, var(--c-navy-dark) 100%); }
.biz-num {
    font-family: var(--font-en);
    font-size: 44px;
    font-weight: 800;
    opacity: 0.6;
    display: block;
    margin-bottom: 10px;
}
.biz-card h3 { font-size: 22px; margin: 0 0 14px; font-weight: 800; }
.biz-card p { margin: 0; font-size: 14px; line-height: 1.8; opacity: 0.92; }

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

/* ----- Stats ----- */
.section-stats {
    background: linear-gradient(135deg, var(--c-navy) 0%, var(--c-navy-dark) 100%);
    color: white;
    padding: 80px 0;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}
.stat .stat-num {
    font-family: var(--font-en);
    font-size: 72px;
    font-weight: 800;
    display: block;
    line-height: 1;
    background: linear-gradient(135deg, var(--c-yellow) 0%, var(--c-coral) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.stat .stat-num small {
    font-size: 24px;
    color: white;
    -webkit-text-fill-color: white;
    margin-left: 4px;
}
.stat .stat-label {
    display: block;
    margin-top: 12px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.1em;
    opacity: 0.85;
}
@media (max-width: 700px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 16px; }
    .stat .stat-num { font-size: 56px; }
}

/* ----- Pride ----- */
.pride-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.pride-visual img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}
.pride-list { margin-top: 24px; }
.pride-list li {
    padding: 24px 28px;
    background: white;
    border-radius: var(--radius);
    margin-bottom: 16px;
    border-left: 6px solid var(--c-coral);
    box-shadow: var(--shadow-sm);
}
.pride-list li strong {
    display: block;
    font-size: 18px;
    color: var(--c-navy-dark);
    margin-bottom: 6px;
}

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

/* ----- Recruit CTA ----- */
.recruit-cta-box {
    background: linear-gradient(135deg, var(--c-coral) 0%, #ff8e6d 50%, var(--c-yellow-dark) 100%);
    color: white;
    border-radius: var(--radius-xl);
    padding: 80px 48px;
    text-align: center;
    box-shadow: var(--shadow-coral);
    position: relative;
    overflow: hidden;
}
.recruit-cta-box::before {
    content: "★";
    position: absolute;
    font-size: 320px;
    color: rgba(255,255,255,0.08);
    top: -100px; right: -40px;
    transform: rotate(15deg);
}
.recruit-cta-box h2 {
    font-size: clamp(26px, 4vw, 40px);
    margin: 0 0 16px;
    font-weight: 900;
    line-height: 1.4;
    color: white;
    position: relative;
}
.recruit-cta-box p { margin: 0 0 28px; opacity: 0.95; position: relative; }
.recruit-cta-box .btn { position: relative; }

/* ----- News ----- */
.news-list { border-top: 1px solid var(--c-border); }
.news-item {
    display: grid;
    grid-template-columns: 120px 110px 1fr;
    align-items: center;
    gap: 20px;
    padding: 22px 8px;
    border-bottom: 1px solid var(--c-border);
    transition: background var(--transition);
}
.news-item:hover { background: var(--c-bg-soft); }
.news-item time {
    font-family: var(--font-en);
    font-weight: 700;
    color: var(--c-text-soft);
}
.news-cat {
    display: inline-block;
    padding: 4px 12px;
    background: var(--c-navy);
    color: white;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    text-align: center;
}
.news-title { font-weight: 600; }
.news-empty { opacity: 0.7; }

@media (max-width: 640px) {
    .news-item { grid-template-columns: 1fr; gap: 4px; }
    .news-cat { justify-self: start; }
}

/* ----- Page hero ----- */
.page-hero {
    padding: 80px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.hero-gradient-1 { background: linear-gradient(135deg, #ffe4c4 0%, #ffd1dc 50%, #fff0a5 100%); }
.hero-gradient-2 { background: linear-gradient(135deg, #c4f8ff 0%, #e0c4ff 50%, #fff0a5 100%); }
.hero-gradient-3 { background: linear-gradient(135deg, #c8f5e4 0%, #fff0a5 50%, #ffd1dc 100%); }
.hero-gradient-4 { background: linear-gradient(135deg, #ffd1dc 0%, #d6e6ff 50%, #c8f5e4 100%); }
.hero-gradient-5 { background: linear-gradient(135deg, #d6e6ff 0%, #c8f5e4 100%); }
.hero-gradient-6 { background: linear-gradient(135deg, #fff0a5 0%, #ffd1dc 100%); }
.hero-gradient-7 { background: linear-gradient(135deg, #f0f0ff 0%, #e6f4ff 100%); }
.page-kicker {
    font-family: var(--font-en);
    font-weight: 800;
    letter-spacing: 0.3em;
    color: var(--c-coral);
    font-size: 13px;
    margin: 0 0 12px;
}
.page-title {
    font-size: clamp(36px, 6vw, 64px);
    margin: 0 0 14px;
    font-weight: 900;
    color: var(--c-navy-dark);
    letter-spacing: -0.01em;
}
.page-sub { color: var(--c-text-soft); font-size: 17px; margin: 0; }

.page-section { padding: 80px 0; }

/* ----- Business detail ----- */
.biz-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}
.biz-feature-img img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    aspect-ratio: 4/3; object-fit: cover; width: 100%;
}
.biz-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 80px;
}
.biz-detail-card {
    padding: 40px 32px;
    border-radius: var(--radius-lg);
    transition: transform var(--transition-slow);
}
.biz-detail-card:hover { transform: translateY(-8px); }
.detail-coral { background: linear-gradient(160deg, #fff0f0 0%, #ffe2e2 100%); }
.detail-yellow { background: linear-gradient(160deg, #fff8e0 0%, #ffeeb0 100%); }
.detail-mint { background: linear-gradient(160deg, #e6fff7 0%, #c8f5e4 100%); }
.detail-blue { background: linear-gradient(160deg, #e4ecff 0%, #c8d8ff 100%); }
.biz-detail-card .biz-num {
    font-family: var(--font-en);
    font-size: 32px;
    color: var(--c-coral);
    opacity: 0.7;
}
.biz-detail-card h3 {
    margin: 0 0 16px;
    font-size: 22px;
    color: var(--c-navy-dark);
}
.biz-detail-card ul { margin-top: 16px; padding-left: 0; }
.biz-detail-card ul li {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 4px;
    color: var(--c-text-soft);
    font-size: 14px;
}
.biz-area .biz-clients {
    background: white;
    padding: 32px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    text-align: center;
    font-size: 15px;
    line-height: 2;
    color: var(--c-text-soft);
}
@media (max-width: 900px) {
    .biz-feature { grid-template-columns: 1fr; }
    .biz-detail-grid { grid-template-columns: 1fr; }
}

/* ----- Vehicles ----- */
.vehicle-headline {
    display: flex; align-items: center; gap: 40px;
    background: white;
    padding: 48px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    margin-bottom: 48px;
}
.vehicle-headline-num {
    background: linear-gradient(135deg, var(--c-coral), var(--c-yellow-dark));
    color: white;
    width: 200px; height: 200px;
    border-radius: 50%;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    flex-shrink: 0;
}
.vehicle-headline-num .big {
    font-family: var(--font-en);
    font-size: 86px;
    font-weight: 800;
    line-height: 1;
}
.vehicle-headline-num .unit { font-weight: 700; }
.vehicle-headline-text h2 { margin: 0 0 4px; font-size: 28px; color: var(--c-navy-dark); }
.vehicle-headline-text small { color: var(--c-text-soft); }
.vehicle-img-band img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    margin-bottom: 48px;
    aspect-ratio: 16/7; object-fit: cover;
}
.vehicle-table-wrap {
    background: white;
    padding: 12px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    margin-bottom: 48px;
}
.vehicle-table {
    width: 100%;
    border-collapse: collapse;
}
.vehicle-table th, .vehicle-table td {
    padding: 18px 24px;
    text-align: left;
    border-bottom: 1px solid var(--c-border);
}
.vehicle-table th { background: var(--c-bg-soft); font-weight: 800; }
.vehicle-table .num { text-align: right; font-family: var(--font-en); font-weight: 700; }
.vehicle-table tfoot td {
    background: var(--c-navy);
    color: white;
    font-weight: 800;
    font-size: 18px;
    border-bottom: none;
}
.vehicle-gallery {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
    margin-bottom: 32px;
}
.vehicle-gallery figure { margin: 0; }
.vehicle-gallery img {
    width: 100%; aspect-ratio: 4/3; object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}
.vehicle-gallery figcaption {
    text-align: center; padding-top: 10px;
    font-size: 14px; font-weight: 700;
    color: var(--c-text-soft);
}
.vehicle-note {
    text-align: center;
    background: var(--c-bg-soft);
    padding: 24px;
    border-radius: var(--radius);
}
@media (max-width: 800px) {
    .vehicle-headline { flex-direction: column; text-align: center; gap: 24px; padding: 32px; }
    .vehicle-gallery { grid-template-columns: 1fr; }
}

/* ----- Company table ----- */
.company-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    margin-bottom: 60px;
}
.company-table th, .company-table td {
    padding: 22px 28px;
    border-bottom: 1px solid var(--c-border);
    vertical-align: top;
}
.company-table th {
    width: 220px;
    background: var(--c-bg-soft);
    color: var(--c-navy-dark);
    font-weight: 800;
    text-align: left;
}
.company-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.company-card {
    background: white;
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border-top: 6px solid var(--c-coral);
}
.company-card:nth-child(2) { border-top-color: var(--c-yellow-dark); }
.company-card:nth-child(3) { border-top-color: var(--c-mint); }
.company-card h3 { margin: 0 0 10px; color: var(--c-navy-dark); }
@media (max-width: 700px) {
    .company-table th { width: auto; display: block; }
    .company-table td { display: block; padding-top: 8px; }
    .company-cards { grid-template-columns: 1fr; }
}

/* ----- Timeline ----- */
.timeline {
    position: relative;
    max-width: 880px;
    margin: 0 auto;
    padding-left: 30px;
}
.timeline::before {
    content: "";
    position: absolute;
    left: 12px; top: 0; bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--c-coral), var(--c-yellow), var(--c-mint));
    border-radius: 4px;
}
.timeline-item {
    position: relative;
    padding: 0 0 36px 40px;
}
.timeline-item::before {
    content: "";
    position: absolute;
    left: -28px; top: 8px;
    width: 22px; height: 22px;
    background: white;
    border: 4px solid var(--c-coral);
    border-radius: 50%;
    z-index: 1;
}
.timeline-item.highlight::before {
    background: var(--c-yellow);
    border-color: var(--c-coral);
    box-shadow: 0 0 0 6px rgba(255, 209, 102, 0.4);
}
.timeline-year {
    display: inline-block;
    background: var(--c-navy);
    color: white;
    padding: 8px 16px;
    border-radius: 999px;
    font-weight: 800;
    margin-bottom: 12px;
}
.timeline-year span { font-family: var(--font-en); margin-right: 6px; }
.timeline-year small { opacity: 0.85; font-weight: 500; }
.timeline-body {
    background: white;
    padding: 24px 28px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}
.timeline-body h3 { margin: 0 0 8px; color: var(--c-navy-dark); }
.timeline-body p { margin: 0; font-size: 14px; color: var(--c-text-soft); line-height: 1.9; }

/* ----- Recruit hero ----- */
.recruit-hero {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
    background:
        radial-gradient(circle at 10% 20%, rgba(255, 107, 107, 0.3), transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(6, 214, 160, 0.3), transparent 40%),
        radial-gradient(circle at 60% 10%, rgba(255, 209, 102, 0.35), transparent 50%),
        linear-gradient(180deg, var(--c-bg) 0%, #fff4ec 100%);
}
.recruit-hero-bg .dot {
    position: absolute;
    border-radius: 50%;
    opacity: 0.7;
    animation: float 8s ease-in-out infinite;
}
.dot-1 { width: 80px; height: 80px; background: var(--c-coral); top: 15%; left: 8%; }
.dot-2 { width: 50px; height: 50px; background: var(--c-yellow); top: 70%; left: 20%; animation-delay: -2s; }
.dot-3 { width: 60px; height: 60px; background: var(--c-mint); top: 20%; right: 12%; animation-delay: -4s; }
.dot-4 { width: 36px; height: 36px; background: var(--c-sky); bottom: 18%; right: 25%; animation-delay: -6s; }

.recruit-hero-inner {
    position: relative;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}
.recruit-hero-kicker {
    font-family: var(--font-en);
    letter-spacing: 0.3em;
    color: var(--c-coral);
    font-weight: 800;
    margin: 0 0 16px;
}
.recruit-hero-title {
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 900;
    line-height: 1.2;
    margin: 0 0 24px;
    color: var(--c-navy-dark);
}
.recruit-hero-title em {
    font-style: normal;
    background: linear-gradient(135deg, var(--c-coral), var(--c-yellow-dark));
    -webkit-background-clip: text; background-clip: text; color: transparent;
}
.recruit-hero-lead { color: var(--c-text-soft); margin: 0 0 28px; font-size: 17px; }
.recruit-hero-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.recruit-hero-tags span {
    background: white;
    border: 2px solid var(--c-coral);
    color: var(--c-coral);
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
}
.recruit-hero-visual img {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4/5;
    object-fit: cover;
    width: 100%;
}
@media (max-width: 900px) {
    .recruit-hero-inner { grid-template-columns: 1fr; }
    .recruit-hero-visual { max-width: 420px; margin: 0 auto; }
}

/* ----- Why cards ----- */
.why-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.why-card {
    background: white;
    padding: 40px 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-slow);
    position: relative;
}
.why-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.why-num {
    font-family: var(--font-en);
    font-size: 60px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--c-coral), var(--c-yellow-dark));
    -webkit-background-clip: text; background-clip: text; color: transparent;
    line-height: 1;
}
.why-card h3 { margin: 12px 0 12px; color: var(--c-navy-dark); font-size: 22px; }
.why-card p { color: var(--c-text-soft); font-size: 15px; margin: 0; }
@media (max-width: 900px) { .why-grid { grid-template-columns: 1fr; } }

/* ----- Job cards ----- */
.job-grid {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
}
.job-card {
    background: white;
    padding: 36px 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    border-top: 6px solid var(--c-coral);
}
.job-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.job-coral { border-top-color: var(--c-coral); }
.job-yellow { border-top-color: var(--c-yellow-dark); }
.job-mint { border-top-color: var(--c-mint); }
.job-blue { border-top-color: var(--c-navy); }
.job-card header { margin-bottom: 16px; }
.job-badge {
    display: inline-block;
    padding: 4px 12px;
    background: var(--c-coral);
    color: white;
    font-size: 12px;
    font-weight: 800;
    border-radius: 999px;
    margin-bottom: 12px;
}
.job-yellow .job-badge { background: var(--c-yellow-dark); }
.job-mint .job-badge { background: var(--c-mint); }
.job-blue .job-badge { background: var(--c-navy); }
.job-card h3 { margin: 0; color: var(--c-navy-dark); font-size: 22px; }
.job-detail { display: grid; gap: 10px; }
.job-detail li {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--c-border);
}
.job-detail li:last-child { border-bottom: none; }
.job-detail strong { color: var(--c-navy-dark); font-size: 13px; }
@media (max-width: 700px) { .job-grid { grid-template-columns: 1fr; } }

/* ----- Benefits ----- */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.benefit {
    text-align: center;
    padding: 28px 20px;
    border-radius: var(--radius);
    background: white;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}
.benefit:hover { transform: scale(1.04); }
.benefit span { font-size: 40px; display: block; margin-bottom: 8px; }
.benefit h4 { margin: 0 0 6px; color: var(--c-navy-dark); font-size: 15px; }
.benefit p { margin: 0; font-size: 12px; color: var(--c-text-soft); }
@media (max-width: 800px) { .benefits-grid { grid-template-columns: repeat(2, 1fr); } }

/* ----- Voice ----- */
.voice-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.voice-card {
    background: white;
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    position: relative;
}
.voice-quote {
    font-family: serif;
    font-size: 80px;
    color: var(--c-yellow);
    line-height: 0.5;
    margin-bottom: 16px;
}
.voice-card p { color: var(--c-text); margin: 0 0 20px; }
.voice-card footer strong { display: block; color: var(--c-navy-dark); font-size: 14px; }
.voice-card footer small { color: var(--c-text-soft); font-size: 12px; }
@media (max-width: 900px) { .voice-grid { grid-template-columns: 1fr; } }

/* ----- Flow ----- */
.flow-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    counter-reset: flow;
}
.flow-steps li {
    background: white;
    padding: 28px 20px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-sm);
    position: relative;
}
.flow-num {
    display: inline-flex;
    align-items: center; justify-content: center;
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--c-coral);
    color: white;
    font-family: var(--font-en);
    font-weight: 800;
    font-size: 20px;
    margin-bottom: 12px;
}
.flow-steps li h4 { margin: 0 0 8px; color: var(--c-navy-dark); font-size: 16px; }
.flow-steps li p { margin: 0; font-size: 12px; color: var(--c-text-soft); }
@media (max-width: 800px) { .flow-steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .flow-steps { grid-template-columns: 1fr; } }

/* ----- Entry box ----- */
.entry-box {
    background: linear-gradient(135deg, var(--c-navy) 0%, var(--c-navy-dark) 100%);
    color: white;
    border-radius: var(--radius-xl);
    padding: 72px 32px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}
.entry-box h2 {
    font-size: clamp(24px, 4vw, 36px);
    margin: 0 0 12px;
    color: white;
}
.entry-box p { opacity: 0.85; margin: 0 0 32px; }
.entry-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.entry-box .btn-outline { background: transparent; color: white; border-color: white; }
.entry-box .btn-outline:hover { background: white; color: var(--c-navy-dark); }

/* ----- Access ----- */
.access-main {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: stretch;
    margin-bottom: 80px;
}
.access-info h2 { margin: 0 0 24px; color: var(--c-navy-dark); }
.access-table { width: 100%; border-collapse: collapse; }
.access-table th, .access-table td {
    padding: 16px 0;
    text-align: left;
    border-bottom: 1px solid var(--c-border);
    vertical-align: top;
}
.access-table th { color: var(--c-navy-dark); width: 100px; font-weight: 800; }
.access-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.access-card {
    background: white;
    padding: 28px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border-left: 6px solid var(--c-coral);
}
.access-card h3 { margin: 0 0 10px; color: var(--c-navy-dark); }
.access-card p { margin: 0; color: var(--c-text-soft); font-size: 14px; }
@media (max-width: 900px) {
    .access-main { grid-template-columns: 1fr; }
    .access-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) { .access-grid { grid-template-columns: 1fr; } }

/* ----- Contact ----- */
.contact-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 40px;
    align-items: start;
}
.contact-form-box {
    background: white;
    padding: 48px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}
.contact-lead { margin: 0 0 32px; color: var(--c-text-soft); }
.form-row { margin-bottom: 22px; }
.form-row label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
    color: var(--c-navy-dark);
}
.req {
    display: inline-block;
    background: var(--c-coral);
    color: white;
    font-size: 11px;
    padding: 2px 8px;
    border-radius: 999px;
    margin-left: 8px;
    font-weight: 700;
}
.form-row input[type=text],
.form-row input[type=tel],
.form-row input[type=email],
.form-row textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--c-border);
    border-radius: 12px;
    font-family: inherit;
    font-size: 15px;
    background: var(--c-bg);
    transition: border var(--transition);
}
.form-row input:focus, .form-row textarea:focus {
    outline: none;
    border-color: var(--c-coral);
    background: white;
}
.form-row small { display: block; margin-top: 6px; color: var(--c-text-soft); font-size: 12px; }
.radio-row { display: flex; gap: 12px; flex-wrap: wrap; }
.radio, .checkbox {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px;
    background: var(--c-bg);
    border: 2px solid var(--c-border);
    border-radius: 999px;
    cursor: pointer;
    transition: all var(--transition);
    font-weight: 600;
    margin: 0 !important;
}
.radio:hover, .checkbox:hover { border-color: var(--c-coral); }
.radio input, .checkbox input { accent-color: var(--c-coral); }
.form-submit {
    display: flex; flex-direction: column; gap: 18px; align-items: stretch;
    margin-top: 32px;
}
.contact-note { margin-top: 16px; font-size: 12px; color: var(--c-text-soft); }
.contact-side { display: grid; gap: 20px; }
.contact-card {
    background: white;
    padding: 28px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border-top: 6px solid var(--c-coral);
}
.contact-card h3 { margin: 0 0 12px; color: var(--c-navy-dark); }
.contact-tel, .contact-mail {
    font-family: var(--font-en);
    font-size: 28px;
    font-weight: 800;
    color: var(--c-coral);
    display: block;
    margin-bottom: 4px;
}
.contact-card small { color: var(--c-text-soft); font-size: 12px; }
@media (max-width: 900px) {
    .contact-grid { grid-template-columns: 1fr; }
    .contact-form-box { padding: 32px 24px; }
}

/* ----- Privacy ----- */
.privacy h2 {
    margin: 40px 0 14px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--c-coral);
    color: var(--c-navy-dark);
    font-size: 22px;
}
.privacy p, .privacy ol { color: var(--c-text); font-size: 15px; line-height: 2; }
.privacy ol { padding-left: 22px; }
.privacy ol li { list-style: decimal; margin-bottom: 8px; }
.privacy-intro {
    padding: 24px;
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    margin-bottom: 40px;
}
.privacy-contact { margin: 16px 0; width: 100%; }
.privacy-contact th, .privacy-contact td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--c-border);
    text-align: left;
    vertical-align: top;
}
.privacy-contact th { background: var(--c-bg-soft); width: 140px; font-weight: 800; }
.privacy-end { text-align: right; margin-top: 40px; }

/* ----- Footer CTA & Footer ----- */
.footer-cta {
    background: linear-gradient(135deg, var(--c-navy) 0%, var(--c-navy-dark) 100%);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.footer-cta::before {
    content: "";
    position: absolute;
    top: -50%; right: -10%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(255,107,107,0.25), transparent 70%);
    pointer-events: none;
}
.footer-cta-inner {
    position: relative;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
}
.footer-cta-text .kicker { color: var(--c-yellow); }
.footer-cta-text h2 {
    font-size: clamp(28px, 4vw, 44px);
    margin: 0 0 14px;
    color: white;
    font-weight: 900;
    line-height: 1.4;
}
.footer-cta-text .lead { opacity: 0.85; margin: 0; }
.footer-cta-buttons { display: flex; gap: 14px; flex-wrap: wrap; justify-content: flex-end; }
@media (max-width: 800px) {
    .footer-cta-inner { grid-template-columns: 1fr; text-align: center; }
    .footer-cta-buttons { justify-content: center; }
}

.site-footer {
    background: var(--c-black);
    color: rgba(255,255,255,0.85);
    padding: 64px 0 32px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .footer-logo {
    background: white;
    padding: 8px 14px;
    border-radius: 8px;
    max-width: 200px;
    margin-bottom: 16px;
}
.footer-desc { font-size: 13px; opacity: 0.75; line-height: 1.8; }
.footer-info h4, .footer-nav h4 {
    color: white;
    font-size: 14px;
    letter-spacing: 0.1em;
    margin: 0 0 16px;
}
.footer-info p { font-size: 13px; margin: 0 0 12px; opacity: 0.8; line-height: 1.8; }
.footer-nav ul li { margin-bottom: 10px; }
.footer-nav ul li a {
    color: rgba(255,255,255,0.7);
    font-size: 13px;
    transition: color var(--transition);
}
.footer-nav ul li a:hover { color: var(--c-yellow); }
.footer-bottom {
    padding-top: 24px;
    text-align: center;
    font-size: 12px;
    opacity: 0.6;
}
@media (max-width: 800px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 500px) {
    .footer-grid { grid-template-columns: 1fr; }
}

/* ----- Animations ----- */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ----- Print ----- */
@media print {
    .site-header, .footer-cta, .site-footer, .menu-toggle { display: none; }
    body { background: white; }
}
