:root {
    --primary-color: #ff867a;
    --primary-dark: #ec685b;
    --secondary-color: #997a55;
    /* Sand/Beige */
    --accent-color: #8FBC8F;
    /* Dark Sea Green */
    --text-color: #332514;
    /* Dark Slate Blue/Gray */
    --bg-color: #FDFBF7;
    /* Ivory/Linen */
    --white: #ffffff;
    --gray-light: #f4f4f4;

    --font-heading: 'Noto Serif JP', serif;
    --font-body: 'Noto Sans JP', sans-serif;
    --font-en: 'Cormorant Garamond', serif;
    /* Elegant serif for English */
}

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.8;
    letter-spacing: 0.05em;
    -webkit-font-smoothing: antialiased;
    -webkit-font-smoothing: antialiased;
    position: relative;
    overflow-x: hidden;
    /* Prevent horizontal scroll */
    width: 100%;
}

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

/* Background applied to fixed pseudo-element to prevent resizing/jumping on mobile */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
    background-image: url('../images/bg-right.png'),
        url('../images/bg-left.png'),
        url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.05'/%3E%3C/svg%3E");
    background-position: right top, left top, center;
    background-repeat: no-repeat, no-repeat, repeat;
    background-size: auto 150%, auto 150%, auto;
    /* Use scroll because the element itself is fixed */
    background-attachment: scroll, scroll, scroll;
    pointer-events: none;
}

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

ul {
    list-style: none;
}

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

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

/* Typography Helpers */
.section-title {
    font-family: var(--font-en);
    font-size: 3rem;
    color: #332514;
    margin-bottom: 2rem;
    font-weight: 300;
    letter-spacing: 0.1em;
}

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

/* Header */
.header {
    position: sticky;
    top: 0;
    background-color: #ffffffa1;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(85, 107, 47, 0.1);
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s ease;
}

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

.logo a {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-en {
    font-family: var(--font-en);
    font-size: 2rem;
    color: #332514;
    font-weight: 400;
}

.logo-jp {
    font-size: 1.5rem;
    color: #332514;
    letter-spacing: 0.1em;
    font-weight: 400;
    font-family: var(--font-heading);
    margin-top: 0;
}

.logo-location {
    font-size: 0.7rem;
    color: #332514;
    font-weight: 400;
    font-family: var(--font-body);
    margin-bottom: 2px;
    opacity: 0.6;
}

.nav-list {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-list a {
    font-size: 0.95rem;
    font-weight: 500;
    font-weight: 500;
    position: relative;
    font-family: var(--font-heading);
}

.nav-list a.active,
.nav-list a:hover {
    color: var(--primary-color);
}

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

.nav-list a:hover::after,
.nav-list a.active::after {
    width: 100%;
}

.btn-reserve {
    background-color: #f6988f;
    color: var(--white) !important;
    padding: 12px 24px;
    border-radius: 4px;
    font-family: var(--font-en);
    font-size: 1.1rem;
    letter-spacing: 0.1em;
}

.btn-reserve:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    color: var(--white);
}

.btn-reserve::after {
    display: none;
    /* No underline for button */
}

.btn-reserve i {
    margin-right: 4px;
}

/* Hero Section */
.hero-section {
    padding: 80px 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    padding-right: 40px;
}

.hero-sub {
    font-family: var(--font-en);
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-bottom: 20px;
    letter-spacing: 0.2em;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    line-height: 1.4;
    margin-bottom: 30px;
    color: var(--text-color);
    font-weight: 500;
}

.hero-text {
    font-size: 1.05rem;
    color: #666;
    line-height: 2;
}

.hero-image-wrapper {
    position: relative;
    height: 500px;
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
    /* Slight roundness */
}

.hero-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 3s ease, transform 3s ease;
}

.hero-img.active {
    opacity: 1;
    z-index: 1;
}

.hero-image-wrapper:hover .hero-img.active {
    transform: scale(1.05);
    /* Gentle zoom */
}

/* About Section */
.about-section {
    padding: 100px 0;
    background-color: var(--white);
    text-align: center;
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
}



.about-content .lead-text {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 500;
}

/* Services Section */
.services-section {
    padding: 120px 0;
}

