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

:root {
    --primary-color: #0a0a0a;
    --secondary-color: #1a1a1a;
    --accent-color: #f5f5f5;
    --gold: #d4af37;
    --gold-light: #f4e4b8;
    --gold-dark: #b8941f;
    --dark-bg: #000000;
    --light-bg: #fafafa;
    --text-dark: #0a0a0a;
    --text-light: #666666;
    --white: #ffffff;
    --border-subtle: #e5e5e5;
    --border-gold: rgba(212, 175, 55, 0.2);
}

@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200;300;400;500;600;700;900&family=Cinzel:wght@400;500;600;700;800;900&display=swap');

body {
    font-family: 'Noto Serif JP', 'Yu Mincho', YuMincho, 'Hiragino Mincho ProN', 'MS PMincho', serif;
    line-height: 1.9;
    color: var(--text-dark);
    overflow-x: hidden;
    background: var(--white);
    font-weight: 400;
    letter-spacing: 0.05em;
    width: 100%;
}

html {
    overflow-x: hidden;
    width: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
    overflow: hidden;
}

/* Navigation */
.navbar {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    transition: all 0.4s ease;
}

.navbar.scrolled {
    padding: 1rem 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo-image {
    height: 45px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

.logo-text {
    font-family: 'Cinzel', 'Noto Serif JP', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.logo:hover .logo-image {
    transform: scale(1.05);
}

.logo:hover .logo-text {
    color: var(--gold);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    transition: all 0.3s ease;
    width: 48px;
    height: 48px;
    position: relative;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s ease;
    border-radius: 2px;
    position: absolute;
}

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

.hamburger span:nth-child(2) {
    top: 23px;
}

.hamburger span:nth-child(3) {
    top: 32px;
}

.hamburger:hover span {
    background: var(--gold);
}

.hamburger.active span:nth-child(1) {
    top: 23px;
    transform: rotate(45deg);
}

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

.hamburger.active span:nth-child(3) {
    top: 23px;
    transform: rotate(-45deg);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.4s ease;
    position: relative;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.nav-links a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -10px;
    width: 4px;
    height: 0;
    background: var(--gold);
    transform: translateY(-50%);
    transition: height 0.3s ease;
}

.nav-links a:hover::before,
.nav-links a.active::before {
    height: 100%;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--white);
    padding-left: 15px;
}

/* Hero Section */
.hero {
    background: linear-gradient(180deg, #000000 0%, #1a1a1a 100%);
    padding: 200px 40px 140px;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background:
        radial-gradient(circle at 30% 40%, rgba(212, 175, 55, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(212, 175, 55, 0.04) 0%, transparent 50%);
    animation: slowRotate 30s linear infinite;
}

@keyframes slowRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

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

.hero h1 {
    font-family: 'Cinzel', 'Noto Serif JP', serif;
    font-size: 4.5rem;
    margin-bottom: 2rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    line-height: 1.3;
    text-transform: uppercase;
    background: linear-gradient(135deg, #ffffff 0%, #d4af37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1.2s ease-out, textShine 4s ease-in-out infinite;
    background-size: 200% auto;
}

@keyframes textShine {
    0%, 100% {
        background-position: 0% center;
    }
    50% {
        background-position: 100% center;
    }
}

.subtitle {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.2rem;
    opacity: 0.7;
    font-weight: 400;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    position: relative;
}

.subtitle::before,
.subtitle::after {
    content: '—';
    margin: 0 20px;
    color: var(--gold);
}

.fade-in {
    animation: fadeInUp 1.5s ease-out;
}

.fade-in-delay {
    animation: fadeInUp 1.5s ease-out 0.4s backwards;
}

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

/* Founder Section */
.founder-section {
    padding: 140px 40px;
    background: linear-gradient(180deg, var(--white) 0%, var(--light-bg) 100%);
    position: relative;
}

.founder-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 1px;
    background: var(--gold);
    animation: shimmer 3s ease-in-out infinite;
}

.founder-section .container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 100px;
    align-items: center;
}

.founder-image-container {
    text-align: center;
    animation: floatImage 6s ease-in-out infinite;
}

@keyframes floatImage {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.image-placeholder {
    background: var(--light-bg);
    border-radius: 0;
    padding: 0;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    position: relative;
    box-shadow:
        0 0 0 1px var(--border-gold),
        0 30px 80px rgba(0, 0, 0, 0.12);
}

.image-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.2), transparent);
    transition: left 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.image-placeholder:hover::before {
    left: 100%;
}

.image-placeholder::after {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    border: 2px solid var(--gold);
    opacity: 0;
    transition: all 0.6s ease;
    pointer-events: none;
    z-index: 2;
}

.image-placeholder:hover::after {
    opacity: 0.4;
    top: -30px;
    left: -30px;
    right: 30px;
    bottom: 30px;
}

.image-placeholder img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.image-placeholder:hover img {
    transform: scale(1.08);
}

.image-note {
    margin-top: 25px;
    font-size: 0.85rem;
    color: var(--text-light);
    font-style: italic;
    letter-spacing: 0.05em;
    opacity: 0.7;
}

.founder-description h2 {
    font-family: 'Noto Serif JP', serif;
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 600;
    color: var(--text-dark);
    letter-spacing: 0.08em;
    line-height: 1.4;
    position: relative;
    padding-bottom: 20px;
}

.founder-description h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--gold-dark));
    animation: expandLine 1.2s ease-out 0.5s forwards;
}

