/* ============================================
   Tokyo Tower Landing Page - Master Stylesheet
   ============================================ */

/* CSS Variables */
:root {
    --color-primary: #DC2626;
    --color-primary-dark: #B91C1C;
    --color-secondary: #1F2937;
    --color-accent: #EF4444;
    --color-dark: #111827;
    --color-dark-bg: #1F2937;
    --color-darker-bg: #111518;
    --color-light-bg: #F9FAFB;
    --color-text: #1F2937;
    --color-text-light: #6B7280;
    --color-text-lighter: #9CA3AF;
    --color-border: #E5E7EB;
    
    --font-primary: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-secondary: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1), 0 2px 4px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 15px rgba(0,0,0,0.15), 0 4px 6px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 25px rgba(0,0,0,0.2), 0 10px 10px rgba(0,0,0,0.08);
    
    --radius-sm: 2px;
    --radius-md: 4px;
    --radius-lg: 6px;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    color: var(--color-text);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background: #FFFFFF;
    font-size: 16px;
    letter-spacing: -0.01em;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    font-weight: 700;
    letter-spacing: -0.02em;
}

h1 {
    letter-spacing: -0.04em;
}

.nav-brand a {
    font-family: var(--font-secondary);
}

.btn {
    font-family: var(--font-primary);
    font-weight: 600;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

ul {
    list-style: none;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Navigation */
.nav-main {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-border);
    z-index: 1000;
    transition: var(--transition);
}

.nav-main .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem var(--spacing-md);
}

.nav-brand a {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-dark);
    letter-spacing: -0.02em;
    transition: var(--transition);
}

.nav-brand a:hover {
    color: var(--color-primary);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--color-text);
    transition: var(--transition);
    border-radius: 2px;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    font-weight: 500;
    font-size: 0.9375rem;
    padding: 0.5rem 0;
    color: var(--color-text-light);
    position: relative;
    transition: var(--transition);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: width 0.3s ease;
}

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

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

.nav-menu a.nav-cta {
    background: var(--color-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
}

.nav-menu a.nav-cta:hover {
    background: #B91C1C;
    color: white;
    transform: translateY(-2px);
}

.nav-menu a.nav-cta::after {
    display: none;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 72px;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, 
        rgba(17, 24, 39, 0.4) 0%, 
        rgba(17, 24, 39, 0.7) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 950px;
    padding: 0 var(--spacing-md);
}

.hero-content h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.04em;
    text-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
    margin-bottom: var(--spacing-lg);
    opacity: 0.92;
    font-weight: 400;
    letter-spacing: -0.01em;
    line-height: 1.5;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: var(--spacing-lg);
    font-size: 0.9375rem;
}

.hero-features > div,
.hero-features > span {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-weight: 500;
    transition: var(--transition);
}

.hero-features > div:hover,
.hero-features > span:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2.5rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.25rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    letter-spacing: -0.01em;
    text-transform: none;
}

.btn-primary {
    background: var(--color-primary);
    color: white;
    box-shadow: 0 2px 8px rgba(220, 38, 38, 0.25);
}

.btn-primary:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.35);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: var(--spacing-md);
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: white;
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    border-left: 2px solid white;
    border-bottom: 2px solid white;
    transform: rotate(-45deg);
    margin: var(--spacing-xs) auto;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

/* Trust Signals */
.trust-signals {
    background: white;
    padding: var(--spacing-xl) 0;
    border-bottom: 1px solid var(--color-border);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--spacing-lg);
    text-align: center;
}

.trust-grid > div {
    padding: var(--spacing-md);
}

.trust-grid h3 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--color-dark);
    margin-bottom: 0.5rem;
    letter-spacing: -0.05em;
    font-family: var(--font-secondary);
}

.trust-grid p {
    color: var(--color-text-light);
    font-size: 0.9375rem;
    font-weight: 500;
    letter-spacing: -0.01em;
}