.services-section .section-title {
    margin-bottom: 5rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.service-footer {
    margin-top: 60px;
}

.service-card {
    background-color: var(--white);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border-radius: 8px;
    overflow: hidden;
    /* Clean look, no border */
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.card-image-box {
    height: 250px;
    overflow: hidden;
}

.card-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.card-text {
    padding: 40px;
}

.card-text h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 20px;
    display: flex;
    align-items: baseline;
    gap: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.card-text h3 span {
    font-family: var(--font-en);
    font-size: 1rem;
    color: var(--secondary-color);
    font-weight: 400;
}

.card-text p {
    color: #666;
    margin-bottom: 30px;
    min-height: 3.6em;
    /* Align buttons */
}

.btn-link {
    display: inline-block;
    font-family: var(--font-en);
    font-weight: 600;
    color: var(--primary-color);
    border-bottom: 1px solid var(--primary-color);
    padding-bottom: 2px;
}

.btn-link:hover {
    color: var(--primary-dark);
    border-bottom-color: var(--primary-dark);
}

/* News Section */
.news-section {
    padding: 100px 0;
    background-color: white;
}

.section-header-side {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 40px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.view-all {
    font-family: var(--font-en);
    font-style: italic;
    font-size: 1.1rem;
    color: #888;
}

.news-list-minimal li {
    border-bottom: 1px solid #f0f0f0;
}

.news-list-minimal a {
    display: grid;
    grid-template-columns: 120px 100px 1fr;
    align-items: center;
    padding: 25px 0;
    gap: 20px;
}

.news-list-minimal a:hover {
    background-color: #fafafa;
    padding-left: 10px;
    /* Slight indicator */
}

.news-list-minimal .date {
    font-family: var(--font-heading);
    color: #999;
}

.news-list-minimal .tag {
    font-size: 0.8rem;
    border: 1px solid #ddd;
    text-align: center;
    padding: 4px 0;
    border-radius: 20px;
    color: #666;
}

/* Reservation */
.reservation-section {
    padding: 100px 0;
    background-color: #ffe8e1;
    color: var(--text-color);
}

.reservation-banner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.res-text h2 {
    font-family: var(--font-en);
    font-size: 3rem;
    margin-bottom: 10px;
    font-weight: 300;
    /* Requested adjustment to 300 */
}

.res-text p {
    opacity: 0.8;
}

.res-actions {
    display: flex;
    gap: 50px;
    align-items: center;
    background-color: #ffffff7a;
    padding: 30px 50px;
    border-radius: 15px;
    backdrop-filter: blur(5px);
}

.res-tel {
    display: flex;
    align-items: baseline;
    gap: 10px;
    color: var(--text-color);
    text-decoration: none;
    transition: opacity 0.3s;
}

.res-tel:hover {
    opacity: 0.7;
}

.res-info {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.res-hours {
    font-size: 0.85rem;
    text-align: right;
    margin-top: 5px;
    line-height: 1.5;
}

.res-tel .label {
    font-size: 1rem;
    opacity: 0.7;
}

.res-tel .number {
    font-size: 2rem;
    font-family: var(--font-heading);
}

.btn-primary {
    background-color: #f6988f;
    color: white;
    padding: 15px 40px;
    font-family: var(--font-en);
    font-size: 1.2rem;
    font-weight: 500;
    border-radius: 4px;
}

.btn-primary i {
    margin-right: 4px;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    /* Changed from secondary-color to match header button */
    transform: translateY(-2px);
    /* Added match header button effect */
    color: white;
}

.btn-primary.btn-outline {
    background-color: var(--white);
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.btn-primary.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

/* Footer */
.footer {
    background-color: transparent;
    color: var(--text-color);
    padding: 80px 0 40px;
}

/* Page Header - Added for subpages */
.page-header {
    background-color: #ffe8e1;
    /* Requested pinkish bg */
    padding: 60px 0;
    text-align: center;
    margin-bottom: 40px;
}

.page-header h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--text-color);
    font-weight: 500;
    /* Requested 500 */
    margin-bottom: 10px;
}

.page-header p {
    font-family: var(--font-en);
    color: var(--secondary-color);
    letter-spacing: 0.1em;
}

.footer-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    justify-items: center;
    max-width: 1050px;
    margin: 0 auto;
}

.footer-brand {
    text-align: left;
    max-width: 100%;
    justify-self: start;
}

.footer-image {
    width: 300px;
    margin: 0;
    justify-self: end;
}

.footer-image img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    opacity: 0.9;
}

.footer-brand .logo-en {
    display: none;
}

.footer-logo-jp {
    color: #332514;
    font-size: 1.6rem;
    margin-bottom: 20px;
    font-weight: 400;
    font-family: var(--font-heading);
    /* Ensure no unwanted wrapping if possible */
}

/* ... logo-small, p styles ... */

.logo-small {
    font-size: 0.6em;
    margin-right: 0.3em;
    font-weight: normal;
}

.footer-brand p {
    font-size: 0.9rem;
    opacity: 0.7;
    line-height: 1.6;
}

.footer-menu {
    display: flex;
    gap: 30px;
    justify-content: center;
    /* Center PC Nav */
    width: 100%;
}

.footer-menu li {
    width: auto;
    /* Reset any potential widths */
}

.footer-menu a {
    white-space: nowrap;
    /* Prevent wrapping */
}

/* Responsive Address Break (PC Hidden) */
.address-break {
    display: none;
}

.footer-links {
    grid-column: 1 / -1;
    /* Span full width */
    justify-self: center;
    margin-top: 40px;
    margin-bottom: 10px;
}

.footer-menu a {
    font-family: var(--font-en);
    font-size: 1.1rem;
    opacity: 0.8;
}

.footer-menu a:hover {
    opacity: 1;
    color: var(--secondary-color);
}

.footer-copy {
    grid-column: 1 / -1;
    width: 100%;
    text-align: center;
    margin-top: 40px;
    font-size: 0.8rem;
    opacity: 0.5;
    font-family: var(--font-en);
}

/* Mobile */
@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0!important;
    }

    .hero-content {
        padding-right: 0;
        order: 2;
        /* Image on top? Or text? Let's keep typical format for now */
    }

    .hero-image-wrapper {
        height: calc(100vw / 768 * 500);
        order: 1;
    }

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

    /* Footer Mobile Override */
    .footer-container {
        display: flex;
        /* Override grid */
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-brand {
        text-align: center;
        max-width: 100%;
        justify-self: auto;
    }

    .footer-image {
        width: 100%;
        max-width: 300px;
        margin: 0 auto 20px;
        justify-self: auto;
    }

    .footer-links {
        margin-bottom: 0;
        justify-self: auto;
    }

    .footer-menu {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .reservation-banner {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .res-actions {
        flex-direction: column;
        padding: 30px 1.5rem;
        /* Requested padding */
    }

    .res-tel {
        align-items: center;
    }

    .tel-label {
        font-size: 0.9em;
        letter-spacing: 0;
    }

    .news-list-minimal a {
        grid-template-columns: 1fr;
        gap: 5px;
    }

    .nav {
        display: none;
        /* Add JS toggle support if needed */
    }

    .mobile-menu-btn {
        display: flex;
        /* Assuming flex is defined or just block */
        flex-direction: column;
        gap: 6px;
        background: none;
        border: none;
        cursor: pointer;
    }

    .mobile-menu-btn span {
        width: 30px;
        height: 2px;
        background-color: var(--primary-color);
    }
}

/* Menu List Styling */
.menu-section {
    padding: 80px 0;
    background-color: var(--bg-color);
}

.menu-section .section-title {
    font-size: 1.8rem;
    /* User requested 1.8rem */
    margin-bottom: 2rem;
    line-height: 1.2;
}

.menu-section .section-title .en-title {
    display: block;
    font-size: 1rem;
    /* User requested 1rem */
    margin-top: 0.5rem;
    /* User requested 0.5rem */
    color: var(--secondary-color);
    font-weight: 400;
}


.menu-note {
    text-align: right;
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 40px;
}

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

.menu-category h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    /* Reduced from 1.4rem */
    font-weight: normal;
    /* Requested: unbold category name */
    color: #ffffff;
    /* Changed to white */
    background: #997a559c;
    /* Added background */
    padding: .5rem 1em;
    /* Adjusted padding */
    margin-bottom: 25px;
    border-left: none;
    /* Removing previous border-left if it conflicts, assuming new design replaces it */
}

.menu-items {
    width: 100%;
}

.menu-items li {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 12px 1em;
    /* Adjusted padding-left/right */
    border-bottom: 1px dotted #ccc;
    margin-bottom: 10px;
}

.menu-items li:last-child {
    border-bottom: none;
}

.menu-items .name {
    font-family: var(--font-body);
    /* Requested: Gothic (Sans-serif) */
    font-weight: normal;
    /* Requested: remove 500 (back to normal) */
    color: var(--text-color);
}

.menu-items .price {
    font-family: var(--font-body);
    /* Changed from font-en */
    font-size: 1rem;
    /* Reset size to normal */
    font-weight: 500;
    /* Regular weight */
    color: var(--secondary-color);
    white-space: nowrap;
    margin-left: 20px;
}

/* Haircare Page Specifics */
.haircare-detail .section-content {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 60px;
    margin-bottom: 60px;
    /* Space for grid below */
}

.haircare-detail .image-box,
.haircare-detail .text-box {
    flex: 1;
}

.haircare-detail .image-box img {
    border-radius: 12px;
    max-width: 90%;
    margin-right: auto;
    /* Align left implicitly by being first visual element? No, flex-item alignment. */
}

/* Haircare Heading & Lead Text */
.haircare-detail .section-text-lead {
    font-family: var(--font-en);
    font-size: 1.2rem;
    color: var(--secondary-color);
    letter-spacing: 0.1em;
    margin-bottom: 5px;
}

.haircare-detail .text-box h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    /* Reduced from 1.8rem */
    font-weight: 500;
    /* Match hero title weight */
    margin-bottom: 2rem;
    line-height: 1.4;
    margin-top: 0;
}