@keyframes expandLine {
    to {
        width: 60px;
    }
}

.highlight {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 2rem;
    line-height: 2;
    border-left: 3px solid var(--gold);
    padding-left: 1.8rem;
    position: relative;
    animation: slideIn 1s ease-out 0.3s backwards;
    background: linear-gradient(135deg, transparent 0%, rgba(212, 175, 55, 0.03) 100%);
    padding: 1.5rem 1.8rem;
    margin-left: -1.8rem;
    transition: all 0.4s ease;
}

.highlight:hover {
    background: linear-gradient(135deg, transparent 0%, rgba(212, 175, 55, 0.08) 100%);
    transform: translateX(10px);
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.highlight::before {
    content: '"';
    position: absolute;
    left: 10px;
    top: -10px;
    font-size: 4rem;
    color: var(--gold);
    opacity: 0.2;
    font-family: Georgia, serif;
}

.founder-description p {
    margin-bottom: 1.8rem;
    font-size: 1rem;
    color: var(--text-light);
    line-height: 2;
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    margin-top: 3.5rem;
}

.btn {
    padding: 18px 45px;
    border-radius: 0;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    font-size: 0.9rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--text-dark);
    color: var(--white);
    border: 2px solid var(--text-dark);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--text-dark);
    border: 2px solid var(--text-dark);
}

.btn-secondary:hover {
    background: var(--text-dark);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.btn-large {
    padding: 22px 60px;
    font-size: 1rem;
}

/* Features Section */
.features {
    padding: 100px 40px;
    background: linear-gradient(180deg, var(--light-bg) 0%, var(--white) 100%);
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 1px;
    background: var(--gold);
    animation: shimmer 3s ease-in-out infinite;
}

.features h2 {
    font-family: 'Noto Serif JP', serif;
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
    font-weight: 600;
    letter-spacing: 0.08em;
    position: relative;
    padding-bottom: 25px;
}

.features h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--gold);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.feature-card {
    background: var(--white);
    padding: 30px;
    border-radius: 0;
    text-align: left;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border-subtle);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
}

.feature-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--gold-dark));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.feature-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold));
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
}

.feature-card:hover::after {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 35px 90px rgba(0, 0, 0, 0.12);
    border-color: transparent;
    background: linear-gradient(135deg, var(--white) 0%, #fafafa 100%);
}

.feature-icon {
    font-size: 1.5rem;
    display: inline;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    filter: grayscale(0.3);
    margin-right: 0.5rem;
    vertical-align: middle;
}

.feature-card:hover .feature-icon {
    filter: grayscale(0) drop-shadow(0 2px 8px rgba(212, 175, 55, 0.4));
}

.feature-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
    font-weight: 600;
    letter-spacing: 0.02em;
    line-height: 1.5;
}

.feature-card p {
    color: var(--text-light);
    line-height: 2;
    font-size: 1rem;
}

