:root {
    /* Colors */
    --color-bg-base: #0a0a0a;
    --color-bg-dark: #050505;
    --color-bg-card: #141414;
    --color-text-main: #f5f5f5;
    --color-text-sub: #a0a0a0;

    /* Champagne Gold Gradient */
    --color-gold: #d4af37;
    --gradient-gold: linear-gradient(45deg, #bf953f, #fcf6ba, #b38728, #fbf5b7, #aa771c);
    --gradient-gold-text: linear-gradient(to right, #bf953f, #fcf6ba, #b38728, #fbf5b7);

    /* Fonts */
    --font-serif: 'Noto Serif JP', serif;
    --font-sans: 'Noto Sans JP', sans-serif;
    --font-english: 'Cormorant Garamond', serif;
    --header-height: 0px;
}

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

body {
    background-color: var(--color-bg-base);
    color: var(--color-text-main);
    font-family: var(--font-sans);
    line-height: 1.8;
    overflow-x: hidden;
    padding-top: var(--header-height);
}

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

ul {
    list-style: none;
}

/* Typography Utilities */
.serif {
    font-family: var(--font-serif);
}

.english {
    font-family: var(--font-english);
}

/* Layout Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.container.expanded {
    max-width: 1400px;
}

.center {
    text-align: center;
}

/* Animations */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease, transform 1s ease;
}

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

.delay-1 {
    transition-delay: 0.2s;
}

.delay-2 {
    transition-delay: 0.4s;
}

.delay-3 {
    transition-delay: 0.6s;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--color-bg-base);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding: 10px 0;
    transition: padding 0.3s ease, background 0.3s ease;
}

body.admin-bar .header {
    top: 32px;
}

.header-inner {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    margin-top: -20px;
    margin-bottom: -20px;
}

.logo-img {
    height: 120px;
    /* Adjust based on logo aspect ratio */
    width: auto;
    object-fit: contain;
}

.nav ul {
    display: flex;
    gap: 40px;
}

.nav a {
    font-family: var(--font-sans);
    /* Japanese main font */
    font-size: 0.9rem;
    color: var(--color-text-sub);
    position: relative;
    letter-spacing: 0.05em;
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.2;
}

.en-sub {
    font-family: var(--font-english);
    font-size: 0.75rem;
    color: var(--color-gold);
    margin-top: 2px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.nav a:hover {
    color: var(--color-text-main);
}

.nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-gold);
    transition: width 0.3s ease;
}

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

.cta-button-small {
    padding: 10px 24px;
    border: 1px solid var(--color-gold);
    color: var(--color-gold);
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.cta-button-small:hover {
    background: var(--color-gold);
    color: var(--color-bg-base);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, #1a1a1a 0%, #000000 100%);
    z-index: -1;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0IiBoZWlnaHQ9IjQiPgo8cmVjdCB3aWR0aD0iNCIgaGVpZ2h0PSI0IiBmaWxsPSIjZmZmIiBmaWxsLW9wYWNpdHk9IjAuMDIiLz4KPC9zdmc+');
    opacity: 0.3;
    animation: grain 8s steps(10) infinite;
    pointer-events: none;
}

@keyframes grain {

    0%,
    100% {
        transform: translate(0, 0)
    }

    10% {
        transform: translate(-5%, -10%)
    }

    20% {
        transform: translate(-15%, 5%)
    }

    30% {
        transform: translate(7%, -25%)
    }

    40% {
        transform: translate(-5%, 25%)
    }

    50% {
        transform: translate(-15%, 10%)
    }

    60% {
        transform: translate(15%, 0%)
    }

    70% {
        transform: translate(0%, 15%)
    }

    80% {
        transform: translate(3%, 35%)
    }

    90% {
        transform: translate(-10%, 10%)
    }
}


.hero-sub {
    font-family: var(--font-serif);
    color: var(--color-text-sub);
    letter-spacing: 0.3em;
    font-size: clamp(0.7rem, 2.1vw, 1.26rem);
    margin-bottom: 2rem;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 8.4vw, 7rem);
    line-height: 1.3;
    letter-spacing: 0.02em;
    margin-bottom: 4rem;
    background: var(--gradient-gold-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 500;
    width: 100%;
    text-align: center;
}

.hero-line {
    display: inline-block;
    white-space: nowrap;
}

.hero-features {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-bottom: 5rem;
}

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

.feature-label {
    display: block;
    font-family: var(--font-english);
    color: var(--color-gold);
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.feature-item p {
    font-size: 0.95rem;
    color: var(--color-text-sub);
    line-height: 1.6;
}

.feature-divider {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, var(--color-gold), transparent);
    opacity: 0.5;
}

.cta-button {
    display: inline-block;
    padding: 18px 48px;
    background: var(--gradient-gold);
    color: #000;
    font-family: var(--font-serif);
    font-weight: 600;
    letter-spacing: 0.1em;
    border-radius: 2px;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.cta-button:hover {
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.4);
    transform: translateY(-2px);
}

.scroll-down {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0.6;
}

.scroll-down span {
    font-family: var(--font-english);
    font-size: 0.8rem;
    letter-spacing: 0.2em;
}

.scroll-down .line {
    width: 1px;
    height: 60px;
    background: var(--color-text-sub);
    animation: scroll 2s cubic-bezier(0.77, 0, 0.175, 1) infinite;
}

@keyframes scroll {
    0% {
        transform: scaleY(0);
        transform-origin: top;
    }

    50% {
        transform: scaleY(1);
        transform-origin: top;
    }

    51% {
        transform: scaleY(1);
        transform-origin: bottom;
    }

    100% {
        transform: scaleY(0);
        transform-origin: bottom;
    }
}

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

.section-header {
    margin-bottom: 80px;
}

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

.section-subtitle {
    display: block;
    font-family: var(--font-english);
    color: var(--color-gold);
    font-size: 1rem;
    letter-spacing: 0.2em;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.section-title {
    font-family: var(--font-english);
    font-size: 3.5rem;
    color: var(--color-text-main);
    letter-spacing: 0.05em;
    line-height: 1;
    margin-bottom: 1.5rem;
}

.title-dot {
    color: var(--color-gold);
}

.section-desc {
    font-family: var(--font-serif);
    color: var(--color-text-sub);
    font-size: 1.2rem;
    letter-spacing: 0.1em;
}

/* Value Section */
.value-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.value-card {
    background: var(--color-bg-card);
    padding: 40px 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    transition: all 0.4s ease;
}

.value-card:hover {
    border-color: rgba(212, 175, 55, 0.4);
    transform: translateY(-10px);
}

.card-number {
    font-family: var(--font-english);
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.05);
    position: absolute;
    top: 20px;
    right: 20px;
    line-height: 1;
}

.value-card h3 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    margin-bottom: 25px;
    line-height: 1.5;
    background: var(--gradient-gold-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.value-card p {
    font-size: 0.9rem;
    color: var(--color-text-sub);
    line-height: 1.8;
}

/* Curriculum Section */
.curriculum {
    background: var(--color-bg-dark);
}

.steps {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.step-item {
    flex: 1;
    text-align: center;
    position: relative;
}

.step-head {
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.step-num {
    display: block;
    font-family: var(--font-english);
    font-size: 0.8rem;
    color: var(--color-gold);
    margin-bottom: 5px;
    letter-spacing: 0.1em;
}

.step-head h3 {
    font-family: var(--font-english);
    font-size: 1.5rem;
    color: var(--color-text-main);
}

.step-item p {
    font-size: 0.9rem;
    color: var(--color-text-sub);
}

.step-arrow {
    width: 60px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--color-text-sub), transparent);
    opacity: 0.3;
}

/* Message Section */
.message-inner {
    display: flex;
    align-items: center;
    gap: 80px;
}

.message-image {
    flex: 1;
    height: auto;
    position: relative;
}

.img-box {
    width: 100%;
    height: 100%;
    background-color: #1a1a1a;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: var(--font-english);
    color: var(--color-text-sub);
    position: relative;
    overflow: hidden;
}

.img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), transparent);
    z-index: 1;
}

