/* Variables */
:root {
    --color-navy: #0b3b24;
    /* Deep Emerald */
    --color-navy-dark: #021a0f;
    /* Almost Black Green */
    --color-gold: #d4af37;
    /* Metallic Gold */
    --color-gold-light: #f9e5a1;
    --color-gold-dark: #aa8525;
    --color-white: #ffffff;
    --color-gray: #f4f6f5;
    --color-text: #2c3e50;
    --color-text-light: #5d6d7e;
    --font-base: 'Noto Sans JP', sans-serif;
    --font-accent: 'Playfair Display', serif;
    --header-height: 90px;
    --max-width: 1280px;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.4);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-base);
    color: var(--color-text);
    line-height: 1.8;
    letter-spacing: 0.05em;
    background-color: var(--color-gray);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

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

/* Typography Utils */
.text-gold {
    background: linear-gradient(135deg, var(--color-gold-dark) 0%, var(--color-gold) 50%, var(--color-gold-light) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Constants */
.section-padding {
    padding: 120px 0;
}

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

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

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

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 80px;
    color: var(--color-navy);
    font-weight: 700;
    position: relative;
    padding-bottom: 25px;
    font-family: var(--font-accent);
    letter-spacing: 0.05em;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}

.section-title .subtitle {
    display: block;
    font-size: 1rem;
    color: var(--color-gold-dark);
    margin-top: 15px;
    font-weight: 500;
    font-family: var(--font-base);
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.header-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 30px;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
}

.logo img {
    height: 60px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.nav-list {
    display: flex;
    gap: 40px;
}

.nav-list a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-navy);
    position: relative;
    padding: 5px 0;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light));
    transition: width 0.3s ease;
}

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

.nav-contact {
    background: linear-gradient(135deg, var(--color-navy), var(--color-navy-dark));
    color: var(--color-gold) !important;
    padding: 12px 30px !important;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(11, 59, 36, 0.2);
    transition: transform 0.3s, box-shadow 0.3s !important;
}

.nav-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(11, 59, 36, 0.3);
}

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

/* Hamburger */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 24px;
    position: relative;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--color-navy);
    position: absolute;
    transition: all 0.3s;
    border-radius: 2px;
}

.hamburger span:nth-child(1) {
    top: 0;
}

.hamburger span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.hamburger span:nth-child(3) {
    bottom: 0;
}

.hamburger.active span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

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

.hamburger.active span:nth-child(3) {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, var(--color-navy-dark), var(--color-navy));
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu ul {
    text-align: center;
}

.mobile-menu li {
    margin: 25px 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.mobile-menu.active li {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu.active li:nth-child(1) {
    transition-delay: 0.1s;
}

.mobile-menu.active li:nth-child(2) {
    transition-delay: 0.2s;
}

.mobile-menu.active li:nth-child(3) {
    transition-delay: 0.3s;
}

.mobile-menu.active li:nth-child(4) {
    transition-delay: 0.4s;
}

.mobile-menu.active li:nth-child(5) {
    transition-delay: 0.5s;
}

.mobile-menu.active li:nth-child(6) {
    transition-delay: 0.6s;
}

.mobile-menu a {
    color: var(--color-white);
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--font-accent);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: radial-gradient(circle at 50% 50%, #1a5c3d 0%, #051f15 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color-white);
    text-align: center;
    position: relative;
    padding: 0 20px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0IiBoZWlnaHQ9IjQiPgo8cmVjdCB3aWR0aD0iNCIgaGVpZ2h0PSI0IiBmaWxsPSIjZmZmIiBmaWxsLW9wYWNpdHk9IjAuMDIiLz4KPC9zdmc+');
    opacity: 0.5;
}

.hero::after {
    content: '';
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.15) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

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

.hero-main {
    font-family: var(--font-accent);
    font-size: 6rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
    line-height: 1;
    background: linear-gradient(135deg, var(--color-gold-light) 0%, var(--color-gold) 50%, var(--color-gold-dark) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}

.hero-sub {
    font-size: 2.2rem;
    font-weight: 500;
    margin-bottom: 30px;
    letter-spacing: 0.2em;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-desc {
    font-size: 1.1rem;
    opacity: 0.9;
    background: rgba(0, 0, 0, 0.3);
    padding: 10px 30px;
    border-radius: 50px;
    backdrop-filter: blur(5px);
    display: inline-block;
}

.scroll-down {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--color-gold);
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    z-index: 2;
}

.scroll-down .arrow {
    width: 1px;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.1);
    margin-top: 15px;
    position: relative;
    overflow: hidden;
}

.scroll-down .arrow::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, var(--color-gold));
    animation: scroll 2s cubic-bezier(0.77, 0, 0.175, 1) infinite;
}