/* Kitsuke Page Specifics */
.kitsuke-feature {
    padding: 60px 0;
    /* background-color: var(--white); Removed per request */
}

/*
.kitsuke-feature:nth-child(even) {
    background-color: var(--white);
}
*/

.kitsuke-feature .section-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

/* Zig-Zag: Default Text Left, Image Right */
/* User requested Feature 2 to also be Text Left, Image Right.
   So we can just use the default order for both, unless 'reverse' is needed for mobile/logical reasons.
   But user explicitly asked for Text Left / Photo Right for #2. */

.kitsuke-feature.reverse .section-content {
    flex-direction: row-reverse;
}

.kitsuke-feature .text-box {
    flex: 1;
}

.kitsuke-feature .text-box p {
    color: #666;
    /* User requested color */
    line-height: 1.8;
    margin-bottom: 20px;
}

.scene-box {
    background-color: #f9f9f9;
    padding: 15px 20px;
    border-radius: 8px;
    border: 1px solid #e3dede;
    margin-top: 15px;
}

.scene-box h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--primary-dark);
    margin-bottom: 8px;
    font-weight: 500;
}

.scene-box p {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 0 !important;
}

.kitsuke-feature .image-box {
    flex: 1;
}

.kitsuke-feature .image-box img {
    border-radius: 12px;
    width: 100%;
    object-fit: cover;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.kitsuke-feature h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    font-weight: 500;
    line-height: 1.5;
    /* border-left: 5px solid var(--secondary-color); */
    /* User requested removal */
    /* padding-left: 20px; */
    /* User requested removal */
    padding-left: 0;
    border-left: none;
}

@media (max-width: 768px) {

    .kitsuke-feature .section-content,
    .kitsuke-feature.reverse .section-content {
        flex-direction: column;
        gap: 30px;
    }

    .kitsuke-feature .image-box {
        order: -1;
        /* Image always on top on mobile */
        width: 100%;
    }
}

/* Kitsuke Image Grid (Requested) */
.kitsuke-image-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 60px 0;
}