.message-content {
    flex: 1;
}

.message-heading {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    margin-bottom: 2rem;
    line-height: 1.4;
}

.message-text {
    font-size: 1rem;
    color: var(--color-text-sub);
    margin-bottom: 3rem;
}

.message-sign {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    text-align: right;
    margin-bottom: 40px;
}

.message-bio {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    font-size: 0.9rem;
    color: var(--color-text-sub);
    line-height: 1.8;
}

.message-highlight {
    margin-top: 20px;
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--color-gold);
    line-height: 1.6;
    letter-spacing: 0.05em;
}

/* CTA Section */
.cta-section {
    position: relative;
    padding: 160px 0;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, var(--color-bg-base), var(--color-bg-card));
    z-index: -1;
}

.cta-bg::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    filter: blur(80px);
}

.cta-title {
    font-family: var(--font-serif);
    font-size: 3rem;
    margin-bottom: 1.5rem;
    background: var(--gradient-gold-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-section .cta-sub {
    font-size: 1.1rem;
    color: var(--color-text-sub);
    margin: 0 0 4rem 0 !important;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.cta-button.primary {
    /* Same as .cta-button */
}

.cta-button.secondary {
    background: transparent;
    border: 1px solid var(--color-gold);
    color: var(--color-gold);
    box-shadow: none;
}

.cta-button.secondary:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-2px);
}

/* Footer */
.footer {
    padding: 80px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}

.footer-logo {
    font-family: var(--font-english);
    font-size: 1.5rem;
    color: var(--color-text-main);
}

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

.footer-nav a {
    color: var(--color-text-sub);
    font-size: 0.9rem;
}

.footer-bottom {
    text-align: center;
    font-size: 0.8rem;
    color: #555;
    font-family: var(--font-english);
}

/* Access Section */
.access-content {
    max-width: 800px;
    margin: 0 auto;
}

.access-name {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--color-gold);
}

.access-address {
    font-size: 1rem;
    color: var(--color-text-sub);
    margin-bottom: 40px !important;
    line-height: 1.8;
}

.map-container {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    filter: invert(90%) hue-rotate(180deg) brightness(0.9);
    /* Styled map effect */
}

/* Process Flow (Rebuilt) */
.flow-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.flow-grid {
    position: relative;
}

.flow-line {
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-gold) 10%, var(--color-gold) 90%, transparent);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
    position: relative;
}

.flow-line::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    width: 24px;
    height: 2px;
    background: var(--color-gold);
    transform: rotate(-30deg);
    transform-origin: right bottom;
}

.flow-marker {
    text-align: center;
    position: relative;
}

.flow-marker::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -8px;
    transform: translateX(-50%);
    width: 14px;
    height: 14px;
    background: #000;
    border: 2px solid var(--color-gold);
    border-radius: 50%;
    z-index: 2;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
}

.flow-period {
    display: inline-block;
    font-size: 0.9rem;
    font-family: var(--font-serif);
    color: var(--color-gold);
    letter-spacing: 0.08em;
    text-shadow: 0 0 8px rgba(212, 175, 55, 0.6);
    line-height: 1.4;
    white-space: nowrap;
}

.flow-step {
    text-align: center;
    position: relative;
}

.flow-step-text {
    display: inline-block;
    font-family: var(--font-serif);
    color: var(--color-text-sub);
    letter-spacing: 0.2em;
    line-height: 1.6;
    transition: color 0.3s, text-shadow 0.3s, transform 0.3s;
}

/* Bracket display switching for vertical/horizontal text */
.bracket-vertical {
    display: inline;
}

.bracket-horizontal {
    display: none;
}

.flow-step:hover .flow-step-text {
    color: var(--color-gold);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
    transform: translateY(-5px);
}

.flow-step.is-emphasis .flow-step-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-text-main);
}

.flow-col-1 {
    grid-column: 1;
}

.flow-col-2 {
    grid-column: 2;
}

.flow-col-3 {
    grid-column: 3;
}

.flow-col-4 {
    grid-column: 4;
}

.flow-col-5 {
    grid-column: 5;
}

.flow-col-6 {
    grid-column: 6;
}

/* Pricing Table (Refined) */
.pricing-section {
    padding-top: 80px;
}

.pricing-table {
    display: flex;
    justify-content: center;
    max-width: 900px;
    margin: 50px auto 0;
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.95), rgba(5, 5, 5, 0.98));
    border: 1px solid rgba(212, 175, 55, 0.3);
    position: relative;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.9);
}

/* Decorative Corners */
.pricing-table::before,
.pricing-table::after {
    width: 30px;
    height: 30px;
    border-width: 3px;
}

.pricing-table::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    border-top: 3px solid var(--color-gold);
    border-left: 3px solid var(--color-gold);
}

.pricing-table::after {
    content: '';
    position: absolute;
    bottom: -1px;
    right: -1px;
    border-bottom: 3px solid var(--color-gold);
    border-right: 3px solid var(--color-gold);
}

.pricing-col {
    flex: 1;
    text-align: center;
    padding: 70px 30px;
    position: relative;
    transition: background 0.4s;
    border-right: 1px solid rgba(212, 175, 55, 0.15);
}

.pricing-col:last-child {
    border-right: none;
}

.pricing-col:hover {
    background: rgba(212, 175, 55, 0.04);
}

.price-title {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: var(--color-gold);
    margin-bottom: 35px;
    letter-spacing: 0.1em;
    position: relative;
    display: inline-block;
}

.price-note-mini {
    display: block;
    font-size: 0.8rem;
    color: var(--color-text-sub);
    margin-top: 5px;
    font-weight: normal;
}