/* Sections */
.section {
    padding: 5rem 0;
}

.section h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1rem;
    color: var(--color-dark);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1.15;
}

.section h3 {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    margin-bottom: 1rem;
    color: var(--color-dark);
    font-weight: 700;
    letter-spacing: -0.03em;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-intro {
    font-size: 1.125rem;
    color: var(--color-text-light);
    line-height: 1.7;
    margin-top: 1rem;
}

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

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

.bg-dark h2, 
.bg-dark h3, 
.bg-dark h4,
.bg-dark p,
.bg-dark li {
    color: white;
}

.bg-dark .section-intro {
    color: rgba(255, 255, 255, 0.8);
}

.light {
    color: white;
}

/* Grid Layouts */
.grid-2col {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    align-items: start;
}

.grid-3col {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
}

.grid-4col {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
}

/* Cards */
.card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    transition: var(--transition);
    height: 100%;
}

.card:hover {
    border-color: var(--color-text-lighter);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.card img {
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
    width: 100%;
}

.card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.card p {
    color: var(--color-text-light);
    line-height: 1.7;
}

.card .icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.reason-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    transition: var(--transition);
}

.reason-card:hover {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-lg);
}

.reason-card .reason-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.reason-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.reason-card p {
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.reason-card figure {
    margin: 0;
}

.reason-card img {
    border-radius: var(--radius-md);
    width: 100%;
}

/* Info Box */
.info-box {
    background: var(--color-light-bg);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    margin-top: var(--spacing-md);
    border-left: 4px solid var(--color-primary);
}

.info-box h4 {
    margin-bottom: var(--spacing-sm);
    color: var(--color-primary);
}

/* Key Facts */
.key-facts {
    background: var(--color-light-bg);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    margin-top: var(--spacing-md);
}

.key-facts ul {
    list-style: none;
}

.key-facts li {
    padding: var(--spacing-xs) 0;
    border-bottom: 1px solid var(--color-border);
}

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

/* Lead Text */
.lead {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
}

/* Practical Cards */
.practical-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.practical-card {
    background: white;
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.practical-card h3 {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    margin-bottom: var(--spacing-md);
    color: var(--color-primary);
}

.practical-card .icon {
    font-size: 1.5rem;
}

/* Price Table */
.price-table {
    width: 100%;
    border-collapse: collapse;
    margin: var(--spacing-sm) 0;
}

.price-table td {
    padding: var(--spacing-xs) var(--spacing-sm);
    border-bottom: 1px solid var(--color-border);
}

.price-table td:last-child {
    text-align: right;
    font-weight: 600;
    color: var(--color-primary);
}

/* Station List */
.station-list {
    list-style: none;
}

.station-list li {
    display: flex;
    justify-content: space-between;
    padding: var(--spacing-xs) 0;
    border-bottom: 1px solid var(--color-border);
}

.station-list .distance {
    color: var(--color-text-light);
    font-size: 0.9rem;
}

/* Time Guide */
.time-guide {
    margin-top: var(--spacing-lg);
}

.time-card {
    background: white;
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    border: 2px solid var(--color-border);
    transition: var(--transition);
    position: relative;
}

.time-card.highlight {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-md);
}

.time-card h4 {
    margin-bottom: var(--spacing-sm);
}

.time-card .badge {
    position: absolute;
    top: var(--spacing-sm);
    right: var(--spacing-sm);
    background: var(--color-primary);
    color: white;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Decks Section */
.decks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.deck-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    position: relative;
}

.deck-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.deck-card.premium {
    border-color: rgba(220, 38, 38, 0.3);
}

.deck-card.premium:hover {
    border-color: rgba(220, 38, 38, 0.5);
}

.deck-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.deck-content {
    padding: 2.5rem;
}

.deck-card .badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.025em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.deck-card .badge-premium {
    background: linear-gradient(135deg, #DC2626, #B91C1C);
    border-color: transparent;
}

.deck-card h3 {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
    letter-spacing: -0.03em;
}

.deck-card .height {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    margin-bottom: 2rem;
    letter-spacing: 0.025em;
    text-transform: uppercase;
}

.deck-card .feature-list {
    list-style: none;
    margin: 0 0 2.5rem 0;
    padding: 0;
}

.deck-card .feature-list li {
    padding: 1rem 0;
    padding-left: 0;
    position: relative;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.9375rem;
}

.deck-card .feature-list li:last-child {
    border-bottom: none;
}

.deck-card .price {
    margin-top: auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    text-align: center;
}

.deck-card .price-amount {
    display: block;
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.75rem;
    letter-spacing: -0.04em;
    font-family: var(--font-secondary);
}

.deck-card .price-label {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}

/* Timeline */
.timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-md);
    margin: var(--spacing-lg) 0;
}