/* Page Header */
.page-header {
    background: linear-gradient(180deg, #000000 0%, #1a1a1a 100%);
    padding: 200px 40px 140px;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background:
        radial-gradient(circle at 30% 40%, rgba(212, 175, 55, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(212, 175, 55, 0.04) 0%, transparent 50%);
    animation: slowRotate 30s linear infinite;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    animation: shimmer 3s ease-in-out infinite;
}

.page-header h1 {
    font-family: 'Cinzel', 'Noto Serif JP', serif;
    font-size: 4.5rem;
    margin-bottom: 2rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
    line-height: 1.3;
    background: linear-gradient(135deg, #ffffff 0%, #d4af37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1.2s ease-out, textShine 4s ease-in-out infinite;
    background-size: 200% auto;
}

.page-header p {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.2rem;
    opacity: 0.7;
    font-weight: 400;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}

.page-header p::before,
.page-header p::after {
    content: '—';
    margin: 0 20px;
    color: var(--gold);
}

/* About Page Styles */
.about-content {
    padding: 100px 40px;
    background: var(--white);
}

.about-hero-image {
    max-width: 500px;
    margin: 0 auto 80px;
    text-align: center;
    position: relative;
    animation: fadeInUp 1s ease-out;
}

.about-hero-image img {
    width: 100%;
    height: auto;
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.15);
    border: 1px solid var(--border-gold);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.about-hero-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    border: 2px solid var(--gold);
    opacity: 0;
    transition: all 0.6s ease;
    z-index: -1;
}

.about-hero-image:hover::before {
    opacity: 0.3;
    top: -30px;
    left: -30px;
    right: 30px;
    bottom: 30px;
}

.about-hero-image:hover img {
    transform: scale(1.02);
    box-shadow: 0 40px 120px rgba(0, 0, 0, 0.2);
}

.image-caption {
    margin-top: 35px;
    text-align: center;
}

.image-caption p {
    font-size: 1.2rem;
    color: var(--text-dark);
    font-weight: 500;
    letter-spacing: 0.15em;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

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


.timeline {
    max-width: 1100px;
    margin: 0 auto 120px;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    bottom: 60px;
    width: 2px;
    background: linear-gradient(180deg, var(--gold) 0%, rgba(212, 175, 55, 0.3) 100%);
}

.timeline-item {
    position: relative;
    margin-bottom: 80px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: calc(50% + 40px);
    margin-left: 0;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: calc(50% + 40px);
    margin-right: 0;
}

.timeline-item:hover .timeline-content {
    transform: translateY(-5px);
}

.timeline-marker {
    position: absolute;
    left: 50%;
    top: 80px;
    transform: translateX(-50%);
    width: 24px;
    height: 24px;
    background: var(--white);
    border: 4px solid var(--gold);
    border-radius: 50%;
    box-shadow:
        0 0 0 8px rgba(212, 175, 55, 0.15),
        0 0 20px rgba(212, 175, 55, 0.3);
    animation: pulse 3s ease-in-out infinite;
    z-index: 10;
    transition: all 0.4s ease;
}

.timeline-item:hover .timeline-marker {
    transform: translateX(-50%) scale(1.3);
    box-shadow:
        0 0 0 12px rgba(212, 175, 55, 0.2),
        0 0 30px rgba(212, 175, 55, 0.5);
}

@keyframes pulse {
    0%, 100% {
        box-shadow:
            0 0 0 8px rgba(212, 175, 55, 0.15),
            0 0 20px rgba(212, 175, 55, 0.3);
    }
    50% {
        box-shadow:
            0 0 0 14px rgba(212, 175, 55, 0.05),
            0 0 30px rgba(212, 175, 55, 0.5);
    }
}

.timeline-content {
    background: var(--white);
    border: 1px solid var(--border-subtle);
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gold);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-item:hover .timeline-content::before {
    transform: scaleY(1);
}

.timeline-item:hover .timeline-content {
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.1);
    border-color: rgba(212, 175, 55, 0.3);
}

.timeline-text h3 {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--text-dark);
    position: relative;
    padding-bottom: 12px;
}

.timeline-text h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--gold);
}

.timeline-text p {
    color: var(--text-light);
    line-height: 2;
    font-size: 1rem;
    margin-bottom: 0;
}