.price-amount {
    font-family: var(--font-english);
    font-size: 3rem;
    color: var(--color-text-main);
    font-weight: 500;
    margin-bottom: 10px;
    letter-spacing: 0.05em;
    line-height: 1;
}

.pricing-col.featured {
    background: linear-gradient(to bottom, rgba(212, 175, 55, 0.08), transparent);
}

.pricing-col.featured .price-amount {
    color: #fff;
    text-shadow: 0 0 25px rgba(212, 175, 55, 0.5);
    font-size: 3.4rem;
}

/* Lower Section Decorations */
.decorated-block {
    margin-bottom: 80px;
    position: relative;
    padding-left: 20px;
}

.block-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

.block-title {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--color-text-main);
    white-space: nowrap;
}

.block-line {
    height: 1px;
    width: 100%;
    background: linear-gradient(to right, var(--color-gold), transparent);
    opacity: 0.5;
}

.sys-item {
    margin-bottom: 50px;
    padding-left: 20px;
    border-left: 1px solid rgba(212, 175, 55, 0.3);
}

.sys-item h3 {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    color: var(--color-gold);
    margin-bottom: 20px;
}

.glass-card {
    background: rgba(30, 30, 30, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 40px;
    margin-bottom: 30px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}

.box-title-gold {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--color-gold);
    text-align: center;
    margin-bottom: 30px;
    letter-spacing: 0.1em;
}

.voice-text {
    font-size: 0.95rem;
    line-height: 2;
    color: var(--color-text-sub);
    font-family: var(--font-serif);
}

.voice-author {
    display: block;
    text-align: right;
    margin-top: 10px;
    font-size: 0.9rem;
    color: var(--color-gold);
}

.divider-small {
    width: 40%;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 30px auto;
}

/* Page Hero Fix */
.page-hero {
    margin-top: 0;
}

/* Contact Section */
.contact-form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background: var(--color-bg-card);
    padding: 60px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    color: var(--color-gold);
    margin-bottom: 10px;
    letter-spacing: 0.05em;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-text-main);
    font-family: var(--font-sans);
    font-size: 1rem;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.form-group select {
    line-height: 1.4;
    height: 48px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-gold);
    background: rgba(212, 175, 55, 0.05);
}

.form-submit {
    text-align: center;
    margin-top: 40px;
}

.form-submit .cta-button {
    width: 100%;
    border: none;
    cursor: pointer;
}

/* Contact Form 7 Styles */
.contact-form-wrapper .wpcf7 {
    width: 100%;
}

.contact-form-wrapper .wpcf7-form p {
    margin-bottom: 25px;
}

.contact-form-wrapper .wpcf7-form label {
    display: block;
    font-size: 0.9rem;
    color: var(--color-gold);
    margin-bottom: 10px;
    letter-spacing: 0.05em;
}

.contact-form-wrapper .wpcf7-form-control-wrap {
    display: block;
}

.contact-form-wrapper .wpcf7-form input[type="text"],
.contact-form-wrapper .wpcf7-form input[type="email"],
.contact-form-wrapper .wpcf7-form input[type="tel"],
.contact-form-wrapper .wpcf7-form select,
.contact-form-wrapper .wpcf7-form textarea {
    width: 100%;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-text-main);
    font-family: var(--font-sans);
    font-size: 1rem;
    border-radius: 2px;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.contact-form-wrapper .wpcf7-form select {
    line-height: 1.4;
    height: 48px;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23d4af37' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
}

.contact-form-wrapper .wpcf7-form input[type="text"]:focus,
.contact-form-wrapper .wpcf7-form input[type="email"]:focus,
.contact-form-wrapper .wpcf7-form input[type="tel"]:focus,
.contact-form-wrapper .wpcf7-form select:focus,
.contact-form-wrapper .wpcf7-form textarea:focus {
    outline: none;
    border-color: var(--color-gold);
    background: rgba(212, 175, 55, 0.05);
}

.contact-form-wrapper .wpcf7-form textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-form-wrapper .wpcf7-form input[type="submit"] {
    display: inline-block;
    width: 100%;
    padding: 18px 48px;
    background: var(--gradient-gold);
    color: #000;
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-decoration: none;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.contact-form-wrapper .wpcf7-form input[type="submit"]:hover {
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.4);
    transform: translateY(-2px);
}

/* CF7 Validation & Response Messages */
.contact-form-wrapper .wpcf7-not-valid-tip {
    color: #ff6b6b;
    font-size: 0.85rem;
    margin-top: 8px;
    display: block;
}

.contact-form-wrapper .wpcf7-response-output {
    margin: 20px 0 0;
    padding: 15px 20px;
    border-radius: 2px;
    font-size: 0.9rem;
}

.contact-form-wrapper .wpcf7-mail-sent-ok {
    border: 1px solid var(--color-gold);
    color: var(--color-gold);
    background: rgba(212, 175, 55, 0.1);
}

.contact-form-wrapper .wpcf7-mail-sent-ng,
.contact-form-wrapper .wpcf7-validation-errors {
    border: 1px solid #ff6b6b;
    color: #ff6b6b;
    background: rgba(255, 107, 107, 0.1);
}

.contact-form-wrapper .wpcf7-spinner {
    display: none;
}

/* ============================================
   HAMBURGER MENU STYLES
   ============================================ */

/* Hamburger Button */
.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    padding: 10px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1100;
    position: relative;
}

.hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--color-gold);
    margin: 3px 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Hamburger Active State (X shape) */
.hamburger.active .hamburger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

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

.hamburger.active .hamburger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Menu Overlay */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: calc(var(--vh, 1vh) * 100);
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    z-index: 1050;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.mobile-menu.open {
    opacity: 1;
    visibility: visible;
}

/* Mobile Menu Close Button */
.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease 0.2s, transform 0.3s ease;
}

.mobile-menu.open .mobile-menu-close {
    opacity: 1;
}

.mobile-menu-close:hover {
    transform: scale(1.1);
}

.mobile-menu-close span {
    position: absolute;
    width: 28px;
    height: 2px;
    background-color: var(--color-gold);
}

.mobile-menu-close span:first-child {
    transform: rotate(45deg);
}

.mobile-menu-close span:last-child {
    transform: rotate(-45deg);
}

/* Mobile Navigation Styles */
.mobile-nav {
    text-align: center;
    padding: 20px;
}

.mobile-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

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

/* Staggered animation for menu items */
.mobile-menu.open .mobile-nav li:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.open .mobile-nav li:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.open .mobile-nav li:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.open .mobile-nav li:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu.open .mobile-nav li:nth-child(5) { transition-delay: 0.3s; }
.mobile-menu.open .mobile-nav li:nth-child(6) { transition-delay: 0.35s; }

.mobile-nav ul a {
    font-family: var(--font-sans);
    font-size: 1.2rem;
    color: var(--color-text-main);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    padding: 10px;
}