.timeline > div {
    background: var(--color-light-bg);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--color-primary);
}

.timeline strong {
    display: block;
    font-size: 1.3rem;
    color: var(--color-primary);
    margin-bottom: var(--spacing-xs);
}

/* Architect Profile */
.architect {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: var(--spacing-md);
    align-items: start;
    margin: var(--spacing-lg) 0;
    background: var(--color-light-bg);
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
}

.architect img {
    border-radius: var(--radius-md);
}

/* Photo Spots */
.photo-spots {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
}

.photo-spots article {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.photo-spots article:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.photo-spots img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.photo-spots article > :not(img) {
    padding: var(--spacing-md);
}

.photo-spots h3 {
    margin-bottom: var(--spacing-sm);
}

.photo-spots p {
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Distance Label */
.distance {
    display: inline-block;
    background: var(--color-primary);
    color: white;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.85rem;
    margin-bottom: var(--spacing-sm);
}

/* Teaser Cards (Homepage) */
.teaser-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.teaser-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--color-border);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.teaser-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: var(--color-primary);
}

.teaser-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.teaser-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.teaser-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.teaser-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-dark);
    line-height: 1.3;
}

.teaser-content p {
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex: 1;
}

.continue-reading {
    color: var(--color-primary);
    font-weight: 600;
    text-decoration: none;
    font-size: 1rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.continue-reading:hover {
    color: #B91C1C;
    transform: translateX(4px);
}

/* Article Pages */
.article-hero {
    position: relative;
    height: 400px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    margin-top: 60px;
}

.article-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.article-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.article-hero-content {
    position: relative;
    z-index: 2;
    padding: 3rem 0;
    color: white;
}

.article-hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.article-meta {
    font-size: 1.125rem;
    opacity: 0.95;
    font-weight: 500;
}

.article-content {
    padding: 4rem 0;
}

.article-body {
    max-width: 800px;
}

.article-sidebar {
    max-width: 300px;
    margin-left: auto;
}

.article-content .container {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 4rem;
}

@media (max-width: 1024px) {
    .article-content .container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .article-sidebar {
        max-width: 100%;
    }
}

.content-section {
    margin-bottom: 3rem;
}

.content-section h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--color-dark);
}

.content-section h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 2rem 0 1rem;
    color: var(--color-dark);
}

.content-section p {
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--color-text-light);
}

.content-section ul, .content-section ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
    line-height: 1.8;
    color: var(--color-text-light);
}

.content-section li {
    margin-bottom: 0.75rem;
}

.content-image {
    width: 100%;
    border-radius: var(--radius-lg);
    margin: 2rem 0;
}

.highlight-box {
    background: var(--color-light-bg);
    border-left: 4px solid var(--color-primary);
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    border-radius: var(--radius-md);
}

.highlight-box h3 {
    margin-top: 0;
}

.article-cta {
    background: var(--color-primary);
    color: white;
    padding: 3rem;
    border-radius: var(--radius-lg);
    text-align: center;
    margin: 4rem 0;
}