.timeline-image {
    position: relative;
    overflow: hidden;
    border: 2px solid var(--border-subtle);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.timeline-image:hover {
    border-color: var(--gold);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

.timeline-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-image:hover img {
    transform: scale(1.08);
}

.timeline-image-note {
    padding: 12px;
    font-size: 0.75rem;
    color: var(--text-light);
    font-style: italic;
    text-align: center;
    background: var(--light-bg);
    border-top: 1px solid var(--border-subtle);
}

@media (max-width: 768px) {
    .timeline {
        max-width: 100%;
        padding: 0;
    }

    .timeline::before {
        left: 20px;
        transform: none;
    }

    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 60px;
        margin-right: 0;
        padding: 30px 20px;
    }

    .timeline-marker {
        left: 12px;
        transform: translateX(0);
        top: 80px;
        width: 18px;
        height: 18px;
        border-width: 3px;
    }

    .timeline-item:hover .timeline-marker {
        transform: scale(1.2);
    }

    .timeline-text h3 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }

    .timeline-text p {
        font-size: 0.95rem;
        line-height: 1.9;
        margin-bottom: 20px;
    }

    .timeline-image {
        margin-top: 20px;
    }

    .timeline-image img {
        height: 220px;
    }

    .qualities {
        padding: 80px 20px 100px;
        margin: 0 -20px;
    }

    .qualities-list {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .qualities-list li {
        padding: 20px 18px 20px 45px;
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .qualities-list li::before {
        left: 18px;
        font-size: 0.9rem;
    }

    .intro-text {
        padding: 50px 30px;
        margin-bottom: 60px;
    }

    .intro-text h2 {
        font-size: 2rem;
    }

    .intro-text p {
        font-size: 1rem;
    }

    .contact-intro {
        padding: 50px 30px;
        margin-bottom: 60px;
    }

    .contact-intro h2 {
        font-size: 2rem;
    }

    .contact-intro p {
        font-size: 1rem;
    }

    .contact-form {
        padding: 30px 25px;
    }

    .contact-info {
        padding: 30px 25px;
    }

    .info-item {
        padding: 20px;
    }

    .faq-item {
        padding: 30px 25px;
    }

    .faq-item h3 {
        font-size: 1.2rem;
        padding-left: 40px;
    }

    .faq-item h3::before {
        font-size: 1.5rem;
    }

    .faq-item p {
        font-size: 0.95rem;
        padding-left: 40px;
    }

    .step {
        padding: 30px 20px;
    }

    .step-number {
        width: 70px;
        height: 70px;
        font-size: 1.6rem;
    }

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

    .step p {
        font-size: 0.95rem;
    }

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

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

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

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

    .about-hero-image {
        margin-bottom: 60px;
    }

    .teachings h2,
    .qualities h2 {
        font-size: 1.8rem;
        margin-bottom: 2.5rem;
        letter-spacing: 0.06em;
    }

    .teaching-card h3 {
        font-size: 1.05rem;
    }

    .teaching-card p {
        font-size: 0.95rem;
        line-height: 1.9;
    }
}

.teachings {
    margin-bottom: 100px;
}

.teachings h2 {
    font-family: 'Noto Serif JP', serif;
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3.5rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    position: relative;
    padding-bottom: 25px;
}

.teachings h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: var(--gold);
}

.teaching-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
}

.teaching-card {
    background: var(--light-bg);
    padding: 50px 40px;
    border: 1px solid var(--border-subtle);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
}

.teaching-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.teaching-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.teaching-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.08);
    background: var(--white);
}

.teaching-card h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    letter-spacing: 0.02em;
    line-height: 1.6;
}

.teaching-card p {
    color: var(--text-light);
    line-height: 2;
    font-size: 1rem;
}

.qualities h2 {
    font-family: 'Noto Serif JP', serif;
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3.5rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    position: relative;
    padding-bottom: 25px;
}

.qualities h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: var(--gold);
}

.qualities {
    background: linear-gradient(180deg, var(--light-bg) 0%, var(--white) 100%);
    padding: 100px 40px 120px;
    margin: 0 -40px;
    position: relative;
}

.qualities::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 1px;
    background: var(--gold);
}