@keyframes scroll {
    0% {
        top: -100%;
    }

    100% {
        top: 100%;
    }
}

/* Philosophy Section */
.philosophy {
    background: linear-gradient(to bottom, var(--color-gray), #fff);
}

.philosophy-block {
    text-align: center;
    margin-bottom: 100px;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
}

.philosophy-head {
    font-size: 2rem;
    color: var(--color-navy);
    margin-bottom: 40px;
    line-height: 1.6;
    background: linear-gradient(90deg, var(--color-navy), #1a5c3d);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.philosophy-text {
    font-size: 1.15rem;
    line-height: 2.2;
    color: var(--color-text);
    text-align: justify;
}

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

.value-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    padding: 50px 30px;
    border: 1px solid var(--glass-border);
    text-align: left;
    transition: all 0.4s ease;
    border-radius: 20px;
    box-shadow: var(--glass-shadow);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

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

.value-card h4 {
    font-size: 1.4rem;
    color: var(--color-navy);
    margin-bottom: 25px;
    line-height: 1.4;
    font-family: var(--font-accent);
}

/* Message Section */
.message {
    background-color: #fff;
    position: relative;
}

.message-content {
    display: flex;
    align-items: center;
    gap: 80px;
}

.message-photo {
    flex: 0 0 450px;
    position: relative;
}

.message-photo::before {
    content: '';
    position: absolute;
    top: 30px;
    left: -30px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--color-gold);
    z-index: 0;
    border-radius: 4px;
}

.rep-img {
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
    transition: transform 0.5s ease;
}

.message-photo:hover .rep-img {
    transform: scale(1.02);
}

.message-title {
    font-family: var(--font-accent);
    font-size: 2.2rem;
    color: var(--color-navy);
    margin-bottom: 40px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--color-navy) 0%, #1a5c3d 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.message-body p {
    margin-bottom: 25px;
    text-align: justify;
    font-size: 1.05rem;
}

/* Company Section */
.company {
    background-color: var(--color-gray);
}

.company-table {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    border-collapse: separate;
    border-spacing: 0;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.company-table th,
.company-table td {
    padding: 25px 30px;
    border-bottom: 1px solid #eee;
    text-align: left;
}

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

.company-table th {
    width: 30%;
    color: var(--color-navy);
    font-weight: 700;
    background-color: rgba(11, 59, 36, 0.05);
}

/* Shop Section */
.shops-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
}

