/* ============================================
   美姿勢サロン Re:Posture 共通CSS
   Color Palette: 
   - Primary Navy: #1a2744
   - Gold Accent: #b5985a
   - Light Gray BG: #f5f4f0
   - White: #ffffff
   - Text Dark: #2a2a2a
   - Text Light: #6b6b6b
   ============================================ */

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

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

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

body {
    font-family: 'Noto Sans JP', sans-serif;
    color: #2a2a2a;
    background-color: #ffffff;
    line-height: 1.8;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Noto Serif JP', serif;
    font-weight: 400;
    line-height: 1.4;
}

.en-serif {
    font-family: 'Cormorant Garamond', serif;
}

/* Colors */
:root {
    --navy: #1a2744;
    --navy-light: #2a3a5c;
    --gold: #b5985a;
    --gold-light: #d4bc82;
    --bg-cream: #f5f4f0;
    --bg-white: #ffffff;
    --text-dark: #2a2a2a;
    --text-light: #6b6b6b;
    --text-muted: #999999;
    --border-light: #e8e6e0;
}

/* ============================================
   Navigation
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.navbar-transparent {
    background: rgba(26, 39, 68, 0.85);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.navbar-transparent .nav-links a:not(.nav-cta) {
    color: rgba(255,255,255,0.85);
}

.navbar-transparent .hamburger span {
    background: #fff;
}

.navbar-solid {
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid var(--border-light);
}

.navbar-solid .nav-links a:not(.nav-cta) {
    color: var(--navy);
}

.navbar-solid .hamburger span {
    background: var(--navy);
}

.nav-logo-home {
    text-decoration: none;
    display: flex;
    align-items: center;
    min-width: 100px;
}

.navbar.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav-logo img {
    height: 40px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--navy);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    transition: color 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s;
}

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

.nav-links a:hover {
    color: var(--gold);
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--navy);
    color: #fff !important;
    padding: 10px 24px;
    border-radius: 4px;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    transition: background 0.3s;
}

.nav-cta:hover {
    background: var(--navy-light) !important;
}

.nav-cta::after {
    display: none !important;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--navy);
    transition: all 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Nav */
.mobile-nav {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.98);
    z-index: 999;
    padding: 40px 24px;
}

.mobile-nav.active {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.mobile-nav a {
    text-decoration: none;
    color: var(--navy);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.1em;
}

/* ============================================
   Hero Section - Pattern A (Logo)
   ============================================ */
.hero-a {
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: linear-gradient(135deg, #f8f7f4 0%, #edecea 50%, #f5f4f0 100%);
    position: relative;
    overflow: hidden;
}

.hero-a::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 80%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(181, 152, 90, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.hero-a .hero-logo {
    width: 220px;
    height: auto;
    margin-bottom: 32px;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-a .hero-tagline {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--navy);
    letter-spacing: 0.2em;
    margin-bottom: 16px;
    animation: fadeInUp 1s ease 0.5s both;
}

.hero-a .hero-subtitle {
    font-size: 0.85rem;
    color: var(--text-light);
    letter-spacing: 0.15em;
    animation: fadeInUp 1s ease 0.8s both;
}

.hero-a .hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: fadeInUp 1s ease 1.2s both;
}

.hero-scroll {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.hero-scroll .scroll-line {
    width: 1px;
    height: 40px;
    background: var(--gold);
    animation: scrollLine 2s ease infinite;
}

/* ============================================
   Hero Section - Pattern B (Slideshow)
   ============================================ */
.hero-b {
    height: 100vh;
    min-height: 600px;
    position: relative;
    overflow: hidden;
}

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

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.2s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(26, 39, 68, 0.3) 0%,
        rgba(26, 39, 68, 0.5) 50%,
        rgba(26, 39, 68, 0.7) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.hero-overlay .hero-logo {
    width: 180px;
    height: auto;
    margin-bottom: 24px;
    filter: brightness(10);
    animation: fadeInUp 1s ease 0.3s both;
}

.hero-overlay .hero-tagline {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.2rem;
    font-weight: 300;
    color: #ffffff;
    letter-spacing: 0.2em;
    margin-bottom: 12px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
    animation: fadeInUp 1s ease 0.6s both;
}

.hero-overlay .hero-subtitle {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.8);
    letter-spacing: 0.15em;
    animation: fadeInUp 1s ease 0.9s both;
}

.hero-b .hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    color: rgba(255,255,255,0.7);
    animation: fadeInUp 1s ease 1.2s both;
}

.hero-b .scroll-line {
    background: rgba(255,255,255,0.5) !important;
}

/* Slider dots */
.slider-dots {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all 0.3s;
}

.slider-dot.active {
    background: var(--gold);
    transform: scale(1.2);
}

/* ============================================
   Section Styles
   ============================================ */
.section {
    padding: 100px 24px;
}

.section-cream {
    background: var(--bg-cream);
}

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

.section-navy {
    background: var(--navy);
    color: #fff;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header .en-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}

.section-header h2 {
    font-size: 1.8rem;
    color: var(--navy);
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.section-navy .section-header h2 {
    color: #fff;
}

.section-header .section-line {
    width: 40px;
    height: 1px;
    background: var(--gold);
    margin: 0 auto 16px;
}

.section-header p {
    color: var(--text-light);
    font-size: 0.9rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 2;
}

.section-navy .section-header p {
    color: rgba(255,255,255,0.7);
}

.container {
    max-width: 1100px;
    margin: 0 auto;
}

/* ============================================
   About Section
   ============================================ */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center top;
}

.about-image::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: -10px;
    width: 100%;
    height: 100%;
    border: 1px solid var(--gold);
    border-radius: 4px;
    z-index: -1;
}

.about-text h3 {
    font-size: 1.4rem;
    color: var(--navy);
    margin-bottom: 24px;
    letter-spacing: 0.05em;
    line-height: 1.8;
}

.about-text p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 2.2;
    margin-bottom: 16px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 32px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 12px;
}