.qualities-list {
    max-width: 800px;
    margin: 0 auto;
    list-style: none;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.qualities-list li {
    padding: 25px 30px 25px 55px;
    background: var(--white);
    border: 1px solid var(--border-subtle);
    font-size: 1rem;
    color: var(--text-light);
    letter-spacing: 0.02em;
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    line-height: 1.8;
    opacity: 0;
    transform: translateX(-30px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
}

.qualities-list li.visible {
    opacity: 1;
    transform: translateX(0);
}

.qualities-list li:nth-child(1) { transition-delay: 0.1s; }
.qualities-list li:nth-child(2) { transition-delay: 0.2s; }
.qualities-list li:nth-child(3) { transition-delay: 0.3s; }
.qualities-list li:nth-child(4) { transition-delay: 0.4s; }
.qualities-list li:nth-child(5) { transition-delay: 0.5s; }
.qualities-list li:nth-child(6) { transition-delay: 0.6s; }

.qualities-list li::before {
    content: '◆';
    position: absolute;
    left: 22px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold);
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.qualities-list li::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 0;
    background: linear-gradient(180deg, var(--gold), var(--gold-dark));
    transition: height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.qualities-list li:hover {
    transform: translateX(12px) translateY(-3px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    color: var(--text-dark);
    border-color: var(--gold);
    background: linear-gradient(135deg, var(--white) 0%, #fafafa 100%);
}

.qualities-list li:hover::before {
    transform: translateY(-50%) scale(1.3) rotate(360deg);
    color: var(--gold-dark);
}

.qualities-list li:hover::after {
    height: 100%;
}

/* Join Page Styles */
.join-content {
    padding: 100px 40px;
}

.intro-text {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 120px;
    padding: 80px 60px;
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--white) 100%);
    border: 2px solid var(--border-gold);
    position: relative;
    overflow: hidden;
}

.intro-text::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    animation: slowRotate 20s linear infinite;
}

.intro-text h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    position: relative;
    padding-bottom: 25px;
}

.intro-text h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.intro-text p {
    color: var(--text-light);
    line-height: 2;
    font-size: 1rem;
    position: relative;
    z-index: 1;
}

.membership-types {
    margin-bottom: 120px;
}

.membership-types h2 {
    font-family: 'Noto Serif JP', serif;
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3.5rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    position: relative;
    padding-bottom: 25px;
}

.membership-types h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--gold);
}

.membership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
}

.membership-card {
    background: var(--white);
    border: 1px solid var(--border-subtle);
    padding: 60px 45px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
}

.membership-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.membership-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--gold-dark));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.membership-card:hover {
    transform: translateY(-12px);
    border-color: var(--gold);
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.12);
}

.membership-card.featured {
    border-color: var(--gold);
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
    transform: scale(1.02);
}

.membership-card.featured:hover {
    transform: translateY(-12px) scale(1.02);
}

.membership-badge {
    display: inline-block;
    padding: 8px 20px;
    font-size: 0.7rem;
    margin-bottom: 25px;
    letter-spacing: 0.15em;
    background: var(--text-dark);
    color: var(--white);
    text-transform: uppercase;
    font-weight: 600;
}

.membership-badge.special {
    background: var(--gold);
    color: var(--text-dark);
    animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
    }
    50% {
        box-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
    }
}

.membership-badge.premium {
    background: var(--text-dark);
    color: var(--gold);
}

.membership-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.price {
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 300;
    color: var(--text-dark);
}

.benefits {
    list-style: none;
    margin-bottom: 2.5rem;
}

.benefits li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-subtle);
    color: var(--text-light);
    font-size: 1rem;
    position: relative;
    padding-left: 25px;
    transition: padding-left 0.3s ease;
    line-height: 1.8;
}

.benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
}

.benefits li:hover {
    padding-left: 30px;
}

.benefits li:first-child {
    border-top: 1px solid var(--border-subtle);
}

.process {
    margin-bottom: 120px;
}

.process h2 {
    font-family: 'Noto Serif JP', serif;
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3.5rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    position: relative;
    padding-bottom: 25px;
}

.process h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--gold);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
}

.step {
    text-align: center;
    transition: all 0.4s ease;
    padding: 40px 30px;
    background: var(--white);
    border: 1px solid var(--border-subtle);
    position: relative;
    overflow: hidden;
}

.step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--gold-dark));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

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

.step:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.1);
    border-color: var(--gold);
}

.step-number {
    width: 80px;
    height: 80px;
    border: 3px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 2rem;
    font-weight: 300;
    color: var(--gold);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.3);
}