.kitsuke-image-grid img {
    width: 100%;
    aspect-ratio: 1/1;
    /* Square aspect ratio for uniformity, or remove for natural */
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

@media (max-width: 768px) {
    .kitsuke-image-grid {
        grid-template-columns: repeat(3, 1fr);
        /* Keep 3 columns */
        gap: 10px;
        /* Reduce gap for mobile */
        margin: 30px 0 60px 0;
        /* Requested mobile margin */
    }
}

.haircare-detail .text-box p {
    margin-bottom: 1.5rem;
    color: #666;
    /* Requested change to gray */
}

/* Haircare Image Grid */
.haircare-images-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* Changed to 2 columns */
    gap: 60px;
    /* Increased from 20px */
    margin: 60px auto 0;
    /* Centered with top margin */
    width: 80%;
    /* Requested width */
}

.haircare-images-grid figure {
    margin: 0;
}

.haircare-images-grid img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 8px;
    /* Slightly rounded */
}

.haircare-images-grid figcaption {
    font-size: 0.8rem;
    color: #666;
    margin-top: 8px;
    text-align: left;
}

/* On mobile, stack them properly */
@media (max-width: 768px) {
    .haircare-detail .section-content {
        flex-direction: column;
    }

    .haircare-detail .image-box img {
        max-width: 100%;
    }

    .haircare-images-grid {
        grid-template-columns: 1fr;
    }
}


/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Menu Title Styling */
.section-title .en-title,
.shop-access-content .section-title .en-title {
    display: block;
    font-size: 1rem;
    /* User requested 1rem */
    color: var(--secondary-color);
    margin-top: 0.5rem;
    font-weight: 400;
    letter-spacing: 0.1em;
}

/* Ensure Access title matches Menu/Price size */
.shop-access-content .section-title {
    font-size: 1.8rem;
    /* User requested 1.8rem */
    line-height: 1.2;
    margin-bottom: 2rem;
}

/* Shop Page Specifics */
.shop-section {
    padding: 80px 0;
}

/* Shop Images Grid */
.shop-images-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto 40px;
}

.shop-images-top img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 8px;
}

.shop-table {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    border-collapse: collapse;
    margin-bottom: 60px;
}

.shop-table th,
.shop-table td {
    padding: 20px;
    border-bottom: 1px solid #eee;
    text-align: left;
    vertical-align: top;
}

.shop-table th {
    width: 30%;
    color: var(--secondary-color);
    font-weight: 500;
    white-space: nowrap;
}

.shop-access-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.map-container {
    width: 100%;
    height: 400px;
    background-color: #eee;
    margin-bottom: 30px;
    border-radius: 8px;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Access Info Flex Layout */
.access-info-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    margin-top: 30px;
    gap: 30px;
    text-align: left;
}

.access-text {
    flex: 1;
}

.access-action {
    flex-shrink: 0;
}

.btn-map-large {
    display: inline-block;
    background-color: var(--white);
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    padding: 12px 24px;
    border-radius: 4px;
    /* User requested 4px */
    font-size: 0.9rem;
    /* Slightly smaller font */
    font-family: var(--font-en);
    font-weight: 500;
    transition: all 0.3s;
}

.btn-map-large:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.shop-reservation-area {
    text-align: center;
    width: 100%;
    margin: 0;
    background-color: var(--white);
    padding: 80px 40px;
    border-radius: 0;
    /* Full width means no corners usually */
    box-shadow: none;
    /* Often cleaner without shadow if full width */
}

.shop-res-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 500px;
    margin: 30px auto 0;
}

.btn-shop-res {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 18px;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s;
    background-color: #d1b4a8;
    /* Match hotpepper color */
    color: white;
}

.btn-shop-res:hover {
    background-color: #bfa092;
}

.btn-shop-res.hotpepper {
    background-color: #d1b4a8;
    /* Muted reddish styling */
    color: white;
}

.btn-shop-res.hotpepper:hover {
    background-color: #bfa092;
}

@media (max-width: 768px) {
    .access-info-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .access-action {
        width: 100%;
        text-align: center;
    }

    .shop-table th,
    .shop-table td {
        display: block;
        width: 100%;
        padding: 10px 0;
    }

    .shop-table th {
        padding-bottom: 5px;
        color: var(--secondary-color);
        font-size: 0.9rem;
    }

    .shop-table td {
        padding-top: 0;
        padding-bottom: 20px;
        border-bottom: 1px solid #eee;
    }
}

/* News Page Specific */
.news-detail {
    padding: 80px 0;
    border-bottom: 1px solid #e6e6e6;
    /* Separator line between pagination and footer */
}

.news-list {
    max-width: 900px;
    margin: 0 auto;
    border-top: 1px solid #eee;
}

.news-list li {
    border-bottom: 1px solid #eee;
}

.news-list a {
    display: flex;
    /* Changed from grid to flex to handle wrapper */
    align-items: center;
    padding: 25px 0;
    gap: 30px;
    color: var(--text-color);
    transition: all 0.3s;
}

.news-list a:hover {
    background-color: #fff;
    /* Requested white background on hover */
    padding-left: 15px;
    padding-right: 15px;
}

.news-list .meta-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    min-width: 240px;
    /* Ensures alignment across rows */
}

.news-list .date {
    font-family: var(--font-heading);
    /* Requested heading font */
    color: #999;
    font-size: 0.95rem;
    width: 100px;
    /* Fixed width for alignment */
}

.news-list .category {
    font-size: 0.8rem;
    border: 1px solid #ddd;
    text-align: center;
    padding: 4px 0;
    border-radius: 20px;
    /* Rounded 20px like index */
    color: #666;
    background-color: #fff;
    font-weight: 500;
    width: 100px;
    /* Fixed width for alignment */
}

