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

html {
    scroll-behavior: smooth;
}

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

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

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

a:hover {
    color: #d4af37;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.nav-brand h1 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 300;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    font-size: 0.9rem;
}

.nav-menu a:hover {
    color: #d4af37;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: #d4af37;
    transition: width 0.3s ease;
}

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

.nav-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    color: #ffffff;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #d4af37;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    position: relative;
    overflow: hidden;
}

.hero-content {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 0 4rem;
    z-index: 2;
}

.hero-text {
    max-width: 600px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 2rem;
    letter-spacing: 2px;
}

.hero-subtitle {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.pick-up {
    background: #d4af37;
    color: #000;
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1px;
}

.arrow {
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.hero-date {
    font-size: 0.9rem;
    color: #999;
    margin-bottom: 0.5rem;
}

.hero-description {
    font-size: 1rem;
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.hero-cta {
    margin-top: 2rem;
}

.cta-button {
    display: inline-block;
    background: #d4af37;
    color: #000;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 1px;
    border-radius: 0;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.cta-button:hover {
    background: #fff;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.hero-image {
    flex: 1;
    position: relative;
}

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

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.7) 70%, rgba(0,0,0,0) 100%);
    z-index: 1;
}

/* Video Gallery */
.video-gallery {
    display: flex;
    height: 400px;
    margin: 0;
}

.video-item {
    flex: 1;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

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

.video-overlay {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.play-button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.video-title {
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 1px;
}

.video-item:hover .video-thumbnail {
    transform: scale(1.1);
}

.video-item:hover .play-button {
    background: #d4af37;
    color: #fff;
}

/* Concept Section */
.concept {
    display: flex;
    min-height: 70vh;
    align-items: center;
}

.concept-image {
    flex: 1;
}

.concept-img {
    width: 100%;
    height: 70vh;
    object-fit: cover;
}

.concept-content {
    flex: 1;
    padding: 4rem;
    background: #111;
}

.section-label {
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: #d4af37;
    margin-bottom: 2rem;
    font-weight: 500;
}

.concept-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 2rem;
}

.concept-description {
    font-size: 1rem;
    line-height: 1.8;
    color: #ccc;
    margin-bottom: 3rem;
}

.concept-more {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.concept-more:hover {
    color: #d4af37;
}

/* Philosophy Section */
.philosophy {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.philosophy-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.philosophy-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.philosophy-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.6) 50%, rgba(0,0,0,0.9) 100%);
    z-index: 2;
}

.philosophy-content {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    margin: 0 auto;
    padding: 6rem 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

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

.philosophy-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 400;
    margin-bottom: 1rem;
    letter-spacing: 3px;
    color: #d4af37;
}

.philosophy-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #ccc;
    letter-spacing: 2px;
}

.philosophy-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #fff;
}

.philosophy-quote {
    text-align: center;
    position: relative;
}

.quote-mark {
    font-family: 'Playfair Display', serif;
    font-size: 8rem;
    color: #d4af37;
    opacity: 0.3;
    line-height: 1;
    margin-bottom: -2rem;
}

.quote-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #fff;
}

.quote-author {
    font-size: 1rem;
    color: #d4af37;
    letter-spacing: 1px;
}

/* Menu Section */
.menu {
    padding: 6rem 2rem;
    background: #111;
}

.menu-content {
    max-width: 1200px;
    margin: 0 auto;
}

.menu-header {
    text-align: center;
    margin-bottom: 4rem;
}

.menu-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: #fff;
}

.menu-subtitle {
    font-size: 1.1rem;
    color: #ccc;
    line-height: 1.6;
}

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

.menu-item {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.menu-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.1);
}

.menu-image {
    height: 200px;
    overflow: hidden;
}

.menu-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.menu-info {
    padding: 2rem;
}

.menu-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: #d4af37;
}

.menu-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #ccc;
    margin-bottom: 1.5rem;
}

.menu-price {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: #d4af37;
}

.tax {
    font-size: 0.8rem;
    color: #999;
    font-weight: 400;
}

.menu-note {
    text-align: center;
    color: #999;
    font-size: 0.9rem;
    line-height: 1.6;
}