.mobile-nav ul a .en-sub {
    font-family: var(--font-english);
    font-size: 0.7rem;
    color: var(--color-gold);
    margin-top: 4px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.mobile-cta-button {
    display: inline-block;
    margin-top: 40px;
    padding: 16px 40px;
    background: var(--gradient-gold);
    color: #000;
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    border-radius: 2px;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease 0.4s, transform 0.3s ease 0.4s, box-shadow 0.3s ease;
}

.mobile-cta-button:hover {
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.4);
}

.mobile-menu.open .mobile-cta-button {
    opacity: 1;
    transform: translateY(0);
}

/* Hide hamburger on desktop and up */
@media (min-width: 1024px) {
    .hamburger {
        display: none;
    }

    .mobile-menu {
        display: none;
    }
}

/* FAQ Page Styles */
.faq-section {
    padding-top: 100px;
    padding-bottom: 80px;
}

.faq-category {
    max-width: 800px;
    margin: 0 auto 60px;
}

.category-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--color-gold);
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    padding-bottom: 10px;
    display: inline-block;
}

.faq-item {
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    background: rgba(30, 30, 30, 0.4);
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(30, 30, 30, 0.6);
    border-color: rgba(212, 175, 55, 0.2);
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    align-items: center;
    position: relative;
}

.q-mark {
    font-family: var(--font-english);
    color: var(--color-gold);
    font-size: 1.2rem;
    margin-right: 15px;
    font-weight: 600;
}

.q-text {
    font-family: var(--font-sans);
    font-size: 1rem;
    color: var(--color-text-main);
    flex: 1;
    line-height: 1.5;
}

.toggle-icon {
    font-size: 1.5rem;
    color: var(--color-gold);
    transition: transform 0.3s;
    font-weight: 300;
}

.faq-question.active .q-text {
    color: var(--color-gold);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: rgba(0, 0, 0, 0.2);
}

.a-inner {
    padding: 25px;
    padding-top: 10px;
    display: flex;
    align-items: flex-start;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.a-mark {
    font-family: var(--font-english);
    color: var(--color-text-sub);
    font-size: 1.2rem;
    margin-right: 15px;
    font-weight: 600;
    opacity: 0.7;
}

.a-text {
    font-size: 0.95rem;
    color: var(--color-text-sub);
    line-height: 1.8;
    flex: 1;
}

/* Value Page Styles */
.value-hero {
    padding-top: 140px;
    padding-bottom: 60px;
}

.value-key {
    padding: 100px 0;
    position: relative;
}

.value-key.bg-darker {
    background: rgba(10, 10, 10, 0.8);
    position: relative;
}

/* Decorative background for Key 2 */
.value-key.bg-darker::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
    opacity: 0.3;
}

.value-key.bg-darker::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
    opacity: 0.3;
}

.key-header {
    margin-bottom: 60px;
    position: relative;
    padding-left: 30px;
    border-left: 2px solid var(--color-gold);
}

.key-number {
    display: block;
    font-family: var(--font-english);
    color: var(--color-gold);
    font-size: 1.1rem;
    letter-spacing: 0.1em;
    font-weight: 500;
    margin-bottom: 10px;
}

.key-visual-container {
    margin-top: 30px;
    margin-bottom: 0;
    /* Spacing handled by header margin */
}

.key-visual-img {
    width: 100%;
    max-width: 600px;
    /* Limit width so it doesn't dominate on huge screens */
    height: auto;
    display: block;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.key-title {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    color: var(--color-text-main);
    line-height: 1.4;
}

.key-content {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.key-text-block {
    background: rgba(30, 30, 30, 0.4);
    padding: 60px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.key-text-block::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    width: 30px;
    height: 30px;
    border-top: 2px solid var(--color-gold);
    border-left: 2px solid var(--color-gold);
}

.key-text-block::after {
    content: '';
    position: absolute;
    bottom: -1px;
    right: -1px;
    width: 30px;
    height: 30px;
    border-bottom: 2px solid var(--color-gold);
    border-right: 2px solid var(--color-gold);
}

.key-lead {
    font-size: 1.4rem;
    font-family: var(--font-serif);
    color: var(--color-gold);
    margin-bottom: 30px;
    line-height: 1.6;
    text-align: center;
}

.key-text {
    font-size: 1rem;
    color: var(--color-text-sub);
    line-height: 2;
    margin-bottom: 20px;
}

.key-note {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: #aaa;
}

.divider-gold {
    width: 60px;
    height: 2px;
    background: var(--color-gold);
    margin: 40px auto;
}

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

.gold-highlight {
    color: var(--color-gold);
    font-weight: 500;
    border-bottom: 1px solid var(--color-gold);
    padding-bottom: 2px;
}

/* Specific styling for keys to look distinct */
.key-1 .key-text-block {
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.95), rgba(40, 40, 40, 0.8));
}

@media (max-width: 768px) {
    .key-header {
        padding-left: 20px;
        margin-bottom: 40px;
    }

    .key-title {
        font-size: 1.6rem;
    }

    .key-text-block {
        padding: 30px;
    }
}

/* Key 3 Specific Layout */
.key-3-layout {
    display: flex;
    align-items: center;
    gap: 90px;
    position: relative;
}

.key-3-layout .key-text-block {
    flex: 1;
    position: relative;
    z-index: 10;
    /* Ensure text is strictly above images */
}

.key-images-wrapper {
    flex: 1;
    position: relative;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    /* Keep images layer below text */
}

.key-img-container {
    position: absolute;
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    transition: all 0.5s ease;
    overflow: hidden;
}

.key-img-container img {
    display: block;
    width: 280px;
    height: auto;
    filter: brightness(0.8) saturation(0.7) sepia(0.15);
    /* Luxury dark tone - slightly clearer */
    transition: filter 0.5s ease;
}

.key-img-container:hover img {
    filter: brightness(1.0) saturation(0.9) sepia(0);
}

.key-img-container.img-1 {
    z-index: 1;
    transform: rotate(5deg) translate(80px, -20px);
    /* Moved further Right */
}

.key-img-container.img-2 {
    z-index: 2;
    transform: rotate(-5deg) translate(-80px, 20px);
    /* Moved further Left */
}

/* Mobile Responsive for Key 3 */
@media (max-width: 900px) {
    .key-3-layout {
        flex-direction: column;
        gap: 60px;
    }

    .key-images-wrapper {
        width: 100%;
        height: 250px;
    }

    .key-img-container img {
        width: 200px;
    }
}

/* Camp Section Details */
.camp-block {
    background: rgba(20, 20, 20, 0.6);
    padding: 40px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 4px;
}