.about-feature .feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-cream);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1rem;
    flex-shrink: 0;
}

.about-feature span {
    font-size: 0.9rem;
    color: var(--text-dark);
}

/* ============================================
   Services Section
   ============================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.service-card {
    background: var(--bg-white);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.service-card-image {
    height: 220px;
    overflow: hidden;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.5s;
}

.service-card:hover .service-card-image img {
    transform: scale(1.05);
}

.service-card-body {
    padding: 28px;
}

.service-card-body h3 {
    font-size: 1.1rem;
    color: var(--navy);
    margin-bottom: 8px;
    letter-spacing: 0.05em;
}

.service-card-body .service-time {
    font-size: 0.75rem;
    color: var(--gold);
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}

.service-card-body p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 16px;
}

.service-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--navy);
}

.service-price small {
    font-size: 0.75rem;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    color: var(--text-light);
}

/* ============================================
   Price Section - Elegant Menu Cards
   ============================================ */
.price-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.price-card {
    background: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    border: 1px solid var(--border-light);
}

.price-card-header {
    text-align: center;
    padding: 28px 24px 20px;
    border-bottom: 1px solid var(--border-light);
    position: relative;
}

.price-card-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: var(--gold);
    border-radius: 0 0 2px 2px;
}

.price-card-header h3 {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.2rem;
    color: var(--navy);
    letter-spacing: 0.1em;
    font-weight: 500;
}

.price-card-header .en-label {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.7rem;
    color: var(--gold);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.price-card-body {
    padding: 24px;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px dotted #e0ddd6;
}

.price-item:last-child {
    border-bottom: none;
}

.price-item-name {
    font-size: 0.9rem;
    color: var(--text-dark);
    font-weight: 400;
}

.price-item-amount {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--navy);
    white-space: nowrap;
}

.price-item-amount span {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.8rem;
    font-weight: 400;
}

.price-note {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-align: center;
    padding-top: 8px;
}

/* Combo plan special style */
.price-card.combo {
    grid-column: 1 / -1;
    max-width: 500px;
    margin: 0 auto;
}

.price-card.combo .price-card-header::before {
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    width: 60px;
}

.price-combo-note {
    text-align: center;
    padding: 12px 24px 20px;
    font-size: 0.8rem;
    color: var(--text-light);
    font-style: italic;
}

/* Ticket banner */
.ticket-banner {
    max-width: 900px;
    margin: 48px auto 0;
    background: linear-gradient(135deg, var(--navy) 0%, #2a3a5c 100%);
    border-radius: 8px;
    padding: 32px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.ticket-banner-text h4 {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 6px;
    letter-spacing: 0.05em;
}

.ticket-banner-text p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
}

.ticket-banner-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: var(--gold);
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    transition: background 0.3s, transform 0.3s;
    white-space: nowrap;
}

.ticket-banner-btn:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}

/* ============================================
   Ticket Page Styles
   ============================================ */