.article-cta h3 {
    color: white;
    margin-bottom: 1rem;
}

.article-cta p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
}

.sidebar-widget {
    background: white;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    margin-bottom: 2rem;
}

.sidebar-widget h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-dark);
}

.fact-list {
    list-style: none;
    padding: 0;
}

.fact-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--color-border);
}

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

.related-links {
    list-style: none;
    padding: 0;
}

.related-links li {
    margin-bottom: 0.75rem;
}

.related-links a {
    color: var(--color-primary);
    text-decoration: none;
    transition: var(--transition);
}

.related-links a:hover {
    color: #B91C1C;
    text-decoration: underline;
}

/* Navigation active state */
.nav-menu a.active {
    color: var(--color-primary);
    font-weight: 600;
}

/* Events Section */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.event-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--color-border);
    transition: var(--transition);
}

.event-card:hover {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.event-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}

.event-content {
    padding: 2rem;
}

.event-badge {
    display: inline-block;
    background: var(--color-primary);
    color: white;
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-md);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.event-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--color-dark);
}

.event-date {
    font-size: 0.9375rem;
    color: var(--color-text-light);
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

.event-card p:last-child {
    color: var(--color-text-light);
    line-height: 1.7;
}

/* Accessibility Section */
.accessibility-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.accessibility-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--color-border);
    transition: var(--transition);
}

.accessibility-card:hover {
    border-color: var(--color-text-lighter);
    box-shadow: var(--shadow-md);
}

.accessibility-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.accessibility-content {
    padding: 2rem;
}

.accessibility-content .icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.accessibility-card h3 {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-dark);
}

.accessibility-card p {
    color: var(--color-text-light);
    line-height: 1.7;
    font-size: 0.9375rem;
}

/* Video Section */
.video-section {
    padding: 6rem 0;
    text-align: center;
}

.video-section h2 {
    margin-bottom: 1rem;
}

.video-section .section-intro {
    margin-bottom: 3rem;
}

.video-container {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    cursor: pointer;
}

.video-thumbnail {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: #000;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.video-thumbnail:hover img {
    transform: scale(1.05);
}

.video-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

.video-thumbnail:hover .video-play-overlay {
    background: rgba(0, 0, 0, 0.5);
}

.video-play-btn {
    background: none;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease;
    padding: 0;
}

.video-play-btn:hover {
    transform: scale(1.15);
}

.video-play-btn svg {
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
}

/* Video Modal */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 3rem;
}

.video-modal.active {
    display: flex;
}

.video-modal-content {
    width: 90vw;
    max-width: 1400px;
    position: relative;
}

#videoFrame {
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    position: relative;
    height: 0;
}

.video-modal iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 8px;
}

.video-modal-close {
    position: absolute;
    top: -60px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 3rem;
    cursor: pointer;
    padding: 0.5rem 1rem;
    transition: var(--transition);
    line-height: 1;
    font-weight: 300;
    z-index: 10000;
}

.video-modal-close:hover {
    color: var(--color-primary);
    transform: scale(1.1);
}