.menu-note p {
    margin-bottom: 0.5rem;
}

/* Chef Section */
.chef {
    padding: 6rem 2rem;
    background: #0a0a0a;
}

.chef-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.chef-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: #d4af37;
}

.chef-subtitle {
    font-size: 1.2rem;
    color: #999;
    margin-bottom: 2rem;
    font-style: italic;
}

.chef-description p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ccc;
    margin-bottom: 2rem;
}

.chef-achievements {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.achievement h5 {
    font-size: 1.1rem;
    color: #d4af37;
    margin-bottom: 1rem;
    font-weight: 500;
}

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

.achievement li {
    font-size: 0.95rem;
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.achievement li::before {
    content: '•';
    color: #d4af37;
    position: absolute;
    left: 0;
}

.chef-image {
    position: relative;
}

.chef-img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 8px;
}

.chef-quote {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
}

.quote-bubble {
    background: rgba(0, 0, 0, 0.8);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #d4af37;
    font-style: italic;
    font-size: 1rem;
    line-height: 1.5;
    color: #fff;
}

/* Gallery Section */
.gallery {
    padding: 6rem 2rem;
}

.gallery-header {
    text-align: center;
    margin-bottom: 4rem;
}

.gallery-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 400;
    color: #fff;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 300px);
    gap: 1rem;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item {
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    position: relative;
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.overlay-text {
    color: #d4af37;
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 1px;
}

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

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-more {
    text-align: center;
    margin-top: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.gallery-more:hover {
    color: #d4af37;
}

/* Stats Section */
.stats {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.stats-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.stats-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.4) blur(1px);
}

.stats-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2;
}

.stats-content {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    margin: 0 auto;
    padding: 6rem 2rem;
    text-align: center;
}

.stats-header {
    margin-bottom: 4rem;
}

.stats-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: #d4af37;
}

.stats-subtitle {
    font-size: 1.2rem;
    color: #ccc;
    letter-spacing: 1px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
}

.stat-item {
    text-align: center;
    padding: 2rem 1rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.1);
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 600;
    color: #d4af37;
    line-height: 1;
    margin-bottom: 0.5rem;
    display: inline-block;
}

.stat-plus {
    font-size: 2rem;
    color: #d4af37;
    margin-left: 0.2rem;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #fff;
}

.stat-description {
    font-size: 0.9rem;
    color: #999;
    line-height: 1.4;
}

/* Interior Section */
.interior {
    padding: 6rem 2rem;
    background: #111;
}

.interior-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.interior-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 2rem;
    color: #d4af37;
}

.interior-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ccc;
    margin-bottom: 2rem;
}

.interior-features {
    display: flex;
    gap: 2rem;
}

.feature {
    text-align: center;
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.feature-text {
    font-size: 0.9rem;
    color: #999;
}

.interior-images {
    display: grid;
    grid-template-rows: 2fr 1fr;
    gap: 1rem;
    height: 500px;
}

.interior-main {
    border-radius: 8px;
    overflow: hidden;
}

.interior-sub {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.interior-sub > * {
    border-radius: 8px;
    overflow: hidden;
}

.interior-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

/* Experience Section */
.experience {
    display: flex;
    min-height: 80vh;
    background: #0a0a0a;
}

.experience-content {
    flex: 1;
    padding: 6rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.experience-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 2rem;
}

.experience-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ccc;
    margin-bottom: 3rem;
}

.experience-points {
    display: grid;
    gap: 2rem;
}

.exp-point h4 {
    font-size: 1.2rem;
    color: #d4af37;
    margin-bottom: 0.5rem;
}

.exp-point p {
    font-size: 0.95rem;
    color: #999;
    line-height: 1.6;
}

.experience-images {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 1fr);
}

.exp-image {
    overflow: hidden;
}

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

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

/* Instagram Section */
.instagram {
    padding: 4rem 2rem;
    text-align: center;
}

