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

:root {
    --color-primary: #1e2836;
    --color-secondary: #f5f5f5;
    --color-text-dark: #333;
    --color-text-light: #fff;
    --color-overlay: rgba(30, 40, 54, 0.95);
    --font-main: 'Noto Sans JP', 'Yu Gothic', 'Hiragino Sans', sans-serif;
    --font-serif: 'Noto Serif JP', 'Yu Mincho', 'Hiragino Mincho ProN', serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-text-dark);
    background-color: #fff;
}

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

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

a:hover {
    opacity: 0.7;
}

/* ===========================
   Language Selector
   =========================== */
.language-selector {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
}

.language-select {
    padding: 8px 16px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    background-color: rgba(255, 255, 255, 0.3);
    color: #fff;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.language-select:hover {
    background-color: rgba(255, 255, 255, 0.5);
    border-color: rgba(255, 255, 255, 1);
}

.language-select option {
    background-color: var(--color-primary);
    color: #fff;
}

/* ===========================
   Hero Section
   =========================== */
.hero-section {
    position: relative;
    width: 100%;
    height: 80vh;
    overflow: hidden;
}

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

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.15);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.1) 50%,
        rgba(0, 0, 0, 0.4) 100%
    );
    z-index: 2;
}

.hero-content {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 60px 5%;
}

.hero-header {
    display: flex;
    align-items: center;
    gap: 20px;
}

.hero-logo {
    width: 210px;
    height: auto;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 400;
    color: #fff;
    letter-spacing: 0.1em;
}

.hero-subtitle {
    text-align: center;
    color: #fff;
    margin-bottom: 80px;
}

.subtitle-line1,
.subtitle-line2 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 300;
    letter-spacing: 0.08em;
    line-height: 1.6;
}

/* ===========================
   Story Sections
   =========================== */
.story-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
}

/* Story Dark Section with Background */
.story-dark {
    background-color: transparent;
    color: #fff;
}

.story-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.story-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 100vh;
    padding: 60px;
    z-index: 2;
}

/* Glass effect for dark story section */
.story-dark .story-container {
    justify-content: flex-start;
}

.story-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
    background-color: var(--color-overlay);
    max-width: 600px;
}

.story-dark .story-text {
    background-color: transparent !important;
    padding: 60px 40px !important;
}

.story-spacer {
    /* No longer needed */
    display: none;
}

.story-paragraph {
    font-size: 1.1rem;
    line-height: 2;
    margin-bottom: 2rem;
    letter-spacing: 0.05em;
}

/* Story Light Section */
.story-light {
    background-color: var(--color-secondary);
    padding: 80px 0;
}

.story-light .story-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    min-height: auto;
}

.story-light .story-text {
    background-color: transparent;
    color: var(--color-text-dark);
    padding: 60px 0;
}

.story-heading {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 400;
    line-height: 1.8;
    margin-bottom: 2rem;
    letter-spacing: 0.05em;
}

.story-image {
    overflow: hidden;
    border-radius: 8px;
}

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

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

/* ===========================
   Feature Section
   =========================== */
.feature-section {
    padding: 100px 60px;
    background-color: #f5f5f5;
}

.feature-container {
    display: grid;
    grid-template-columns: 60% 40%;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.feature-left,
.feature-right {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.feature-image-box {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.4);
}

.feature-image-box img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

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

/* 좌측 가로형 이미지 높이 축소 */
.feature-left .feature-image-box {
    max-height: 300px;
}

.feature-left .feature-image-box img {
    height: 100%;
}

/* 우측 세로형 이미지 */
.feature-image-vertical {
    aspect-ratio: 2 / 3;
    max-height: 700px;
}

.feature-image-vertical img {
    height: 100%;
}

.feature-text-box {
    padding: 20px 0;
}

.feature-text-box-right {
    padding: 60px 0 80px 0;
}

.feature-paragraph {
    font-size: 1.1rem;
    line-height: 2.0;
    color: var(--color-text-dark);
    letter-spacing: 0.05em;
}

.feature-paragraph-large {
    font-size: 1.2rem;
    line-height: 2.2;
    color: var(--color-text-dark);
    letter-spacing: 0.05em;
    margin-bottom: 2.5rem;
}

/* ===========================
   Rooms Section
   =========================== */
.rooms-section {
    padding: 60px 60px 40px 60px;
    background-color: #d4d8d4;
}

.rooms-title {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 40px;
    letter-spacing: 0.1em;
    color: var(--color-text-dark);
}

.room-container {
    display: grid;
    grid-template-columns: 60% 40%;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto 40px;
    align-items: center;
}

.room-image-left {
    overflow: hidden;
    max-height: 320px;
    border-radius: 8px;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.4);
}