.news-list .title {
    font-size: 1rem;
    line-height: 1.6;
}



/* Contact Form Styles */
/* Contact Form Styles */
.contact-form-section {
    padding: 60px 0;
    max-width: 900px;
    /* Changed to 900px */
    margin: 0 auto;
}

.intro-text {
    text-align: center;
    margin-bottom: 40px;
    color: #666;
}

.contact-tel-box {
    text-align: center;
    margin-bottom: 50px;
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.tel-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-weight: 500;
    margin-bottom: 10px;
    color: #f6988f;
    /* Updated color */
}

.decorative-line {
    display: inline-block;
    width: 20px;
    height: 1px;
    background-color: #f6988f;
    /* Updated color */
}

.tel-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--text-color);
    text-decoration: none;
    font-weight: 300;
    /* Updated weight */
}

.tel-number i {
    font-size: 0.8em;
    /* Reduced icon size */
    vertical-align: middle;
    margin-right: 5px;
}

.contact-form {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.form-group label {
    display: flex;
    /* Changed to flex to align required badge */
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-color);
}

.required {
    background: #d1b4a8;
    font-size: 0.8em;
    color: #fff;
    padding: .1em 1em;
    border-radius: 5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--secondary-color);
    outline: none;
}

.privacy-agreement {
    text-align: center;
    margin-top: 20px;
    font-size: 0.9rem;
}

.privacy-agreement a {
    color: #997a55;
    text-decoration: underline;
}

.form-submit {
    text-align: center;
    margin-top: 40px;
}

.btn-submit {
    background-color: #fff;
    color: #f6988f;
    /* Matching other pink buttons? or specific? Using site secondary or pink */
    border: 2px solid #f6988f;
    padding: 15px 60px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 4px;
    /* or 50px? Standard seems 4px for forms here, but reservation is 50px */
    font-family: var(--font-heading);
    /* Added font-family */
    font-weight: 500;
    /* Changed from bold */
}

.btn-submit:hover {
    background-color: #f6988f;
    color: #fff;
}

/* Privacy Policy Styles */
.privacy-content {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    max-width: 900px;
    margin: 0 auto;
}

.privacy-content h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ddd;
    font-family: var(--font-heading);
    font-weight: 300;
}

.privacy-content h4 {
    font-size: 1.2rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--secondary-color);
    font-family: var(--font-heading);
    font-weight: 500;
    /* Updated to 500 */
}

.privacy-content p {
    line-height: 1.8;
    margin-bottom: 15px;
}

.privacy-content ul {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 20px;
}

.privacy-content ul li {
    margin-bottom: 5px;
}

/* Navigation Contact Button (Mobile) */
.mobile-nav-buttons,
.nav-brand-mobile,
.nav-tel-item {
    display: none;
    /* Hidden on PC */
}

.nav-contact-mobile {
    display: none;
    /* Hidden on PC */
}

/* Reservation Buttons */
.res-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}

.res-contact-text {
    font-size: 0.9rem;
    color: #bfa092;
    text-decoration: none;
    transition: color 0.3s;
}

.res-contact-text:hover {
    color: #bfa092;
    text-decoration: underline;
}

/* Removed .btn-secondary styles as they are replaced by text link */