.shop-card {
    background-color: var(--color-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
}

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

.shop-photo .placeholder-img {
    height: 300px;
    background: linear-gradient(45deg, #eee, #f9f9f9);
}

.shop-info {
    padding: 40px;
    text-align: center;
}

.shop-info h3 {
    font-size: 1.6rem;
    color: var(--color-navy);
    margin-bottom: 15px;
    font-family: var(--font-accent);
}

.btn-map {
    display: inline-block;
    margin-top: 25px;
    padding: 12px 35px;
    border: 2px solid var(--color-navy);
    color: var(--color-navy);
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-map::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: var(--color-navy);
    transition: width 0.3s ease;
    z-index: -1;
}

.btn-map:hover {
    color: var(--color-white);
}

.btn-map:hover::before {
    width: 100%;
}

/* Recruit Section */
.recruit-hero {
    height: 70vh;
    /* Increased height to accommodate title */
    background: radial-gradient(circle at 50% 50%, #1a5c3d 0%, #051f15 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color-white);
    text-align: center;
    padding: 0 20px;
    position: relative;
}

.recruit-hero .section-title {
    color: var(--color-white);
    margin-bottom: 40px;
}

.recruit-hero .section-title::after {
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}

.recruit-hero .subtitle {
    color: var(--color-gold);
}

.recruit-copy {
    font-family: var(--font-accent);
    font-size: 3.5rem;
    /* Adjusted size */
    margin-bottom: 25px;
    color: var(--color-gold);
    line-height: 1.2;
    font-weight: 700;
}

.recruit-msg {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-top: 30px;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 40px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

.recurit-numbers {
    margin-top: -60px;
    position: relative;
    z-index: 10;
}

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

.number-card {
    text-align: center;
    padding: 40px 20px;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.num-label {
    display: block;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 10px;
    font-family: var(--font-accent);
}

/* Timeline */
.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 100px;
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, var(--color-gold), transparent);
}

.timeline-item {
    display: flex;
    margin-bottom: 40px;
    /* Increased margin */
    align-items: flex-start;
    /* Changed from center to flex-start */
    position: relative;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-item .time {
    width: 100px;
    padding-right: 30px;
    text-align: right;
    font-weight: 700;
    color: var(--color-navy);
    position: relative;
    padding-top: 25px;
    /* Align with content padding */
    flex-shrink: 0;
    /* Prevent shrinking */
}

.timeline-item .time::after {
    content: '';
    position: absolute;
    top: 35px;
    /* Adjust based on padding-top */
    right: -9px;
    width: 16px;
    height: 16px;
    background: var(--color-gold);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.8);
    z-index: 1;
}

.timeline-item .content {
    flex: 1;
    margin-left: 20px;
    border-radius: 20px;
    padding: 25px 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    background: #fff;
    border-left: 5px solid var(--color-gold);
}

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

.voice-card {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.voice-photo .placeholder-img {
    height: 250px;
    border-radius: 15px;
    background-color: #f0f0f0;
}

/* Recruit Requirements */
.req-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
}

.req-card {
    background-color: #fff;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.05);
    border-top: 5px solid var(--color-gold);
}

/* FAQ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    background: #fff;
    transition: all 0.3s ease;
}

.faq-item:first-child {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    padding: 25px 20px;
    border: none;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-navy);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s;
    font-family: var(--font-base);
}

.faq-question:hover {
    color: var(--color-gold);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--color-gold);
    transition: transform 0.3s ease;
    margin-left: 20px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    opacity: 0;
    transition: all 0.4s ease;
    color: var(--color-text);
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    /* Approximate max height */
    padding-bottom: 25px;
    opacity: 1;
}

.faq-answer p {
    font-size: 0.95rem;
    color: var(--color-text-light);
}

/* Entry Button */
.btn-entry {
    width: 400px;
    max-width: 100%;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--color-navy), #1a5c3d);
    color: var(--color-white);
    padding: 25px;
    border-radius: 60px;
    font-weight: 700;
    font-size: 1.4rem;
    box-shadow: 0 10px 30px rgba(11, 59, 36, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-entry::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    transform: scale(0);
    transition: transform 0.5s ease;
}

.btn-entry:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(11, 59, 36, 0.4);
}

.btn-entry:hover::after {
    transform: scale(1);
}

/* Footer */
.footer {
    background: radial-gradient(circle at 50% 0%, #0e4d30 0%, #021a0f 100%);
    padding: 100px 0 30px;
    color: var(--color-white);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-company {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--color-white);
}

.footer-address {
    font-size: 0.9rem;
    opacity: 0.8;
    color: var(--color-white);
}

.footer-nav ul {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.footer-nav a {
    font-size: 0.9rem;
    opacity: 0.8;
    color: var(--color-white);
    transition: opacity 0.3s;
}

.footer-nav a:hover {
    opacity: 1;
    color: var(--color-gold);
}

.copyright {
    text-align: center;
    font-size: 0.8rem;
    opacity: 0.6;
    margin-top: 60px;
    color: var(--color-white);
}

/* Placeholder Image */
.placeholder-img {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e8eae9 0%, #d4d8d6 100%);
    color: #aab0ad;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    position: relative;
    overflow: hidden;
}

.placeholder-img::before {
    content: '';
    position: absolute;
    width: 60px;
    height: 60px;
    border: 3px solid #c5cbc8;
    border-radius: 50%;
    opacity: 0.5;
}

.placeholder-img::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: #c5cbc8;
    border-radius: 50%;
    opacity: 0.5;
    transform: translate(-15px, -15px);
}

/* News Section */
.news-list {
    max-width: 900px;
    margin: 0 auto;
}

.news-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.news-item:first-child {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.news-item:hover {
    padding-left: 15px;
    background: rgba(11, 59, 36, 0.02);
}

.news-date {
    font-size: 0.9rem;
    color: var(--color-text-light);
    font-weight: 500;
    white-space: nowrap;
}

.news-tag {
    display: inline-block;
    padding: 4px 14px;
    background: linear-gradient(135deg, var(--color-navy), #1a5c3d);
    color: var(--color-white);
    font-size: 0.75rem;
    border-radius: 20px;
    font-weight: 700;
    white-space: nowrap;
}

.news-title {
    font-size: 1rem;
    color: var(--color-text);
    font-weight: 500;
    transition: color 0.3s;
}

.news-title:hover {
    color: var(--color-gold-dark);
}

/* Contact Section */
.contact {
    text-align: center;
}

.contact-desc {
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: var(--color-text-light);
}

.contact-info {
    margin-bottom: 40px;
}

.contact-info p {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--color-text);
}

.btn-contact {
    display: inline-block;
    padding: 18px 50px;
    background: linear-gradient(135deg, var(--color-navy), #1a5c3d);
    color: var(--color-white);
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 8px 25px rgba(11, 59, 36, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-contact:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(11, 59, 36, 0.3);
    color: var(--color-gold);
}

/* Recruit Section Title */
.recruit-section-title {
    font-size: 1.8rem;
    color: var(--color-navy);
    text-align: center;
    margin-bottom: 50px;
    font-weight: 700;
    position: relative;
    padding-bottom: 20px;
}

.recruit-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}

/* Recruit Sub */
.recruit-sub {
    font-size: 1.2rem;
    display: block;
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.9);
    font-family: var(--font-base);
}

/* Recruit Section Heading */
.recruit-section-heading {
    color: var(--color-white);
}

/* Message Sign */
.message-sign {
    margin-top: 30px;
    font-weight: 700;
    color: var(--color-navy);
    font-size: 1.05rem;
}

/* Voice content */
.voice-content h4 {
    font-size: 1.2rem;
    color: var(--color-navy);
    margin: 15px 0 10px;
}

.voice-content .role {
    font-size: 0.9rem;
    color: var(--color-text-light);
    font-weight: 400;
    margin-left: 5px;
}

.voice-content p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--color-text);
    margin-top: 10px;
}

/* Req card details */
.req-card h4 {
    font-size: 1.5rem;
    color: var(--color-navy);
    margin-bottom: 25px;
    font-family: var(--font-accent);
}

.req-card dl {
    line-height: 2;
}

.req-card dt {
    font-weight: 700;
    color: var(--color-navy);
    margin-top: 10px;
}

.req-card dd {
    margin-left: 0;
    color: var(--color-text);
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

/* Shop address/hours */
.address {
    font-size: 0.95rem;
    color: var(--color-text-light);
    margin-bottom: 5px;
}

.hours {
    font-size: 0.95rem;
    color: var(--color-text);
    font-weight: 500;
}

/* Fade-in Animation */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Tablet Responsive (1024px) ===== */
@media (max-width: 1024px) {
    .section-padding {
        padding: 80px 0;
    }

    .section-title {
        font-size: 2.5rem;
        margin-bottom: 60px;
    }

    .hero-main {
        font-size: 4.5rem;
    }

    .hero-sub {
        font-size: 1.8rem;
    }

    .values-grid {
        gap: 25px;
    }

    .value-card {
        padding: 35px 25px;
    }

    .message-content {
        gap: 50px;
    }

    .message-photo {
        flex: 0 0 350px;
    }

    .numbers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .voice-grid {
        gap: 25px;
    }

    .recruit-copy {
        font-size: 2.8rem;
    }

    .nav-list {
        gap: 25px;
    }

    .nav-list a {
        font-size: 0.85rem;
    }
}

/* ===== Mobile Responsive (768px) ===== */
@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }

    .section-padding {
        padding: 60px 0;
    }

    .container {
        padding: 0 20px;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 40px;
        padding-bottom: 20px;
    }

    .section-title .subtitle {
        font-size: 0.85rem;
        margin-top: 10px;
    }

    /* Header Mobile */
    .nav {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .logo img {
        height: 45px;
    }

    /* Hero Mobile */
    .hero-main {
        font-size: 2.8rem;
    }

    .hero-sub {
        font-size: 1.2rem;
        letter-spacing: 0.1em;
        margin-bottom: 20px;
    }

    .hero-desc {
        font-size: 0.9rem;
        padding: 8px 20px;
    }

    /* Philosophy Mobile */
    .philosophy-block {
        margin-bottom: 60px;
    }

    .philosophy-head {
        font-size: 1.4rem;
        margin-bottom: 25px;
    }

    .philosophy-text {
        font-size: 1rem;
        line-height: 2;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }

    .value-card {
        padding: 30px 25px;
    }

    .value-card h4 {
        font-size: 1.2rem;
    }

    /* Message (Representative) Mobile */
    .message-content {
        flex-direction: column;
        gap: 40px;
    }

    .message-photo {
        flex: none;
        width: 100%;
        max-width: 400px;
        margin: 0 auto 0;
    }

    .message-photo::before {
        left: -10px;
        top: 10px;
        border-width: 2px;
    }

    .message-title {
        font-size: 1.6rem;
        margin-bottom: 25px;
    }

    .message-body p {
        font-size: 0.95rem;
        margin-bottom: 18px;
    }

    .message-sign {
        font-size: 0.95rem;
        margin-top: 20px;
    }

    /* Company Table Mobile */
    .company-table th,
    .company-table td {
        display: block;
        width: 100%;
        text-align: center;
        border-bottom: none;
    }

    .company-table th {
        background: rgba(11, 59, 36, 0.1);
        padding: 12px;
        font-size: 0.9rem;
    }

    .company-table td {
        padding: 12px 15px 25px;
        border-bottom: 1px solid #eee;
    }

    /* Shop Section Mobile */
    .shop-card {
        margin-bottom: 25px;
    }

    .shop-photo .placeholder-img {
        height: 200px;
    }

    .shop-info {
        padding: 25px 20px;
    }

    .shop-info h3 {
        font-size: 1.3rem;
    }

    /* Recruit Mobile */
    .recruit-hero {
        height: 50vh;
        min-height: 400px;
    }

    .recruit-copy {
        font-size: 2rem;
    }

    .recruit-sub {
        font-size: 1rem;
    }

    .recruit-msg {
        font-size: 0.95rem;
        padding: 12px 25px;
        margin-top: 20px;
    }

    .recruit-section-title {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }

    /* Numbers Mobile */
    .numbers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .number-card {
        padding: 25px 15px;
    }

    .num-label {
        font-size: 1.3rem;
    }

    /* Timeline Mobile */
    .timeline::before {
        left: 20px;
    }

    .timeline-item .time {
        width: 60px;
        padding-right: 15px;
        font-size: 0.85rem;
        padding-top: 20px;
    }

    .timeline-item .time::after {
        right: -9px;
        top: 28px;
        width: 12px;
        height: 12px;
    }

    .timeline-item .content {
        padding: 18px 20px;
        font-size: 0.95rem;
        border-radius: 12px;
    }

    /* Voice Grid Mobile */
    .voice-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .voice-card {
        padding: 25px 20px;
    }

    .voice-photo .placeholder-img {
        height: 180px;
        margin-bottom: 15px;
        border-radius: 10px;
    }

    .voice-content h4 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }

    .voice-content .role {
        display: block;
        font-size: 0.85rem;
    }

    /* Requirements Mobile */
    .req-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .req-card {
        padding: 30px 25px;
    }

    .req-card h4 {
        font-size: 1.3rem;
    }

    .req-card dl {
        font-size: 0.95rem;
    }

    /* FAQ Mobile */
    .faq-question {
        font-size: 0.95rem;
        padding: 20px 15px;
    }

    .faq-icon {
        font-size: 1.2rem;
    }

    /* Entry Button Mobile */
    .recruit-entry {
        text-align: center;
    }

    .btn-entry {
        font-size: 1.1rem;
        padding: 20px;
        width: 100%;
        display: block;
    }

    /* News Mobile */
    .news-item {
        flex-wrap: wrap;
        gap: 5px;
    }

    .news-date {
        font-size: 0.85rem;
    }

    .news-title {
        width: 100%;
    }

    /* Contact Mobile */
    .contact-desc {
        font-size: 0.95rem;
    }

    .contact-info p {
        font-size: 0.9rem;
    }

    .btn-contact {
        width: 100%;
        display: block;
        text-align: center;
    }

    /* Footer Mobile */
    .footer {
        padding: 60px 0 25px;
    }

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

    .footer-company {
        font-size: 1.4rem;
    }

    .footer-nav ul {
        justify-content: center;
        gap: 15px;
    }

    .footer-nav a {
        font-size: 0.8rem;
    }

    .copyright {
        margin-top: 30px;
    }
}

/* ===== Small Mobile (480px) ===== */
@media (max-width: 480px) {
    .hero-main {
        font-size: 2.2rem;
    }

    .hero-sub {
        font-size: 1rem;
    }

    .numbers-grid {
        grid-template-columns: 1fr;
    }

    .recruit-copy {
        font-size: 1.6rem;
    }

    .recruit-hero {
        height: auto;
        min-height: 350px;
        padding: 80px 20px 60px;
    }

    .message-photo::before {
        display: none;
    }
}