.camp-dl {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.camp-dl dt {
    font-weight: bold;
    color: var(--color-gold);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.camp-dl dd {
    color: var(--color-text-sub);
}

.camp-desc {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--color-text-sub);
}

/* Short-Term Method Section */
.method-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.method-inner {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.method-inner::before {
    content: '';
    position: absolute;
    top: -40px;
    left: 20px;
    font-family: var(--font-english);
    font-size: 8rem;
    color: rgba(212, 175, 55, 0.03);
    content: 'Essence';
    z-index: -1;
    pointer-events: none;
}

.method-title {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--color-gold);
    margin-bottom: 50px;
    text-align: center;
    position: relative;
    padding-bottom: 20px;
}

.method-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background: var(--color-gold);
}

.method-text {
    font-size: 1rem;
    color: var(--color-text-sub);
    line-height: 2.2;
    margin-bottom: 60px;
    text-align: justify;
    font-family: var(--font-serif);
}

.method-tagline {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--color-text-main);
    text-align: right;
    font-style: italic;
    letter-spacing: 0.1em;

    opacity: 0.9;
}

/* Supervisor Section */
.supervisor-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, var(--color-bg-base), var(--color-bg-dark));
    text-align: center;
}

.supervisor-img-container {
    max-width: 600px;
    margin: 0 auto 50px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 10px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
}

.supervisor-img-container::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    width: 60px;
    height: 60px;
    border-top: 2px solid var(--color-gold);
    border-left: 2px solid var(--color-gold);
    z-index: 1;
}

.supervisor-img-container::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: -10px;
    width: 60px;
    height: 60px;
    border-bottom: 2px solid var(--color-gold);
    border-right: 2px solid var(--color-gold);
    z-index: 1;
}

.supervisor-img {
    width: 100%;
    height: auto;
    display: block;
    filter: sepia(0.1) contrast(1.1);
}

.supervisor-text {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--color-gold);
    line-height: 1.6;
    letter-spacing: 0.05em;
    max-width: 800px;
    margin: 0 auto;
}

.rep-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

/* Latest News Section */
.news-section {
    padding-bottom: 80px;
    /* Adjust spacing */
}

.news-list {
    max-width: 900px;
    margin: 0 auto;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.news-item:hover {
    background: rgba(255, 255, 255, 0.02);
    padding-left: 30px;
    border-color: rgba(212, 175, 55, 0.3);
}

.news-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-right: 20px;
}

.news-date {
    font-family: var(--font-english);
    color: var(--color-text-sub);
    font-size: 0.9rem;
    letter-spacing: 0.05em;
}

.news-category {
    display: inline-block;
    padding: 4px 12px;
    border: 1px solid var(--color-gold);
    color: var(--color-gold);
    font-size: 0.75rem;
    border-radius: 20px;
    white-space: nowrap;
}

.news-title {
    font-family: var(--font-sans);
    font-size: 1rem;
    color: var(--color-text-main);
    font-weight: 400;
    transition: color 0.3s ease;
}

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

.more-news-btn-wrapper {
    margin-top: 40px;
    text-align: right;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.link-text {
    font-family: var(--font-english);
    color: var(--color-gold);
    font-size: 1rem;
    letter-spacing: 0.1em;
    position: relative;
    padding-bottom: 5px;
}

.link-text::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-gold);
    transition: width 0.3s ease;
}

.link-text:hover::after {
    width: 100%;
}

@media (max-width: 768px) {
    .news-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .news-meta {
        width: 100%;
        justify-content: space-between;
        margin-right: 0;
        margin-bottom: 5px;
    }
}

/* Blog Page Styles (Listing) */
.page-hero,
.blog-hero {
    background: var(--color-bg-base);
    padding-top: 100px;
    padding-bottom: 80px;
}

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