.room-image-left img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.room-text-right {
    padding: 40px;
}

.room-heading {
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    margin-bottom: 30px;
    color: var(--color-text-dark);
}

.room-paragraph {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-text-dark);
    letter-spacing: 0.05em;
}

.room-full-image {
    max-width: 1400px;
    max-height: 350px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.4);
}

.room-full-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover !important;
    object-position: center bottom !important;
}

/* ===========================
   Gallery Section
   =========================== */
.gallery-section {
    padding: 100px 60px;
    background-color: #fff;
}

.section-title {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 400;
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: 0.1em;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

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

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

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

/* ===========================
   Amenities Section
   =========================== */
.amenities-section {
    padding: 100px 60px;
    background-color: #fff;
}

.amenities-detail {
    max-width: 700px;
    margin: 0 auto 80px;
    text-align: center;
}

.detail-category {
    margin-bottom: 50px;
}

.detail-category:last-child {
    margin-bottom: 0;
}

.detail-title {
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    margin-bottom: 15px;
    color: var(--color-text-dark);
}

.detail-text {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--color-text-dark);
    letter-spacing: 0.05em;
}

.reservation-button-container {
    text-align: center;
    margin-top: 80px;
}

.reservation-button {
    display: inline-block;
    padding: 18px 80px;
    border: 1px solid var(--color-text-dark);
    background-color: transparent;
    color: var(--color-text-dark);
    font-family: var(--font-serif);
    font-size: 1.2rem;
    letter-spacing: 0.15em;
    text-decoration: none;
    transition: all 0.3s ease;
}

.reservation-button:hover {
    background-color: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
}

/* ===========================
   Information Section
   =========================== */
.info-section {
    position: relative;
    padding: 100px 60px;
    min-height: 100vh;
    overflow: hidden;
}

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

.info-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.info-container {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.info-box {
    background-color: rgba(180, 180, 180, 0.85);
    padding: 30px;
    border-radius: 8px;
}

.info-box-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 25px;
    letter-spacing: 0.05em;
}

.info-basic {
    height: fit-content;
}

.info-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-detail {
    margin-bottom: 20px;
}

.info-detail-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.info-detail-half {
    margin-bottom: 0;
}

.info-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
    letter-spacing: 0.03em;
    display: flex;
    align-items: center;
    gap: 10px;
}

.map-button {
    display: inline-block;
    padding: 4px 16px;
    background-color: #1a1a1a;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 400;
    border-radius: 4px;
    text-decoration: none;
    letter-spacing: 0.05em;
}

.info-value {
    font-size: 1rem;
    line-height: 1.8;
    color: #1a1a1a;
    letter-spacing: 0.03em;
}

.amenity-category {
    margin-bottom: 15px;
}

.amenity-category:last-child {
    margin-bottom: 0;
}

.amenity-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 5px;
    letter-spacing: 0.03em;
}

.amenity-item {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #1a1a1a;
    letter-spacing: 0.02em;
    margin-bottom: 0;
}

/* ===========================
   Footer
   =========================== */
.footer {
    background-color: var(--color-primary);
    color: #fff;
    padding: 60px 60px 40px;
}

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

.footer-logo {
    margin-bottom: 30px;
}

.footer-logo img {
    width: 120px;
    margin: 0 auto 16px;
}

.footer-title {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    letter-spacing: 0.1em;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 40px;
}

.social-link img {
    width: 32px;
    height: 32px;
    filter: brightness(0) invert(1);
}

.footer-copyright {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.9rem;
    opacity: 0.7;
}

/* ===========================
   Responsive Design
   =========================== */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2rem;
    }

    .subtitle-line1,
    .subtitle-line2 {
        font-size: 1.5rem;
    }

    .story-text {
        padding: 60px 40px;
    }

    .story-light .story-container {
        padding: 0 40px;
        gap: 40px;
    }

    .gallery-section,
    .amenities-section,
    .info-section {
        padding: 80px 40px;
    }

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