/* New Footer Layout */
.footer-bottom {
    grid-column: 1 / -1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-legal {
    display: flex;
    align-items: center;
    color: #999;
    width: 100%;
}

.footer-legal a {
    color: #666;
    font-size: 0.8rem;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-legal a:hover {
    color: var(--secondary-color);
}

.footer-legal .pipe {
    margin: 0 10px;
    font-size: 0.8rem;
    color: #ccc;
}

.footer-copy {
    /* Reset grid styles if any */
    grid-column: auto;
    font-size: 0.8rem;
    color: #999;
    text-align: right;
    margin-top: 0;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .news-list a {
        display: grid;
        grid-template-columns: auto 1fr;
        gap: 5px 15px;
        padding: 20px 0;
        align-items: start;
    }

    .news-list .meta-wrapper {
        display: contents;
    }

    .news-list .date {
        font-size: 0.9rem;
        grid-column: 1;
        grid-row: 1;
        width: auto;
        margin-top: 2px;
        /* Visual alignment with badge */
    }

    .news-list .category {
        width: auto;
        /* Allow badge to shrink */
        padding: 2px 10px;
        font-size: 0.75rem;
        grid-column: 2;
        grid-row: 1;
        justify-self: start;
        margin-bottom: 5px;
    }

    .news-list .title {
        grid-column: 2;
        grid-row: 2;
        font-size: 0.875rem;
        /* 14px */
    }
}



/* Single News Article */
.news-article {
    max-width: 900px;
    /* Requested 900px */
    margin: 0 auto;
    background-color: #fff;
    padding: 60px 40px;
    /* Added padding for whitespace inside white box */
    border-radius: 8px;
    /* Optional: adds a bit of polish to the white box */
}

.article-header {
    border-bottom: 1px solid #e6e6e6;
    padding-bottom: 30px;
    margin-bottom: 50px;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.article-meta .date {
    font-family: var(--font-heading);
    color: #999;
    font-size: 1rem;
}

.article-header h1 {
    font-family: var(--font-heading);
    /* Requested */
    font-size: 1.5rem;
    /* Requested */
    font-weight: 500;
    /* Requested */
    line-height: 1.5;
    letter-spacing: 0.05em;
}

.article-body {
    font-size: 1.05rem;
    line-height: 2.2;
    color: var(--text-color);
    margin-bottom: 80px;
    letter-spacing: 0.05em;
}

.article-body p {
    margin-bottom: 2em;
}

.article-body h2 {
    font-size: 1.6rem;
    margin-top: 60px;
    margin-bottom: 30px;
    padding-left: 15px;
    border-left: 4px solid var(--secondary-color);
    line-height: 1.4;
}

.article-body img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 40px 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.article-footer {
    text-align: center;
    border-top: 1px solid #e6e6e6;
    padding-top: 60px;
}

.btn-back {
    display: inline-flex;
    /* Changed to flow for icon alignment */
    align-items: center;
    gap: 10px;
    background-color: var(--white);
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    padding: 12px 24px;
    border-radius: 4px;
    /* Match large map button */
    font-size: 0.9rem;
    font-family: var(--font-en);
    font-weight: 500;
    transition: all 0.3s;
}

.btn-back:hover {
    background-color: var(--primary-color);
    color: var(--white);
    opacity: 1;
}

/* Scroll Animation Targets - Initial State from CSS to prevent FOUC */
.hero-content,
.about-content,
.section-title,
.services-grid,
.service-footer,
.news-list-minimal,
.reservation-banner,
.footer-container,
.page-header .container,
.section-content,
.haircare-images-grid,
.menu-grid,
.news-list,
.news-article,
.shop-reservation-area,
.access-info-container,
.shop-table,
.related-service-notice {
    opacity: 0;
    will-change: opacity, transform;
}

.is-in-view {
    animation: fadeInUp 0.4s ease-out forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================================
   Mobile Optimization
   ========================================= */

/* Hamburger Button (Default: Hidden) */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--text-color);
    transition: all 0.3s ease;
}

/* Mobile Media Query */
@media (max-width: 768px) {

    /* 1. Reduce Padding (Half size) */
    .container {
        padding: 0 20px;
    }

    /* 2. Hamburger Menu Display */
    .mobile-menu-btn {
        display: flex;
    }

    /* Hamburger Animation (to X) */
    .mobile-menu-btn.active span:nth-child(1) {
        transform: translate(0, 9px) rotate(45deg);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: translate(0, -10px) rotate(-45deg);
    }

    /* Navigation Overlay */
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: rgba(253, 251, 247, 0.98);
        /* Brand BG with slight opacity */
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.3s ease-in-out;
        z-index: 1000;
        gap: 20px;
    }

    .nav.active {
        right: 0;
    }

    .nav-brand-mobile {
        display: flex;
        justify-content: center;
        margin-bottom: 40px;
        color: var(--text-color);
    }

    .nav-logo-text {
        font-family: var(--font-heading);
        font-size: 1.8rem;
        letter-spacing: 0.1em;
        color: var(--text-color);
        font-weight: 500;
    }

    .nav-logo-text .small {
        font-size: 0.9rem;
        margin-right: 5px;
    }

    /* Mobile Nav Phone Number */
    .nav-tel-item {
        display: block;
        margin-top: 10px;
        width: 90%;
        margin-left: auto;
        margin-right: auto;
    }

    .nav-tel-link {
        display: flex !important;
        /* Override layout */
        flex-direction: column;
        align-items: center;
        gap: 5px;
        color: var(--text-color);
        text-decoration: none;
        background-color: rgba(255, 255, 255, 0.5);
        padding: 10px 20px !important;
        border-radius: 8px;
        border: 1px solid #e6dace;
    }

    .nav-tel-link .label {
        font-size: 0.8rem;
        color: #666;
    }

    .nav-tel-link .number {
        font-family: var(--font-heading);
        font-size: 1.4rem;
        letter-spacing: 0.05em;
        color: var(--text-color);
        font-weight: 500;
    }

    .nav-list {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        width: 100%;
        margin-bottom: 20px;
    }

    .nav-item-reserve {
        display: none;
    }

    .mobile-nav-buttons {
        display: flex;
        flex-direction: row;
        gap: 10px;
        width: 100%;
        padding: 0 20px;
        box-sizing: border-box;
        justify-content: space-between;
    }

    .btn-mobile-reserve,
    .btn-mobile-contact {
        flex: 1;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 12px 0;
        border-radius: 4px;
        font-size: 0.9rem;
        text-decoration: none;
        box-sizing: border-box;
        gap: 5px;
    }

    .btn-mobile-reserve {
        background-color: #f6988f;
        color: #fff;
    }

    .btn-mobile-contact {
        background-color: #fff;
        color: var(--primary-color);
        border: 1px solid var(--primary-color);
    }

    .nav-list a {
        font-size: 1.1rem;
    }

    /* 3. Hero Section Stacking */
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-content {
        padding-right: 0;
        text-align: center;
        order: 2;
        /* Image first on mobile? Usually better visually, or text first. Let's keep text first for now or swap if requested. Default is order 1 */
    }

    .hero-image-wrapper {
        /* height: 300px; */
        order: 1;
    }


    .hero-section {
        padding: 40px 0;
        min-height: auto;
        flex-direction: column-reverse;
        /* Put image on top if using flex, but it's grid. */
    }

    /* Grid Adjustments for Subpages */
    .services-grid,
    .haircare-description,
    .shop-info-container {
        grid-template-columns: 1fr;
    }

    .haircare-images-grid {
        grid-template-columns: 1fr;
        /* Stack images */
    }

    .shop-info-container .shop-image {
        margin-bottom: 30px;
    }

    /* 4. Font Size Adjustments */
    body {
        font-size: 15px;
    }

    .section-title {
        font-size: 1.8rem;
        /* Reduced from 2rem / desktop 3rem */
        margin-bottom: 2rem;
    }

    .hero-title {
        font-size: 1.4rem;
        /* Reduced from desktop 1.8rem */
        line-height: 1.5;
    }

    .hero-text {
        font-size: 15px;
    }

    .hero-sub {
        font-size: 1rem;
    }

    .logo-en {
        font-size: 1.5rem;
        /* Reduced from desktop 2rem */
    }

    .logo-jp {
        font-size: 1.1rem;
        /* Reduced from desktop 1.5rem */
    }

    .logo-location {
        font-size: 0.6rem;
    }

    h1,
    h2,
    h3 {
        line-height: 1.4;
    }

    /* Page Header Adjustment */
    .page-header {
        padding: 30px 0 !important;
        /* Reduced from 60px */
        margin-bottom: 30px !important;
    }

    .page-header h2 {
        font-size: 1.4rem !important;
        /* Reduced from 2rem */
        margin-bottom: 0 !important;
    }

    /* Kitsuke Page Specifics */
    .kitsuke-feature {
        padding: 30px 0 !important;
    }

    .kitsuke-feature h3 {
        font-size: 1.2rem !important;
    }

    .menu-section .section-title {
        font-size: 1.4rem !important;
        margin-bottom: 20px;
        /* Reduced if needed, standard is 30px */
    }

    .menu-section {
        padding-top: 20px !important;
        /* Reduced top spacing for Price section */
    }

    /* Haircare Page Specifics */
    .haircare-detail .text-box h3 {
        font-size: 1.2rem !important;
    }

    /* Add space below detail section to separate from Price section */
    .haircare-detail {
        padding-bottom: 40px !important;
        margin-bottom: 20px !important;
    }

    /* Shop Page Specifics */
    .shop-table th {
        border-bottom: none !important;
        /* Remove underline from item names */
    }

    .shop-access-content .section-title,
    .shop-reservation-area .section-title {
        font-size: 1.4rem !important;
        /* Reduce Access/Reservation title size */
    }

    .shop-section {
        padding: 20px 0 !important;
    }

    .shop-reservation-area {
        padding: 40px 20px !important;
    }

    /* 5. Mobile Layout Refinements */
    /* Section Padding Overrides */
    .footer {
        padding: 40px 0 !important;
        /* Force reduce top padding */
    }

    .hero-section {
        padding-top: 0 !important;
        margin-top: 0 !important;
    }

    /* Hero Full Width */
    .hero-image-wrapper {
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
        width: 100vw;
        border-radius: 0;
        margin-top: 0 !important;
        margin-bottom: 30px;
    }

    /* Remove Hero Container gaps if any */
    .hero-container {
        gap: 0;
    }

    /* Spacing Adjustments */
    .services-section,
    .news-section {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .section-title {
        margin-bottom: 30px;
    }

    /* Information List Layout (Grid for Date | Content) */
    .news-list-minimal li a {
        display: grid;
        grid-template-columns: 80px 1fr;
        gap: 15px;
        align-items: start;
    }

    /* Remove wrapper style if present, but here we work on flattened HTML */
    .news-list-minimal .date {
        grid-column: 1;
        white-space: nowrap;
        font-size: 0.85rem;
    }

    .news-list-minimal .tag {
        grid-column: 2;
        width: auto;
        display: inline-block;
        margin-bottom: 5px;
        font-size: 0.7rem;
        padding: 2px 10px;
        background-color: transparent;
        /* Reset bg if needed or keep default from PC */
        color: inherit;
        /* Reset color to inherit PC color */
        border: 1px solid #ddd;
        /* Keep border if PC has it */
    }

    /* Force PC color for icons (tags) on mobile if overridden */
    .news-list-minimal .tag {
        grid-column: 2;
        width: fit-content;
        /* Ensure it wraps content */
        justify-self: start;
        /* Prevent Grid stretch */
        display: inline-block;
        margin-bottom: 5px;
        font-size: 0.7rem;
        padding: 2px 10px;
        background-color: transparent;
        color: inherit;
        border: 1px solid #ddd;
    }

    .news-list-minimal .title {
        grid-column: 2;
        display: block;
        font-size: 0.95rem;
        line-height: 1.4;
    }

    /* Reservation Section */
    .reservation-section {
        padding-top: 40px;
    }

    .res-text h2 {
        font-size: 1.8rem;
        /* Reduced from 2.5rem+ */
        margin-bottom: 10px;
    }

    .res-info {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    /* Web Reservation Button Fix */
    .res-web.btn-primary {
        width: 100%;
        white-space: nowrap;
        padding: 15px 10px;
        font-size: 0.9rem;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .res-tel {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 5px;
    }

    .res-actions {
        flex-direction: column;
        gap: 20px;
        width: 100%;
    }

    /* Footer Layout - Grid for Mobile Side-by-Side */
    .footer-container {
        display: grid;
        grid-template-columns: 1fr 2fr;
        /* Photo | Text */
        gap: 5px;
        /* Reduced gap further */
        align-items: start;
        /* Align top to remove vertical space */
        text-align: left;
    }

    .footer-brand {
        display: contents;
    }

    .footer-image {
        grid-column: 1;
        grid-row: 1 / span 2;
        /* Left side full height */
        width: 100%;
        max-width: 100px;
        /* Increased size */
        justify-self: center;
        align-self: start;
        margin-top: 0;
    }

    .footer-image img {
        height: auto;
        aspect-ratio: 1/1;
        object-fit: cover;
    }

    .footer-logo-jp {
        grid-column: 2;
        /* Right side */
        grid-row: 1;
        /* Top */
        font-size: 0.9rem;
        text-align: left !important;
        margin-top: 0;
        white-space: nowrap;
        line-height: 1.2;
        align-self: end;
        margin-bottom: 5px;
        justify-self: start !important;
        margin-left: 0 !important;
        padding-left: 0 !important;
        width: fit-content;
    }

    .footer-brand p {
        grid-column: 2;
        /* Right side */
        grid-row: 2;
        /* Bottom */
        font-size: 0.75rem;
        line-height: 1.6;
        align-self: start;
        margin: 0;
        text-align: left !important;
        justify-self: start !important;
        margin-left: 0 !important;
        padding-left: 0 !important;
    }

    .footer-links {
        grid-column: 1 / -1;
        margin-top: 30px;
        /* Reduced margin */
        width: 100%;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
        padding-top: 20px;
    }

    /* Footer Nav: Grid 6 columns for perfect 3-2 split */
    .footer-menu {
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        gap: 5px;
        /* Tighter nav spacing */
        width: 100%;
    }

    .footer-menu li {
        width: auto;
        text-align: center;
        margin: 0;
    }

    /* First 3 items span 2 cols each = 6 cols (Row 1) */
    .footer-menu li:nth-child(1),
    .footer-menu li:nth-child(2),
    .footer-menu li:nth-child(3) {
        grid-column: span 2;
        width: auto;
        /* Reset flex width */
    }

    /* Next 2 items span 3 cols each = 6 cols (Row 2) */
    .footer-menu li:nth-child(4),
    .footer-menu li:nth-child(5) {
        grid-column: span 3;
        width: auto;
    }

    .footer-copy {
        grid-column: 1 / -1;
    }

    .footer-menu a {
        font-size: 0.8rem;
    }

    /* Mobile Address Break */
    .address-break {
        display: block;
    }
}

@media (max-width: 768px) {
    .contact-form-section {
        padding: 30px 0;
    }

    .contact-form,
    .privacy-content {
        padding: 20px;
    }

    .submit-btn {
        width: 100%;
        padding: 15px;
    }

    /* Privacy text fix */
    .privacy-content h3 {
        font-size: 1.3rem;
    }

    /* Contact Page Mobile */
    .intro-text {
        text-align: left;
    }

    .pc-br {
        display: none;
    }

    /* Mobile Nav Contact Button */
    .nav-contact-mobile {
        display: block;
        margin-top: 20px;
        padding: 0 20px;
        width: 100%;
        box-sizing: border-box;
    }

    .btn-contact-nav {
        display: block;
        background: #f5f5f5;
        color: var(--text-color);
        text-align: center;
        padding: 15px;
        border-radius: 4px;
        text-decoration: none;
        font-weight: 500;
    }

    /* Footer Bottom Mobile */
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
    }

    .footer-legal {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }

    .footer-copy {
        width: 100%;
        text-align: center;
    }

    /* Reservation Buttons Mobile */
    .res-buttons {
        width: 100%;
        align-items: center;
    }

    .res-buttons .res-web {
        width: 100%;
        justify-content: center;
        box-sizing: border-box;
    }
}

/* Mobile Styles for News Single Page (Ensure priority) */
@media (max-width: 768px) {
    .news-article {
        padding: 2rem 1.5rem !important;
    }

    .article-body {
        font-size: 0.875rem !important;
        /* 14px */
    }
}
.pagination__btn--last, .pagination__btn--first, .pagination__btn--next, .pagination__btn--prev, .pagination__item a, .pagination__item--current {
  display: block;
  color: #666;
  text-align: center;
  text-decoration: none;
  border: 1px solid #ccc;
  min-width: 1em;
  transition: all 0.3s;
  padding: 0.5em 0.5em;
  margin: 0 0.2em;
}
.pagination__btn--last:hover:not(li), .pagination__btn--first:hover:not(li), .pagination__btn--next:hover:not(li), .pagination__btn--prev:hover:not(li), .pagination__item a:hover:not(li), .pagination__item--current:hover:not(li) {
  background: #f3f3f3;
}

.pagination {
  box-sizing: border-box;
  display: flex;
  justify-content: center;

  color: #666;
  line-height: 1;
  margin: 0;
  padding: 2em 0;
}
.pagination__list {
  display: none;
}
.pagination__pos {
  order: 2;
  border: 1px solid #ccc;
  margin: 0 0.2em;
  padding: 0.5em 1em;
}
.pagination__btn--prev {
  order: 1;
}
.pagination__btn--next {
  order: 3;
}
.pagination__btn--first {
  display: none;
}
.pagination__btn--last {
  display: none;
}
@media (min-width: 520px) {
  .pagination__list {
    order: 2;
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .pagination__item--current {
    background: #f6988f;
    color: #fff;
    font-weight: bold;
  }
  .pagination__pos {
    display: none;
  }
  .pagination__btn--prev {
    order: 1;
  }
  .pagination__btn--next {
    order: 3;
  }
}
@media (min-width: 960px) {
  .pagination__list {
    order: 3;
  }
  .pagination__btn--prev {
    order: 2;
  }
  .pagination__btn--next {
    order: 4;
  }
  .pagination__btn--first {
    order: 1;
    display: block;
  }
  .pagination__btn--last {
    order: 5;
    display: block;
  }
}