@media (max-width: 1024px) {
    .video-modal {
        padding: 2rem;
    }
    
    .video-modal-content {
        width: 95vw;
    }
    
    .video-modal-close {
        top: -50px;
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .video-modal {
        padding: 1rem;
    }
    
    .video-modal-content {
        width: 100vw;
    }
    
    .video-modal-close {
        top: -45px;
        right: 1rem;
        font-size: 2rem;
    }
}

/* FAQ */
.faq-header {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-header h2 {
    font-size: clamp(2rem, 5vw, 2.5rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    color: var(--color-dark);
}

.faq-header h2 .highlight {
    color: var(--color-primary);
}

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

.faq-list details {
    background: white;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-list details:hover {
    border-color: var(--color-text-lighter);
}

.faq-list details[open] {
    border-color: var(--color-primary);
    box-shadow: 0 2px 8px rgba(220, 38, 38, 0.1);
}

.faq-list summary {
    padding: 1.25rem 3.5rem 1.25rem 1.5rem;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    color: var(--color-dark);
    cursor: pointer;
    user-select: none;
    list-style: none;
    position: relative;
    transition: all 0.3s ease;
    letter-spacing: 0.025em;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary::after {
    content: '›';
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    font-size: 1.75rem;
    font-weight: 300;
    color: var(--color-text-light);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-list details[open] summary::after {
    transform: translateY(-50%) rotate(-90deg);
    color: var(--color-primary);
}

.faq-list details[open] summary {
    color: var(--color-primary);
    border-bottom: 1px solid var(--color-border);
}

.faq-list summary:hover {
    background: var(--color-light-bg);
}

.faq-list p {
    padding: 1.5rem;
    margin: 0;
    color: var(--color-text-light);
    line-height: 1.7;
    font-size: 0.9375rem;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 6rem 0;
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
}

.cta-section h2 {
    margin-bottom: 1rem;
    font-size: clamp(2rem, 4vw, 2.75rem);
}

.cta-section p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Experience CTA Section */
.experience-cta {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(20, 20, 20, 0.98) 100%),
                url('../images/tokyo-tower-night-illuminated.webp') center/cover no-repeat;
    background-blend-mode: overlay;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.experience-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 50%, rgba(220, 38, 38, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.experience-content {
    max-width: 800px;
    position: relative;
    z-index: 2;
}

.experience-title {
    font-family: var(--font-secondary);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    color: white;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.highlight-yellow {
    color: #FCD34D;
    display: inline-block;
    text-shadow: 0 0 40px rgba(252, 211, 77, 0.3);
}

.experience-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.btn-experience {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: #DC2626;
    color: white;
    padding: 1rem 2rem;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 1.125rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 20px rgba(220, 38, 38, 0.4);
}

.btn-experience:hover {
    background: #B91C1C;
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(220, 38, 38, 0.6);
}

.btn-experience svg {
    transition: transform 0.3s ease;
}

.btn-experience:hover svg {
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .experience-cta {
        padding: 4rem 0;
    }
    
    .experience-title {
        font-size: 2.5rem;
    }
    
    .experience-description {
        font-size: 1rem;
    }
    
    .btn-experience {
        width: 100%;
        justify-content: center;
    }
}

/* Booking Section */
.booking-section {
    background: white;
    padding: 4rem 0;
    border-top: 1px solid var(--color-border);
}

.booking-header {
    text-align: center;
    margin-bottom: 3rem;
}

.booking-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--color-dark);
}

.booking-header p {
    font-size: 1.125rem;
    color: var(--color-text-light);
}

.gyg-widget-container {
    max-width: 1000px;
    margin: 0 auto;
    background: var(--color-light-bg);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    position: relative;
}

.gyg-widget-container > div,
.gyg-widget-container > a {
    min-height: 400px;
    position: relative;
}

/* Book Tickets Label Overlay on Widget Image */
.gyg-widget-container::after {
    content: 'BOOK TICKETS';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #DC2626;
    color: white;
    padding: 0.66rem 1.65rem;
    border-radius: var(--radius-md);
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    box-shadow: 0 8px 30px rgba(220, 38, 38, 0.5);
    pointer-events: none;
    z-index: 10;
    animation: pulse-glow 2s ease-in-out infinite;
    font-family: var(--font-secondary);
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 8px 30px rgba(220, 38, 38, 0.5);
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        box-shadow: 0 8px 40px rgba(220, 38, 38, 0.8);
        transform: translate(-50%, -50%) scale(1.05);
    }
}

/* Hover effect for widget container */
.gyg-widget-container:hover::after {
    animation: none;
    box-shadow: 0 10px 50px rgba(220, 38, 38, 0.7);
    transform: translate(-50%, -50%) scale(1.08);
}

@media (max-width: 768px) {
    .gyg-widget-container {
        padding: 1rem;
    }
    
    .gyg-widget-container::after {
        font-size: 0.66rem;
        padding: 0.5rem 1rem;
    }
    
    .booking-header h2 {
        font-size: 2rem;
    }
}

/* Reviews Section */
.reviews-section {
    background: var(--color-light-bg);
    padding: 5rem 0;
}

.reviews-header {
    text-align: center;
    margin-bottom: 3rem;
}

.reviews-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.reviews-stats {
    display: flex;
    justify-content: center;
    margin-top: 1.5rem;
}

.rating-summary {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: white;
    padding: 1.5rem 3rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.rating-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--color-primary);
    font-family: var(--font-secondary);
}

.rating-stars {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.stars {
    font-size: 1.5rem;
    color: #fbbf24;
    letter-spacing: 0.125rem;
}

.rating-text {
    font-size: 0.875rem;
    color: var(--color-text-light);
    margin-top: 0.25rem;
}

.reviews-link {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.reviews-link:hover {
    color: #B91C1C;
    border-bottom-color: #B91C1C;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.review-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 1px solid var(--color-border);
    transition: var(--transition);
}

.review-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--color-text-lighter);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.review-author strong {
    display: block;
    font-size: 1.125rem;
    color: var(--color-dark);
    margin-bottom: 0.25rem;
}

.review-country {
    font-size: 0.875rem;
    color: var(--color-text-light);
}

.review-rating {
    color: #fbbf24;
    font-size: 1.125rem;
    letter-spacing: 0.0625rem;
}

.review-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-text-light);
    margin-bottom: 1rem;
    font-style: italic;
}

.review-date {
    font-size: 0.8125rem;
    color: var(--color-text-lighter);
}

.review-photos {
    margin: 1rem 0;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.review-photos img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.review-card:hover .review-photos img {
    transform: scale(1.03);
}

.reviews-actions {
    text-align: center;
    margin-top: 3rem;
}

.reviews-actions .btn {
    min-width: 200px;
}

.reviews-disclaimer {
    margin-top: 1rem;
    font-size: 0.875rem;
    color: var(--color-text-lighter);
    font-style: italic;
}

.contact-hours {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: rgba(255, 255, 255, 0.8);
    padding: 4rem 0 2rem;
    border-top: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand h3 {
    font-size: 1.75rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.footer-tagline {
    line-height: 1.7;
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer h4 {
    margin-bottom: 1.25rem;
    color: white;
    font-weight: 600;
    font-size: 1.125rem;
    letter-spacing: -0.01em;
}

.footer-contact p {
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
}

.contact-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

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

.footer ul {
    list-style: none;
}

.footer li {
    margin-bottom: 0.75rem;
}

.footer a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.5);
    font-size: 0.9375rem;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 60px;
        left: -100%;
        width: 80%;
        height: calc(100vh - 60px);
        background: white;
        flex-direction: column;
        padding: var(--spacing-md);
        box-shadow: var(--shadow-lg);
        transition: var(--transition);
        align-items: flex-start;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero {
        height: 80vh;
        min-height: 500px;
    }
    
    .hero-features {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
    
    .grid-2col,
    .grid-3col,
    .grid-4col {
        grid-template-columns: 1fr;
    }
    
    .architect {
        grid-template-columns: 1fr;
    }
    
    .section {
        padding: var(--spacing-lg) 0;
    }
    
    .rating-summary {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
    }
    
    .rating-stars {
        align-items: center;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    :root {
        --spacing-lg: 3rem;
        --spacing-xl: 4rem;
    }
    
    .container {
        padding: 0 var(--spacing-sm);
    }
}

/* Print Styles */
@media print {
    .nav-main,
    .hero,
    .cta-section,
    .footer {
        display: none;
    }
}