.step:hover .step-number {
    background: var(--gold);
    color: var(--white);
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 0 0 10px rgba(212, 175, 55, 0.1);
}

.step h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
    letter-spacing: 0.03em;
}

.step p {
    color: var(--text-light);
    line-height: 2;
    font-size: 1rem;
}

.testimonials {
    margin-bottom: 120px;
}

.testimonials h2 {
    font-family: 'Noto Serif JP', serif;
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3.5rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    position: relative;
    padding-bottom: 25px;
}

.testimonials h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--gold);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
}

.testimonial-card {
    background: var(--light-bg);
    padding: 50px 40px;
    border: 1px solid var(--border-subtle);
    position: relative;
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
}

.testimonial-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 5rem;
    color: var(--gold);
    opacity: 0.15;
    font-family: Georgia, serif;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    background: var(--white);
}

.testimonial-text {
    color: var(--text-dark);
    line-height: 2;
    margin-bottom: 2rem;
    font-size: 1rem;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    color: var(--text-light);
    font-size: 0.9rem;
    text-align: right;
    font-style: italic;
}

.cta-section {
    text-align: center;
    padding: 100px 60px;
    background: var(--light-bg);
    border: 2px solid var(--gold);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.05), transparent);
    animation: slideRight 3s ease-in-out infinite;
}

@keyframes slideRight {
    0% { left: -100%; }
    100% { left: 100%; }
}

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    position: relative;
    z-index: 1;
}

.cta-section p {
    color: var(--text-light);
    margin-bottom: 2.5rem;
    font-size: 1rem;
    line-height: 2;
    position: relative;
    z-index: 1;
}

/* Contact Page Styles */
.contact-content {
    padding: 100px 40px;
}

.contact-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 100px;
    padding: 80px 60px;
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--white) 100%);
    border: 2px solid var(--border-gold);
    position: relative;
    overflow: hidden;
}

.contact-intro::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    animation: slowRotate 20s linear infinite;
}

.contact-intro h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    position: relative;
    padding-bottom: 25px;
    z-index: 1;
}

.contact-intro h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.contact-intro p {
    color: var(--text-light);
    line-height: 2;
    font-size: 1rem;
    position: relative;
    z-index: 1;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 80px;
    margin-bottom: 120px;
}

.contact-form {
    max-width: 600px;
    background: var(--white);
    padding: 50px 40px;
    border: 1px solid var(--border-subtle);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

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

.form-group label {
    display: block;
    margin-bottom: 12px;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-dark);
}

.required {
    color: var(--gold);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 16px 18px;
    border: 2px solid var(--border-subtle);
    border-radius: 0;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.btn-submit {
    cursor: pointer;
    width: 100%;
}

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

.contact-info h3 {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    position: relative;
    padding-bottom: 15px;
}

.contact-info h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--gold);
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
    padding: 25px;
    background: var(--white);
    border: 1px solid var(--border-subtle);
    transition: all 0.3s ease;
}

.info-item:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-color: var(--gold);
}

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

.info-icon {
    font-size: 1.8rem;
    opacity: 0.6;
    min-width: 30px;
}

.info-item h4 {
    font-size: 1.05rem;
    margin-bottom: 8px;
    font-weight: 600;
    letter-spacing: 0.03em;
}

.info-item p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.8;
}

.info-note {
    font-size: 0.85rem;
    margin-top: 5px;
    opacity: 0.8;
}

.faq-section h2 {
    font-family: 'Noto Serif JP', serif;
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3.5rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    position: relative;
    padding-bottom: 25px;
}

.faq-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--gold);
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 30px;
    padding: 40px 45px;
    background: var(--white);
    border: 1px solid var(--border-subtle);
    transition: all 0.4s ease;
    position: relative;
}

.faq-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 0;
    background: var(--gold);
    transition: height 0.4s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    border-color: var(--gold);
}

.faq-item:hover::before {
    height: 100%;
}

.faq-item h3 {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    position: relative;
    padding-left: 50px;
    color: var(--text-dark);
    line-height: 1.6;
}

.faq-item h3::before {
    content: 'Q';
    position: absolute;
    left: 0;
    top: -5px;
    color: var(--gold);
    font-weight: 700;
    font-size: 1.8rem;
    font-family: 'Cinzel', serif;
}