.ticket-hero {
    padding-top: 112px;
    padding-bottom: 60px;
    background: linear-gradient(135deg, var(--navy) 0%, #2a3a5c 100%);
    text-align: center;
}

.ticket-hero h1 {
    font-family: 'Noto Serif JP', serif;
    font-size: 2rem;
    color: #fff;
    letter-spacing: 0.15em;
    margin-bottom: 8px;
}

.ticket-hero .en-label {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.75rem;
    color: var(--gold);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.ticket-hero p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
}

.ticket-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.ticket-card {
    background: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    border: 1px solid var(--border-light);
    position: relative;
}

.ticket-card::before {
    content: '5回券';
    position: absolute;
    top: 16px;
    right: -28px;
    background: var(--gold);
    color: #fff;
    font-size: 0.7rem;
    padding: 4px 32px;
    transform: rotate(45deg);
    letter-spacing: 0.05em;
    z-index: 2;
}

.ticket-card-header {
    background: linear-gradient(135deg, var(--navy) 0%, #2a3a5c 100%);
    padding: 24px;
    text-align: center;
}

.ticket-card-header h3 {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.1rem;
    color: #fff;
    letter-spacing: 0.1em;
}

.ticket-card-header .ticket-sub {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.6);
    margin-top: 4px;
}

.ticket-card-body {
    padding: 28px 24px;
    text-align: center;
}

.ticket-total-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
}

.ticket-total-price span {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.85rem;
    font-weight: 400;
}

.ticket-per-price {
    font-size: 0.8rem;
    color: var(--gold);
    margin-bottom: 16px;
}

.ticket-savings {
    display: inline-block;
    background: rgba(181, 152, 90, 0.1);
    color: var(--gold);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
}

.ticket-notes {
    max-width: 600px;
    margin: 0 auto;
    padding: 32px;
    background: rgba(181, 152, 90, 0.06);
    border-radius: 8px;
    border: 1px dashed var(--gold);
}

.ticket-notes h4 {
    font-size: 0.9rem;
    color: var(--navy);
    margin-bottom: 12px;
    text-align: center;
}

.ticket-notes ul {
    list-style: none;
    padding: 0;
}

.ticket-notes li {
    font-size: 0.8rem;
    color: var(--text-light);
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
}

.ticket-notes li::before {
    content: '※';
    position: absolute;
    left: 0;
    color: var(--gold);
}

.back-to-top {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--navy);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s;
}

.back-to-top:hover {
    color: var(--gold);
}

/* ============================================
   Flow Section
   ============================================ */
.flow-steps {
    display: flex;
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

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

.flow-step::after {
    content: '';
    position: absolute;
    top: 28px;
    right: -16px;
    width: 32px;
    height: 1px;
    background: var(--border-light);
}

.flow-step:last-child::after {
    display: none;
}

.flow-step .step-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 300;
    color: var(--gold);
    margin-bottom: 16px;
}

.flow-step .step-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--bg-cream);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--navy);
    font-size: 1.2rem;
}

.flow-step h4 {
    font-size: 0.95rem;
    color: var(--navy);
    margin-bottom: 8px;
    letter-spacing: 0.05em;
}

.flow-step p {
    font-size: 0.8rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* ============================================
   Gallery Section
   ============================================ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.gallery-item {
    aspect-ratio: 3/4;
    overflow: hidden;
    border-radius: 2px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.5s;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* ============================================
   Service Area Section
   ============================================ */
.area-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.area-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.area-tag {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: var(--bg-white);
    border-radius: 4px;
    font-size: 0.85rem;
    color: var(--text-dark);
    border: 1px solid var(--border-light);
}

.area-tag i {
    color: var(--gold);
    font-size: 0.7rem;
}

.area-note {
    margin-top: 24px;
    padding: 20px;
    background: rgba(181, 152, 90, 0.08);
    border-radius: 4px;
    border-left: 3px solid var(--gold);
}

.area-note p {
    font-size: 0.85rem;
    color: var(--text-dark);
    line-height: 1.8;
}

.area-info h3 {
    font-size: 1.2rem;
    color: var(--navy);
    margin-bottom: 20px;
    letter-spacing: 0.05em;
}

.area-info-item {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-light);
}

.area-info-item:last-child {
    border-bottom: none;
}

.area-info-item .info-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-cream);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
}

.area-info-item .info-text h4 {
    font-size: 0.9rem;
    color: var(--navy);
    margin-bottom: 4px;
}

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

/* ============================================
   Instagram Section
   ============================================ */
.instagram-link {
    text-align: center;
}

.instagram-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    background: linear-gradient(135deg, #833AB4, #FD1D1D, #F77737);
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    transition: opacity 0.3s, transform 0.3s;
}

.instagram-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.instagram-btn i {
    font-size: 1.2rem;
}

/* ============================================
   CTA Section
   ============================================ */
.cta-content {
    text-align: center;
    padding: 80px 24px;
}