.instagram-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.instagram-handle {
    color: #999;
    font-size: 0.9rem;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.instagram-item {
    aspect-ratio: 1;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
}

.instagram-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.instagram-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.play-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.instagram-item:hover .instagram-img {
    transform: scale(1.1);
}

.instagram-item:hover .instagram-overlay {
    opacity: 1;
}

.instagram-follow {
    background: #d4af37;
    color: #000;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.instagram-follow:hover {
    background: #fff;
    transform: translateY(-2px);
}

/* Testimonial Section */
.testimonial {
    padding: 6rem 2rem;
    background: #111;
}

.testimonial-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-header {
    margin-bottom: 4rem;
}

.testimonial-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 400;
    color: #fff;
    margin-bottom: 1rem;
}

.testimonial-subtitle {
    font-size: 1.1rem;
    color: #ccc;
}

.testimonial-slider {
    position: relative;
    min-height: 250px;
    margin-bottom: 3rem;
}

.testimonial-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s ease;
}

.testimonial-item.active {
    opacity: 1;
    transform: translateY(0);
}

.testimonial-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #fff;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-author {
    color: #d4af37;
}

.author-name {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 0.3rem;
}

.author-location {
    font-size: 0.9rem;
    color: #999;
    margin-bottom: 0.5rem;
}

.testimonial-rating {
    color: #d4af37;
    font-size: 1.2rem;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #333;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active,
.dot:hover {
    background: #d4af37;
    transform: scale(1.2);
}

/* Access Section */
.access {
    padding: 6rem 2rem;
    background: #0a0a0a;
}

.access-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.access-info {
    padding: 2rem 0;
}

.access-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 3rem;
    line-height: 1.3;
}

.access-details {
    display: grid;
    gap: 2.5rem;
}

.access-item h4 {
    font-size: 1.1rem;
    color: #d4af37;
    margin-bottom: 0.8rem;
    font-weight: 500;
    letter-spacing: 1px;
}

.access-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: #ccc;
}

.access-item a {
    color: #ffffff;
    font-weight: 500;
}

.access-item a:hover {
    color: #d4af37;
}

.closed-day {
    color: #999;
    font-size: 0.9rem;
}

.access-map {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.map-container {
    width: 100%;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    filter: grayscale(30%) contrast(1.1);
    transition: filter 0.3s ease;
}

.map-container:hover iframe {
    filter: grayscale(0%) contrast(1);
}

.map-overlay {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    border: 1px solid #d4af37;
}

.map-pin {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

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

.pin-text {
    font-weight: 500;
    letter-spacing: 1px;
    color: #d4af37;
}

/* Reservation Section */
.reservation {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.reservation-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.reservation-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.reservation-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.7) 100%);
    z-index: 2;
}

.reservation-content {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    margin: 0 auto;
    padding: 6rem 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.reservation-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 400;
    margin-bottom: 2rem;
    color: #d4af37;
}

.reservation-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ccc;
    margin-bottom: 3rem;
}

.reservation-info {
    display: grid;
    gap: 2rem;
}

.res-info-item h4 {
    font-size: 1.1rem;
    color: #d4af37;
    margin-bottom: 0.5rem;
}

.res-info-item p {
    font-size: 0.95rem;
    color: #999;
    line-height: 1.6;
}

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

.reservation-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.phone-icon {
    font-size: 2rem;
}

.phone-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #d4af37;
}

.phone-hours {
    font-size: 0.9rem;
    color: #999;
}

.reservation-button {
    display: inline-block;
    background: #d4af37;
    color: #000;
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: all 0.3s ease;
    margin-bottom: 2rem;
}

.reservation-button:hover {
    background: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

.reservation-note {
    font-size: 0.9rem;
    color: #999;
    line-height: 1.6;
}

/* News Section */
.news {
    padding: 6rem 2rem;
    background: #111;
}

.news-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto 3rem;
}

.news-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 400;
}