@media (max-width: 768px) {
    .hero-content {
        padding: 40px 20px;
    }

    .hero-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .hero-logo {
        width: 100px;
    }

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

    .subtitle-line1,
    .subtitle-line2 {
        font-size: 1.2rem;
    }

    .hero-subtitle {
        margin-bottom: 40px;
    }

    /* Story sections - mobile layout */
    .story-background {
        width: 100%;
        height: 100%;
    }

    .story-container {
        padding: 40px 20px;
    }

    .story-text {
        padding: 40px 20px;
        max-width: 100%;
    }

    .story-dark .story-text {
        padding: 30px 20px !important;
    }

    .story-light .story-container {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px;
    }

    /* Feature section - mobile layout */
    .feature-section {
        padding: 60px 20px;
    }

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

    .feature-left,
    .feature-right {
        gap: 30px;
    }

    .feature-text-box-right {
        padding: 20px 0 40px 0;
    }

    .feature-paragraph,
    .feature-paragraph-large {
        font-size: 1rem;
        line-height: 1.8;
    }

    /* Rooms section - mobile layout */
    .rooms-section {
        padding: 40px 20px 30px 20px;
    }

    .rooms-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .room-container {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 30px;
    }

    .room-text-right {
        padding: 20px 0;
    }

    .room-heading {
        font-size: 0.9rem;
    }

    .room-paragraph {
        font-size: 1rem;
        line-height: 1.6;
    }

    .gallery-section,
    .amenities-section,
    .info-section {
        padding: 60px 20px;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 40px;
    }

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

    .amenities-section {
        padding: 60px 20px;
    }

    .amenities-detail {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 100%;
    }

    .detail-text {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .reservation-button {
        padding: 15px 60px;
        font-size: 1rem;
    }

    .info-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .info-box {
        padding: 25px;
    }

    .info-box-title {
        font-size: 1.1rem;
    }

    .info-detail-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .footer {
        padding: 40px 20px 30px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.3rem;
    }

    .subtitle-line1,
    .subtitle-line2 {
        font-size: 1rem;
    }

    .story-paragraph {
        font-size: 1rem;
    }

    .story-heading {
        font-size: 1.5rem;
    }

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

/* ===========================
   Experience Section
   =========================== */
.experience-section {
    padding: 100px 60px;
    background-color: #4a5568;
}

.experience-header {
    text-align: center;
    margin-bottom: 80px;
}

.experience-title {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 0.2em;
    color: #fff;
    margin-bottom: 40px;
}

.experience-subtitle {
    font-size: 1rem;
    line-height: 1.9;
    color: #fff;
    letter-spacing: 0.05em;
}

.experience-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.experience-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.experience-image {
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.experience-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.experience-button {
    display: inline-block;
    padding: 18px 80px;
    border: 1px solid #fff;
    background-color: transparent;
    color: #fff;
    font-family: var(--font-serif);
    font-size: 1.1rem;
    letter-spacing: 0.1em;
    text-decoration: none;
    transition: all 0.3s ease;
}

.experience-button:hover {
    background-color: #fff;
    color: #4a5568;
}

/* ===========================
   Food Section
   =========================== */
.food-section {
    padding: 100px 60px;
    background-color: #4a5568;
    position: relative;
}

.food-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.food-title {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 0.2em;
    color: #fff;
    margin-bottom: 20px;
}

.food-subtitle {
    font-size: 0.95rem;
    color: #fff;
    letter-spacing: 0.05em;
}

.language-selector-food {
    position: absolute;
    top: 0;
    right: 0;
}

.language-selector-food .language-select {
    padding: 10px 20px;
    background-color: #2d3748;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.95rem;
    cursor: pointer;
}

.food-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.food-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.food-text-left {
    text-align: left;
}

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

.food-text-right {
    text-align: right;
}

.food-menu-title {
    font-size: 1rem;
    font-weight: 400;
    color: #fff;
    letter-spacing: 0.08em;
    margin-bottom: 15px;
    line-height: 1.6;
}

.food-menu-desc {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #fff;
    letter-spacing: 0.05em;
    margin-bottom: 15px;
}

.food-menu-desc:last-child {
    margin-bottom: 0;
}

.food-item.food-image {
    aspect-ratio: 16 / 11;
    overflow: hidden;
}

.food-item.food-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.food-item.food-footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.food-footer-text {
    font-size: 1rem;
    line-height: 1.9;
    color: #fff;
    letter-spacing: 0.05em;
    margin-bottom: 40px;
}

.food-button {
    display: inline-block;
    padding: 18px 80px;
    border: 1px solid #fff;
    background-color: transparent;
    color: #fff;
    font-family: var(--font-serif);
    font-size: 1.2rem;
    letter-spacing: 0.15em;
    text-decoration: none;
    transition: all 0.3s ease;
}

.food-button:hover {
    background-color: #fff;
    color: #4a5568;
}

/* Experience & Food - Responsive */
@media (max-width: 1024px) {
    .experience-section,
    .food-section {
        padding: 80px 40px;
    }

    .experience-content {
        gap: 40px;
    }

    .food-grid {
        gap: 30px 20px;
    }
}

@media (max-width: 768px) {
    .experience-section,
    .food-section {
        padding: 60px 20px;
    }

    .experience-title,
    .food-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .experience-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .experience-button,
    .food-button {
        padding: 15px 60px;
        font-size: 1rem;
    }

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

    .food-text-left,
    .food-text-right {
        text-align: center;
    }

    .language-selector-food {
        position: static;
        margin-top: 20px;
    }

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

@media (max-width: 480px) {
    .experience-title,
    .food-title {
        font-size: 1.5rem;
    }

    .experience-subtitle,
    .food-subtitle,
    .food-footer-text {
        font-size: 0.9rem;
    }

    .experience-button,
    .food-button {
        padding: 12px 40px;
        font-size: 0.9rem;
    }
}

/* ===========================
   Reservation Section
   =========================== */
.reservation-section {
    position: relative;
    height: 80vh;
    min-height: 500px;
    overflow: hidden;
}

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

.reservation-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.reservation-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.reservation-title {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 300;
    color: #fff;
    letter-spacing: 0.2em;
    margin-bottom: 30px;
    padding: 30px 100px;
    border: 2px solid #fff;
}

.reservation-subtitle {
    font-size: 1.3rem;
    color: #fff;
    letter-spacing: 0.1em;
    line-height: 1.8;
}

/* ===========================
   Access Section
   =========================== */
.access-section {
    padding: 100px 60px;
    background-color: #f8f8f8;
}

.access-title {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 0.2em;
    color: var(--color-text-dark);
    margin-bottom: 80px;
}

.access-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1400px;
    margin: 0 auto;
}

.access-map {
    width: 100%;
    height: 500px;
    background-color: #e0e0e0;
}

.access-map iframe {
    width: 100%;
    height: 100%;
}

.access-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.access-name {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    color: var(--color-text-dark);
    margin-bottom: 30px;
}

.access-detail {
    font-size: 1rem;
    line-height: 2;
    color: var(--color-text-dark);
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

.access-note {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--color-text-dark);
    letter-spacing: 0.03em;
    margin-top: 20px;
}

/* Reservation & Access - Responsive */
@media (max-width: 1024px) {
    .reservation-section {
        height: 60vh;
    }

    .reservation-title {
        font-size: 2.5rem;
        padding: 25px 80px;
    }

    .access-section {
        padding: 80px 40px;
    }

    .access-container {
        gap: 60px;
    }
}

@media (max-width: 768px) {
    .reservation-section {
        height: 50vh;
        min-height: 400px;
    }

    .reservation-title {
        font-size: 2rem;
        padding: 20px 60px;
    }

    .reservation-subtitle {
        font-size: 1.1rem;
    }

    .access-section {
        padding: 60px 20px;
    }

    .access-title {
        font-size: 2rem;
        margin-bottom: 50px;
    }

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

    .access-map {
        height: 350px;
    }
}

@media (max-width: 480px) {
    .reservation-title {
        font-size: 1.5rem;
        padding: 15px 40px;
    }

    .reservation-subtitle {
        font-size: 1rem;
    }

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

    .access-map {
        height: 300px;
    }

    .access-name {
        font-size: 1.1rem;
    }

    .access-detail,
    .access-note {
        font-size: 0.9rem;
    }
}