.cta-content h2 {
    font-size: 1.6rem;
    color: #fff;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.cta-content p {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    margin-bottom: 40px;
    line-height: 2;
}

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

.btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 40px;
    background: var(--gold);
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    transition: background 0.3s, transform 0.3s;
}

.btn-gold:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}

.btn-outline-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 40px;
    background: transparent;
    color: #fff;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 4px;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    transition: all 0.3s;
}

.btn-outline-white:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5);
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: #111827;
    color: rgba(255,255,255,0.6);
    padding: 60px 24px 24px;
}

.footer-content {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand .footer-logo-img {
    height: 80px;
    width: auto;
    display: block;
    border-radius: 8px;
    margin-bottom: 16px;
    object-fit: contain;
}

.footer-brand p {
    font-size: 0.8rem;
    line-height: 2;
}

.footer-nav h4,
.footer-contact h4 {
    font-size: 0.8rem;
    color: var(--gold);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.footer-nav ul {
    list-style: none;
}

.footer-nav li {
    margin-bottom: 12px;
}

.footer-nav a {
    text-decoration: none;
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
    transition: color 0.3s;
}

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

.footer-contact p {
    font-size: 0.85rem;
    margin-bottom: 8px;
}

.footer-contact a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-contact a:hover {
    color: var(--gold);
}

.footer-bottom {
    max-width: 1100px;
    margin: 0 auto;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    font-size: 0.75rem;
}

/* ============================================
   Video Section
   ============================================ */
.video-container {
    max-width: 700px;
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.video-wrapper {
    position: relative;
    cursor: pointer;
}

.video-container video {
    width: 100%;
    height: auto;
    display: block;
    background: #000;
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 5;
    cursor: pointer;
    pointer-events: auto;
}

.video-play-btn i {
    width: 80px;
    height: 80px;
    background: rgba(26, 39, 68, 0.75);
    border: 2px solid rgba(255,255,255,0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    padding-left: 4px;
    transition: all 0.3s;
}

.video-play-label {
    font-size: 0.75rem;
    color: #fff;
    letter-spacing: 0.1em;
    text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

.video-play-btn.hidden {
    opacity: 0;
    pointer-events: none;
}

.video-play-btn:hover i {
    background: rgba(181, 152, 90, 0.85);
    border-color: var(--gold);
    transform: scale(1.1);
}

.video-wrapper:hover .video-play-btn:not(.hidden) i {
    background: rgba(181, 152, 90, 0.85);
}

/* ============================================
   Price Instagram Section
   ============================================ */
.price-instagram {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 48px 32px;
    background: var(--bg-white);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

.price-notice {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.price-notice i {
    font-size: 2.5rem;
    background: linear-gradient(135deg, #833AB4, #FD1D1D, #F77737);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-notice p {
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 500;
    letter-spacing: 0.05em;
}

/* ============================================
   CTA Contact Info
   ============================================ */
.cta-contact-info {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.15);
}

.cta-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

.cta-contact-item i {
    color: var(--gold);
    font-size: 1rem;
}

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

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

/* ============================================
   Animations
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scrollLine {
    0% { opacity: 1; transform: scaleY(0); transform-origin: top; }
    50% { opacity: 1; transform: scaleY(1); transform-origin: top; }
    51% { transform: scaleY(1); transform-origin: bottom; }
    100% { opacity: 0; transform: scaleY(0); transform-origin: bottom; }
}

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-a .hero-logo {
        width: 160px;
    }

    .hero-a .hero-tagline {
        font-size: 0.95rem;
        text-align: center;
        padding: 0 24px;
    }

    .hero-overlay .hero-logo {
        width: 140px;
    }

    .hero-overlay .hero-tagline {
        font-size: 1rem;
        text-align: center;
        padding: 0 24px;
    }

    .section {
        padding: 64px 20px;
    }

    .section-header h2 {
        font-size: 1.4rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .about-image img {
        height: 280px;
    }

    .about-image::after {
        display: none;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .flow-steps {
        flex-direction: column;
        gap: 24px;
    }

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

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .area-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .area-list {
        grid-template-columns: 1fr;
    }

    .cta-content h2 {
        font-size: 1.3rem;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .price-cards {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .price-card.combo {
        max-width: 100%;
    }

    .ticket-banner {
        flex-direction: column;
        text-align: center;
        padding: 28px 24px;
    }

    .ticket-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .video-container {
        border-radius: 4px;
    }

    .cta-contact-info {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .hero-a .hero-logo {
        width: 140px;
    }

    .hero-a .hero-tagline {
        font-size: 0.85rem;
    }

    .section-header h2 {
        font-size: 1.2rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4px;
    }
}