.news-more {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.news-more:hover {
    color: #d4af37;
}

.news-list {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.news-item {
    padding: 2rem 0;
    border-bottom: 1px solid #333;
    cursor: pointer;
    transition: all 0.3s ease;
}

.news-date {
    font-size: 0.9rem;
    color: #999;
    margin-bottom: 1rem;
}

.news-title {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.news-item:hover .news-title {
    color: #d4af37;
}

.news-excerpt {
    color: #ccc;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: #000;
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
}

.footer-brand h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.footer-brand p {
    color: #999;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social-link {
    color: #ccc;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-social-link:hover {
    color: #d4af37;
}

.footer-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-section h5 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #d4af37;
}

.footer-section p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #ffffff;
    font-weight: 500;
}

.footer-section a:hover {
    color: #d4af37;
}

.reservation-required {
    color: #d4af37;
    font-weight: 500;
}

.footer-bottom {
    max-width: 1200px;
    margin: 2rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #999;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: #999;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #d4af37;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .nav {
        padding: 0 1rem;
    }
    
    .nav-menu {
        gap: 1.5rem;
    }
    
    .hero-content {
        padding: 0 2rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .concept-content {
        padding: 3rem;
    }
    
    .experience-content {
        padding: 4rem 2rem;
    }
    
    .access-content,
    .chef-content,
    .interior-content,
    .philosophy-content,
    .reservation-content {
        gap: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hero {
        flex-direction: column;
        height: auto;
    }
    
    .hero-content {
        padding: 8rem 1rem 3rem;
    }
    
    .hero-image {
        height: 50vh;
    }
    
    .hero-img {
        height: 50vh;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .video-gallery {
        flex-direction: column;
        height: auto;
    }
    
    .video-item {
        height: 200px;
    }
    
    .concept {
        flex-direction: column;
    }
    
    .concept-content {
        padding: 2rem;
    }
    
    .concept-title {
        font-size: 2rem;
    }
    
    .philosophy-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .philosophy-title {
        font-size: 2.5rem;
    }
    
    .chef-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .chef-achievements {
        grid-template-columns: 1fr;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stats-title {
        font-size: 2rem;
    }
    
    .interior-content {
        grid-template-columns: 1fr;
    }
    
    .interior-features {
        justify-content: center;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 200px);
    }
    
    .gallery-item.large {
        grid-column: span 2;
        grid-row: span 1;
    }
    
    .experience {
        flex-direction: column;
    }
    
    .experience-content {
        padding: 3rem 1rem;
    }
    
    .experience-title {
        font-size: 2rem;
    }
    
    .experience-images {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: 200px;
    }
    
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .access-content,
    .reservation-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .access-title,
    .reservation-title {
        font-size: 2rem;
    }
    
    .map-overlay {
        position: static;
        margin-top: 1rem;
        background: rgba(0, 0, 0, 0.9);
    }
    
    .phone-number {
        font-size: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .concept-title,
    .experience-title,
    .access-title,
    .philosophy-title,
    .reservation-title,
    .chef-title,
    .interior-title {
        font-size: 1.8rem;
    }
    
    .stats-title,
    .menu-title,
    .gallery-title,
    .testimonial-title {
        font-size: 1.8rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(6, 200px);
    }
    
    .gallery-item.large {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .experience-images {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(3, 150px);
    }
    
    .instagram-grid {
        grid-template-columns: 1fr;
    }
    
    .access-details {
        gap: 2rem;
    }
    
    .map-container {
        height: 300px;
    }
    
    .testimonial-text {
        font-size: 1.2rem;
    }
    
    .reservation-phone {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .phone-number {
        font-size: 1.8rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

.hero-text > * {
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.5s;
    opacity: 0;
}

.hero-title {
    animation-delay: 0.7s;
}

.hero-subtitle {
    animation-delay: 0.9s;
}

.hero-description {
    animation-delay: 1.1s;
}

.hero-cta {
    animation-delay: 1.3s;
}

/* Special Hover Effects */
.access-item:hover,
.stat-item:hover,
.menu-item:hover {
    transform: translateY(-2px);
    transition: transform 0.3s ease;
}

.map-pin:hover .pin-text {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

.philosophy-quote:hover .quote-text {
    color: #d4af37;
    transition: color 0.3s ease;
}

/* Parallax Effects */
.philosophy-bg-img,
.stats-bg-img,
.reservation-bg-img {
    will-change: transform;
}

/* Counter Animation */
.stat-number.counting {
    animation: countUp 0.8s ease forwards;
}