.faq-item p {
    color: var(--text-light);
    line-height: 2;
    font-size: 1rem;
    padding-left: 50px;
}

/* Footer */
.footer {
    background: linear-gradient(180deg, #0a0a0a 0%, #000000 100%);
    color: rgba(255, 255, 255, 0.5);
    padding: 80px 40px 50px;
    text-align: center;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 1px;
    background: var(--gold);
}

.footer p {
    margin: 10px 0;
    font-size: 0.9rem;
    letter-spacing: 0.08em;
}

.disclaimer {
    font-size: 0.8rem;
    opacity: 0.3;
    margin-top: 30px;
    letter-spacing: 0.1em;
}

/* Responsive */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }

    .hero {
        padding: 160px 30px 120px;
    }

    .hero h1 {
        font-size: 3.5rem;
    }

    .founder-section,
    .features,
    .about-content,
    .join-content,
    .contact-content {
        padding: 100px 30px;
    }
}

@media (max-width: 768px) {
    body {
        font-size: 15px;
    }

    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 320px;
        height: 100vh;
        background: linear-gradient(180deg, rgba(10, 10, 10, 0.98) 0%, rgba(0, 0, 0, 0.98) 100%);
        backdrop-filter: blur(20px);
        flex-direction: column;
        gap: 0;
        padding: 100px 30px 30px;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
        border-left: 1px solid rgba(212, 175, 55, 0.2);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-links a {
        display: block;
        padding: 22px 15px;
        font-size: 1.05rem;
        border-bottom: none;
    }

    .nav-links a::before {
        left: 0;
        width: 0;
        height: 4px;
        top: auto;
        bottom: 0;
        transform: none;
        transition: width 0.3s ease;
    }

    .nav-links a:hover::before,
    .nav-links a.active::before {
        width: 100%;
        height: 3px;
    }

    .nav-links a:hover,
    .nav-links a.active {
        padding: 22px 15px;
    }

    .logo-text {
        font-size: 1.1rem;
        letter-spacing: 0.12em;
    }

    .logo-image {
        height: 38px;
    }

    .hero h1 {
        font-size: 2.2rem;
        letter-spacing: 0.08em;
        line-height: 1.4;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .subtitle {
        font-size: 0.95rem;
        letter-spacing: 0.15em;
    }

    .subtitle::before,
    .subtitle::after {
        margin: 0 10px;
    }

    .hero {
        padding: 120px 20px 80px;
    }

    .founder-section,
    .features {
        padding: 70px 20px;
    }

    .about-content,
    .join-content,
    .contact-content {
        padding: 60px 20px;
    }

    .founder-section .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .founder-description h2 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
        padding-bottom: 15px;
    }

    .founder-description h2::after {
        width: 50px;
    }

    .highlight {
        font-size: 1.05rem;
        padding-left: 1.3rem;
        border-left-width: 2px;
        margin-bottom: 1.5rem;
    }

    .highlight::before {
        font-size: 2.5rem;
        left: 8px;
    }

    .founder-description p {
        font-size: 0.95rem;
        margin-bottom: 1.3rem;
        line-height: 1.9;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .btn {
        width: 100%;
        text-align: center;
        padding: 16px 35px;
        font-size: 0.85rem;
    }

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

    .page-header {
        padding: 120px 20px 80px;
    }

    .page-header h1 {
        font-size: 2.2rem;
        letter-spacing: 0.08em;
        line-height: 1.4;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .page-header p {
        font-size: 0.95rem;
        letter-spacing: 0.15em;
    }

    .page-header p::before,
    .page-header p::after {
        margin: 0 10px;
    }

    .container {
        padding: 0 20px;
    }

    .features h2,
    .teachings h2,
    .membership-types h2,
    .process h2,
    .testimonials h2,
    .faq-section h2 {
        font-size: 1.8rem;
        margin-bottom: 2.5rem;
        padding-bottom: 20px;
    }

    .features h2::after,
    .teachings h2::after,
    .qualities h2::after {
        width: 50px;
    }

    .feature-icon {
        font-size: 2.2rem;
    }

    .feature-card h3,
    .teaching-card h3 {
        font-size: 1.05rem;
    }

    .feature-card p,
    .teaching-card p {
        font-size: 0.95rem;
        line-height: 1.9;
    }
}