.blog-card {
    background: var(--color-bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.blog-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.blog-link {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-img-wrapper {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
    background: #222;
}

.blog-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color-text-sub);
    font-family: var(--font-english);
    background: linear-gradient(45deg, #1a1a1a, #2a2a2a);
}

.blog-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover img {
    transform: scale(1.1);
}

.blog-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.blog-date {
    font-family: var(--font-english);
    font-size: 0.85rem;
    color: var(--color-text-sub);
}

.blog-category {
    font-size: 0.75rem;
    color: var(--color-gold);
    border: 1px solid var(--color-gold);
    padding: 2px 10px;
    border-radius: 20px;
}

.blog-title {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    color: var(--color-text-main);
    margin-bottom: 15px;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.blog-card:hover .blog-title {
    color: var(--color-gold);
}

.blog-excerpt {
    font-size: 0.9rem;
    color: var(--color-text-sub);
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.read-more {
    font-family: var(--font-english);
    font-size: 0.9rem;
    color: var(--color-gold);
    letter-spacing: 0.1em;
    position: relative;
    align-self: flex-start;
}

.read-more::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-gold);
    transition: width 0.3s ease;
}

.blog-card:hover .read-more::after {
    width: 100%;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.page-num {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-text-sub);
    font-family: var(--font-english);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.page-num:hover,
.page-num.active {
    background: var(--color-gold);
    color: #000;
    border-color: var(--color-gold);
}

.page-dots {
    display: flex;
    align-items: flex-end;
    color: var(--color-text-sub);
    padding: 0 10px;
}

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

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

/* Hide default page header/breadcrumb blocks on single posts */
body.single-post .page-header,
body.single-post .breadSection {
    display: none;
}

/* ============================================
   COMPREHENSIVE RESPONSIVE STYLES
   Mobile First Approach
   Base: Mobile (~767px)
   Tablet: 768px - 1023px
   Desktop: 1024px+
   ============================================ */

/* ============================================
   MOBILE BASE STYLES (Default - ~767px)
   ============================================ */

/* Container */
.container {
    padding: 0 15px;
}

/* Section */
.section {
    padding: 60px 0;
}

.section-header {
    margin-bottom: 40px;
}

.section-title {
    font-size: 2rem;
}

.section-desc {
    font-size: 1rem;
}

/* Header Mobile */
.header-inner {
    padding: 0 15px;
}

.logo-img {
    height: 60px;
}

.nav {
    display: none;
}

.header-cta {
    display: none;
}

/* Hero Mobile */
.hero {
    min-height: 100vh;
    min-height: calc(var(--vh, 1vh) * 100);
    padding: 100px 20px 60px;
}

.hero-sub {
    font-size: clamp(0.6rem, 1.75vw, 0.84rem);
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: clamp(1.4rem, 8.4vw, 2.8rem);
    margin-bottom: 2rem;
}

.hero-features {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 3rem;
}

.feature-divider {
    width: 60px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--color-gold), transparent);
}

.feature-item p {
    font-size: 0.85rem;
}

.cta-button {
    padding: 14px 30px;
    font-size: 0.9rem;
}

.scroll-down {
    bottom: 20px;
}

.scroll-down .line {
    height: 40px;
}

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

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

.value-card h3 {
    font-size: 1.1rem;
}

.card-number {
    font-size: 2.5rem;
}

/* Curriculum Steps Mobile */
.steps {
    flex-direction: column;
    gap: 10px;
}

.step-item {
    text-align: center;
    padding: 20px;
}

.step-head h3 {
    font-size: 1.2rem;
}

.step-arrow {
    width: 1px;
    height: 30px;
    background: linear-gradient(to bottom, transparent, var(--color-text-sub), transparent);
}

/* Message Section Mobile */
.message-inner {
    flex-direction: column;
    gap: 40px;
}

.message-image {
    display: none;
}

.message-image-mobile {
    display: block;
    margin: 30px 0;
}

.message-image-mobile .rep-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.message-image {
    width: 100%;
    height: auto;
}

.message-heading {
    font-size: 1.6rem;
}

.message-text {
    font-size: 0.95rem;
}

.message-sign {
    font-size: 1rem;
}

/* CTA Section Mobile */
@media (max-width: 767px) {
    .cta-section {
        padding: 80px 0;
    }

    .cta-title {
        font-size: 1.8rem;
    }

    .cta-section .cta-sub {
        font-size: 0.9rem;
        margin: 0 0 3.5rem 0 !important;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .cta-buttons .cta-button {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

/* Footer Mobile */
.footer {
    padding: 50px 0 30px;
}

.footer-top {
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
    text-align: center;
}

.footer-nav ul {
    flex-direction: column;
    gap: 15px;
}

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

.footer-bottom {
    font-size: 0.7rem;
}

/* Contact Form Mobile */
.contact-form-wrapper {
    padding: 30px 20px;
}

.contact-form-wrapper .wpcf7-form p {
    margin-bottom: 20px;
}

.contact-form-wrapper .wpcf7-form input[type="submit"] {
    padding: 15px 30px;
    font-size: 0.95rem;
}

/* News List Mobile */
.news-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 20px 15px;
}

.news-meta {
    width: 100%;
    justify-content: space-between;
    margin-right: 0;
    min-width: unset;
}

.news-title {
    font-size: 0.95rem;
}

/* Value Page Mobile */
.value-hero {
    padding-top: 100px;
    padding-bottom: 40px;
}

.value-key {
    padding: 60px 0;
}

.key-header {
    padding-left: 15px;
    margin-bottom: 30px;
}

.key-title {
    font-size: 1.4rem;
}

.key-text-block {
    padding: 25px 20px;
}

.key-lead {
    font-size: 1.1rem;
}

.key-text {
    font-size: 0.95rem;
}

/* Key 3 Layout Mobile */
.key-3-layout {
    flex-direction: column;
    gap: 40px;
}

@media (max-width: 767px) {
    .key-3-layout {
        gap: 140px;
    }
    
    .key-images-wrapper {
        margin-top: 70px;
    }
    
    .key-img-container.img-1 {
        transform: rotate(3deg) translate(60px, -10px) !important;
    }
    
    .key-img-container.img-2 {
        transform: rotate(-3deg) translate(-60px, 10px) !important;
    }
}

.key-images-wrapper {
    width: 100%;
    height: 200px;
    order: -1;
}

.key-img-container img {
    width: 160px;
}

.key-img-container.img-1 {
    transform: rotate(3deg) translate(30px, -10px);
}

.key-img-container.img-2 {
    transform: rotate(-3deg) translate(-30px, 10px);
}

@media (max-width: 767px) {
    /* Courses Page Mobile */
    .flow-container {
        padding: 60px 15px 40px;
    }

    .flow-grid {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        column-gap: 32px;
        row-gap: 18px;
        position: relative;
    }

    .flow-line {
        display: block;
        position: absolute;
        left: 50%;
        top: 0;
        bottom: 0;
        width: 2px;
        height: auto;
        transform: translateX(-50%);
        background: linear-gradient(180deg, transparent, var(--color-gold) 10%, var(--color-gold) 90%, transparent);
        box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
    }

    .flow-line::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 2px;
        height: 24px;
        background: var(--color-gold);
        transform: rotate(30deg);
        transform-origin: left bottom;
    }

    .flow-marker {
        display: flex;
        align-items: center;
        grid-column: 1;
        justify-content: flex-end;
        padding-right: 18px;
        text-align: right;
        width: 100%;
    }

    .flow-marker::after {
        display: none;
    }

    .flow-period {
        font-size: 0.85rem;
        letter-spacing: 0.06em;
        white-space: normal;
    }

    .flow-step {
        grid-column: 2;
        padding: 14px 18px 14px 0;
        text-align: left;
    }

    .flow-step::before {
        content: '';
        position: absolute;
        left: -16px;
        top: 50%;
        transform: translate(-50%, -50%);
        width: 10px;
        height: 10px;
        background: #000;
        border: 2px solid var(--color-gold);
        border-radius: 50%;
        box-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
    }

    .flow-step-text {
        writing-mode: horizontal-tb;
        text-orientation: mixed;
        font-size: 1rem;
        letter-spacing: 0.12em;
    }

    /* Mobile: show horizontal brackets, hide vertical brackets */
    .bracket-vertical {
        display: none;
    }

    .bracket-horizontal {
        display: inline;
    }

    .flow-row-1 {
        grid-row: 1;
    }

    .flow-row-2 {
        grid-row: 2;
    }

    .flow-row-3 {
        grid-row: 3;
    }

    .flow-row-4 {
        grid-row: 4;
    }

    .flow-row-5 {
        grid-row: 5;
    }

    .flow-row-6 {
        grid-row: 6;
    }
}

/* Pricing Table Mobile */
.pricing-table {
    flex-direction: column;
}

.pricing-col {
    padding: 40px 20px;
    border-right: none;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.pricing-col:last-child {
    border-bottom: none;
}

.price-title {
    font-size: 1.2rem;
}

.price-amount {
    font-size: 2.2rem;
}

.pricing-col.featured .price-amount {
    font-size: 2.6rem;
}

/* Decorated Blocks Mobile */
.decorated-block {
    margin-bottom: 50px;
    padding-left: 10px;
}

.block-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.block-title {
    font-size: 1.5rem;
}

.sys-item {
    margin-bottom: 30px;
    padding-left: 15px;
}

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

.camp-block {
    padding: 25px 20px;
}

.camp-dl {
    grid-template-columns: 80px 1fr;
    gap: 15px;
}

/* Blog Grid Mobile */
.blog-grid {
    grid-template-columns: 1fr;
    gap: 25px;
}

.blog-img-wrapper {
    height: 180px;
}

.blog-content {
    padding: 20px;
}

.blog-title {
    font-size: 1rem;
}

/* Page Hero Mobile */
.page-hero,
.blog-hero {
    padding-top: 80px;
    padding-bottom: 60px;
}

/* FAQ Mobile */
.faq-section {
    padding-top: 80px;
    padding-bottom: 60px;
}

.faq-category {
    margin-bottom: 40px;
}

.category-title {
    font-size: 1.2rem;
}

.faq-question {
    padding: 15px 15px;
}

.q-text {
    font-size: 0.9rem;
}

.a-inner {
    padding: 15px;
}

.a-text {
    font-size: 0.85rem;
}

/* Method Section Mobile */
.method-section {
    padding: 80px 0;
}

.method-title {
    font-size: 1.5rem;
}

.method-text {
    font-size: 0.95rem;
    line-height: 2;
}

.method-tagline {
    font-size: 1.2rem;
}

/* Supervisor Section Mobile */
.supervisor-section {
    padding: 60px 0;
}

.supervisor-text {
    font-size: 1.2rem;
}

/* Access Section Mobile */
.access-name {
    font-size: 1.2rem;
}

.access-address {
    font-size: 0.9rem;
}

/* ============================================
   TABLET STYLES (768px - 1023px)
   ============================================ */
@media (min-width: 768px) {
    /* Container */
    .container {
        padding: 0 20px;
    }

    /* Section */
    .section {
        padding: 100px 0;
    }

    .section-header {
        margin-bottom: 60px;
    }

    .section-title {
        font-size: 2.5rem;
    }

    /* Header Tablet */
    .header-inner {
        padding: 0 25px;
        flex-direction: row;
    }

    .logo-img {
        height: 80px;
    }

    /* Keep hamburger menu visible on tablet */
    .nav {
        display: none;
    }

    .header-cta {
        display: none;
    }

    /* Hero Tablet */
    .hero {
        padding-top: 80px;
    }

    .hero-sub {
        font-size: clamp(0.63rem, 1.75vw, 0.98rem);
    }

    .hero-title {
        font-size: clamp(1.75rem, 8.4vw, 4.2rem);
        margin-bottom: 3rem;
    }

    .hero-features {
        flex-direction: row;
        gap: 30px;
        margin-bottom: 4rem;
    }

    .feature-divider {
        width: 1px;
        height: 60px;
        background: linear-gradient(to bottom, transparent, var(--color-gold), transparent);
    }

    .cta-button {
        padding: 16px 40px;
    }

    /* Value Grid Tablet */
    .value-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

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

    /* Curriculum Steps Tablet */
    .steps {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .step-item {
        flex: 0 0 45%;
    }

    .step-arrow {
        display: none;
    }

    /* Message Section Tablet */
    .message-inner {
        flex-direction: row;
        gap: 50px;
    }

    .message-image {
        flex: 0 0 40%;
        height: auto;
    }

    .message-content {
        flex: 1;
    }

    .message-heading {
        font-size: 2rem;
    }

    /* CTA Section Tablet */
    .cta-section {
        padding: 120px 0;
    }

    .cta-title {
        font-size: 2.5rem;
    }

    .cta-buttons {
        flex-direction: row;
        gap: 20px;
    }

    .cta-buttons .cta-button {
        width: auto;
        max-width: none;
    }

    /* Footer Tablet */
    .footer {
        padding: 60px 0 35px;
    }

    .footer-top {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }

    .footer-nav ul {
        flex-direction: row;
        gap: 25px;
    }

    /* News List Tablet */
    .news-item {
        flex-direction: row;
        align-items: center;
        gap: 0;
    }

    .news-meta {
        width: auto;
        justify-content: flex-start;
        margin-right: 20px;
    }

    /* Value Page Tablet */
    .value-hero {
        padding-top: 120px;
        padding-bottom: 50px;
    }

    .value-key {
        padding: 80px 0;
    }

    .key-header {
        padding-left: 25px;
        margin-bottom: 50px;
    }

    .key-title {
        font-size: 1.8rem;
    }

    .key-text-block {
        padding: 40px 35px;
    }

    .key-lead {
        font-size: 1.25rem;
    }

    /* Key 3 Layout Tablet */
    .key-3-layout {
        flex-direction: row;
        gap: 50px;
    }

    .key-images-wrapper {
        flex: 0 0 45%;
        height: 250px;
        order: 0;
    }

    .key-img-container img {
        width: 200px;
    }

    .key-img-container.img-1 {
        transform: rotate(4deg) translate(50px, -15px);
    }

    .key-img-container.img-2 {
        transform: rotate(-4deg) translate(-50px, 15px);
    }

    /* Courses Page Tablet */
    .flow-container {
        padding: 80px 20px 50px;
    }

    .flow-grid {
        display: grid;
        grid-template-columns: repeat(6, minmax(0, 1fr));
        grid-template-rows: 80px auto;
        row-gap: 28px;
        align-items: start;
        justify-items: center;
    }

    .flow-line {
        display: block;
        grid-column: 1 / -1;
        grid-row: 1;
        align-self: end;
        justify-self: stretch;
        height: 2px;
    }

    .flow-marker {
        display: block;
        grid-row: 1;
        align-self: end;
        padding-bottom: 18px;
    }

    .flow-period {
        display: inline-block;
        font-size: 0.75rem;
    }

    .flow-step {
        grid-row: 2;
        border-left: none;
        text-align: center;
        padding-top: 18px;
    }

    .flow-step::before {
        content: '';
        position: absolute;
        top: -24px;
        left: 50%;
        transform: translateX(-50%);
        width: 1px;
        height: 22px;
        background: linear-gradient(to bottom, var(--color-gold), transparent);
        opacity: 0.6;
    }

    .flow-step-text {
        writing-mode: vertical-rl;
        text-orientation: upright;
        font-size: 0.95rem;
    }

    /* Pricing Table Tablet */
    .pricing-table {
        flex-direction: row;
    }

    .pricing-col {
        padding: 50px 20px;
        border-right: 1px solid rgba(212, 175, 55, 0.15);
        border-bottom: none;
    }

    .pricing-col:last-child {
        border-right: none;
    }

    .price-title {
        font-size: 1.3rem;
    }

    .price-amount {
        font-size: 2.5rem;
    }

    .pricing-col.featured .price-amount {
        font-size: 2.8rem;
    }

    /* Decorated Blocks Tablet */
    .decorated-block {
        padding-left: 15px;
    }

    .block-header {
        flex-direction: row;
    }

    .block-title {
        font-size: 1.7rem;
    }

    .glass-card {
        padding: 35px;
    }

    /* Blog Grid Tablet */
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .blog-img-wrapper {
        height: 190px;
    }

    /* Page Hero Tablet */
    .page-hero,
    .blog-hero {
        padding-top: 90px;
        padding-bottom: 80px;
    }

    /* FAQ Tablet */
    .faq-section {
        padding-top: 90px;
    }

    .category-title {
        font-size: 1.35rem;
    }

    .faq-question {
        padding: 18px 22px;
    }

    /* Method Section Tablet */
    .method-section {
        padding: 100px 0;
    }

    .method-title {
        font-size: 1.8rem;
    }

    /* Supervisor Section Tablet */
    .supervisor-section {
        padding: 80px 0;
    }
}

/* ============================================
   DESKTOP STYLES (1024px+)
   ============================================ */
@media (min-width: 1024px) {
    /* Container */
    .container {
        padding: 0 24px;
    }

    .container.expanded {
        max-width: 1400px;
    }

    /* Section */
    .section {
        padding: 140px 0;
    }

    .section-header {
        margin-bottom: 80px;
    }

    .section-title {
        font-size: 3.5rem;
    }

    .section-desc {
        font-size: 1.2rem;
    }

    /* Header Desktop */
    .header {
        padding: 10px 0;
    }

    .header-inner {
        padding: 0 40px;
    }

    .logo-img {
        height: 120px;
    }

    .nav {
        display: flex;
    }

    .nav ul {
        gap: 40px;
    }

    .nav a {
        font-size: 0.9rem;
    }

    .header-cta {
        display: inline-block;
        padding: 10px 24px;
        font-size: 0.9rem;
    }

    /* Hero Desktop */
    .hero-sub {
        font-size: clamp(0.7rem, 2.1vw, 1.26rem);
        margin-bottom: 2rem;
    }

    .hero-title {
        font-size: clamp(2.1rem, 7.7vw, 7rem);
        margin-bottom: 4rem;
    }

    .hero-features {
        gap: 40px;
        margin-bottom: 5rem;
    }

    .cta-button {
        padding: 18px 48px;
    }

    .scroll-down {
        bottom: 40px;
    }

    .scroll-down .line {
        height: 60px;
    }

    /* Value Grid Desktop */
    .value-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }

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

    .value-card h3 {
        font-size: 1.25rem;
    }

    .card-number {
        font-size: 3rem;
    }

    /* Curriculum Steps Desktop */
    .steps {
        flex-wrap: nowrap;
        justify-content: space-between;
    }

    .step-item {
        flex: 1;
    }

    .step-arrow {
        display: block;
        width: 60px;
        height: 1px;
        background: linear-gradient(to right, transparent, var(--color-text-sub), transparent);
    }

    .step-head h3 {
        font-size: 1.5rem;
    }

    /* Message Section Desktop */
    .message-inner {
        gap: 80px;
    }

    .message-image {
        display: block;
        height: auto;
    }

    .message-image-mobile {
        display: none;
    }

    .message-heading {
        font-size: 2.5rem;
    }

    .message-sign {
        font-size: 1.2rem;
    }

    /* CTA Section Desktop */
    .cta-section {
        padding: 160px 0;
    }

    .cta-title {
        font-size: 3rem;
    }

    .cta-section .cta-sub {
        font-size: 1.1rem;
        margin: 0 0 4rem 0 !important;
    }

    .cta-buttons {
        gap: 30px;
    }

    /* Footer Desktop */
    .footer {
        padding: 80px 0 40px;
    }

    .footer-top {
        margin-bottom: 60px;
    }

    .footer-nav ul {
        gap: 40px;
    }

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

    .footer-bottom {
        font-size: 0.8rem;
    }

    /* Contact Form Desktop */
    .contact-form-wrapper {
        padding: 60px;
    }

    .contact-form-wrapper .wpcf7-form p {
        margin-bottom: 25px;
    }

    .contact-form-wrapper .wpcf7-form input[type="submit"] {
        padding: 18px 50px;
        font-size: 1rem;
    }

    /* News List Desktop */
    .news-meta {
        width: auto;
        justify-content: flex-start;
        margin-right: 20px;
    }

    .news-title {
        font-size: 1rem;
    }

    /* Value Page Desktop */
    .value-hero {
        padding-top: 140px;
        padding-bottom: 60px;
    }

    .value-key {
        padding: 100px 0;
    }

    .key-header {
        padding-left: 30px;
        margin-bottom: 60px;
    }

    .key-title {
        font-size: 2.2rem;
    }

    .key-text-block {
        padding: 60px;
    }

    .key-lead {
        font-size: 1.4rem;
    }

    /* Key 3 Layout Desktop */
    .key-3-layout {
        gap: 90px;
    }

    .key-images-wrapper {
        flex: 1;
        height: 300px;
    }

    .key-img-container img {
        width: 280px;
    }

    .key-img-container.img-1 {
        transform: rotate(5deg) translate(80px, -20px);
    }

    .key-img-container.img-2 {
        transform: rotate(-5deg) translate(-80px, 20px);
    }

    /* Courses Page Desktop */
    .flow-container {
        padding: 120px 20px 60px;
    }

    .flow-grid {
        grid-template-rows: 90px auto;
        row-gap: 34px;
    }

    .flow-line {
        height: 3px;
    }

    .flow-marker {
        padding-bottom: 22px;
    }

    .flow-step {
        padding-top: 26px;
    }

    .flow-step::before {
        top: -28px;
        height: 26px;
    }

    .flow-step-text {
        font-size: 1.05rem;
    }

    .flow-period {
        font-size: 0.9rem;
    }

    /* Pricing Table Desktop */
    .pricing-col {
        padding: 70px 30px;
    }

    .price-title {
        font-size: 1.4rem;
    }

    .price-amount {
        font-size: 3rem;
    }

    .pricing-col.featured .price-amount {
        font-size: 3.4rem;
    }

    /* Decorated Blocks Desktop */
    .decorated-block {
        margin-bottom: 80px;
        padding-left: 20px;
    }

    .block-title {
        font-size: 2rem;
    }

    .sys-item {
        margin-bottom: 50px;
        padding-left: 20px;
    }

    .glass-card {
        padding: 40px;
    }

    .camp-block {
        padding: 40px;
    }

    .camp-dl {
        grid-template-columns: 100px 1fr;
        gap: 20px;
    }

    /* Blog Grid Desktop */
    .blog-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }

    .blog-img-wrapper {
        height: 200px;
    }

    .blog-content {
        padding: 25px;
    }

    .blog-title {
        font-size: 1.1rem;
    }

    /* Page Hero Desktop */
    .page-hero,
    .blog-hero {
        padding-top: 100px;
        padding-bottom: 80px;
    }

    /* FAQ Desktop */
    .faq-section {
        padding-top: 100px;
        padding-bottom: 80px;
    }

    .faq-category {
        margin-bottom: 60px;
    }

    .category-title {
        font-size: 1.5rem;
    }

    .faq-question {
        padding: 20px 25px;
    }

    .q-text {
        font-size: 1rem;
    }

    .a-inner {
        padding: 25px;
    }

    .a-text {
        font-size: 0.95rem;
    }

    /* Method Section Desktop */
    .method-section {
        padding: 120px 0;
    }

    .method-title {
        font-size: 2rem;
    }

    .method-text {
        font-size: 1rem;
        line-height: 2.2;
    }

    .method-tagline {
        font-size: 1.5rem;
    }

    /* Supervisor Section Desktop */
    .supervisor-section {
        padding: 100px 0;
    }

    .supervisor-text {
        font-size: 1.5rem;
    }

    /* Access Section Desktop */
    .access-name {
        font-size: 1.5rem;
    }

    .access-address {
        font-size: 1rem;
    }
}
