@charset "UTF-8";

:root {
    --bg: #0a0a0a;
    --text: #f5f5f5;
    --accent: #bc9b6a;
    --grid-line: rgba(255, 255, 255, 0.08);
    --mono: 'Space Mono', monospace;
    --sans: 'Outfit', sans-serif;
    --cursor-size: 20px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    word-break: keep-all;
    cursor: none;
}

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: var(--sans);
    overflow-x: hidden;
    line-height: 1.5;
}

/* Custom Cursor */
.cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: var(--cursor-size);
    height: var(--cursor-size);
    border: 1px solid var(--accent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, background-color 0.3s;
    mix-blend-mode: difference;
}

.cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    width: 4px;
    height: 4px;
    background-color: var(--accent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
}

body.hovering .cursor {
    width: 50px;
    height: 50px;
    background-color: rgba(188, 155, 106, 0.1);
    border-color: transparent;
}

/* Grid System */
.background-grid {
    position: fixed;
    inset: 0 5%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    z-index: -1;
    pointer-events: none;
}

.grid-col {
    border-right: 1px solid var(--grid-line);
    position: relative;
    --scan-pos: -100%;
}

.grid-col:first-child {
    border-left: 1px solid var(--grid-line);
}

.grid-col::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, var(--accent), transparent);
    transform: translateY(var(--scan-pos));
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    padding: 0 5%;
}

/* Header */
header {
    padding: 2rem 5%;
    border-bottom: 1px solid var(--grid-line);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
}

.logo {
    font-family: var(--mono);
    font-weight: 700;
    letter-spacing: -0.05em;
    font-size: 1.25rem;
    position: relative;
    flex-shrink: 0;
}

.logo span {
    color: var(--accent);
}

.logo a {
    color: inherit;
    text-decoration: none;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    font-family: var(--mono);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

nav a {
    color: var(--text);
    text-decoration: none;
    opacity: 0.6;
    transition: color 0.3s, opacity 0.3s;
    position: relative;
}

nav a.active {
    opacity: 1;
    color: var(--accent);
}

nav a::before {
    content: '[';
    margin-right: 5px;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s;
    display: inline-block;
    color: var(--accent);
}

nav a::after {
    content: ']';
    margin-left: 5px;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s;
    display: inline-block;
    color: var(--accent);
}

nav a:hover,
nav a.active {
    opacity: 1;
    color: var(--accent);
}

nav a:hover::before,
nav a:hover::after,
nav a.active::before,
nav a.active::after {
    opacity: 1;
    transform: translateX(0);
}

/* Sections */
section {
    padding: 6rem 0;
    border-bottom: 1px solid var(--grid-line);
    position: relative;
}

/* Sub Page Header */
.page-header {
    padding: 160px 0 2rem;
}

.page-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.page-desc {
    font-family: var(--mono);
    color: var(--accent);
    font-size: 0.9rem;
}

/* Common UI Elements */
.btn {
    font-family: var(--mono);
    text-transform: uppercase;
    padding: 1rem 2rem;
    border: 1px solid var(--text);
    color: var(--text);
    background: transparent;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s;
    font-size: 0.85rem;
    margin-top: 1rem;
    position: relative;
    overflow: hidden;
    width: fit-content;
    cursor: pointer;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--text);
    transition: left 0.4s cubic-bezier(0.2, 1, 0.3, 1);
    z-index: -1;
}

.btn:hover {
    color: var(--bg);
}

.btn:hover::before {
    left: 0;
}

/* Footer */
footer {
    padding: 4rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--mono);
    font-size: 0.7rem;
    opacity: 0.5;
    border-top: 1px solid var(--grid-line);
}

/* Loading Screen */
.loader {
    position: fixed;
    inset: 0;
    background: var(--bg);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.loader-text {
    font-family: var(--mono);
    font-size: 0.8rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

.loader-bar {
    width: 200px;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.loader-progress {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0%;
    background: var(--accent);
}

/* Mobile Adjustments */
@media (max-width: 1024px) {
    .feature {
        grid-template-columns: 1fr;
    }

    .info-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .info-item:nth-child(2) {
        border-right: none;
    }

    .contact-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .menu-item {
        grid-template-columns: 0.8fr 2fr 1.5fr 1fr;
    }

    .hero-flex {
        flex-direction: column;
        gap: 2rem;
    }

    .hero-image {
        width: 100%;
        height: 350px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }

    .background-grid {
        inset: 0 1.5rem;
        grid-template-columns: repeat(2, 1fr);
    }

    header {
        flex-direction: column;
        gap: 0.8rem;
        align-items: flex-start;
        padding: 0.8rem 5%;
    }

    .logo {
        font-size: 1.1rem;
    }

    nav ul {
        gap: clamp(0.3rem, 1.5vw, 0.8rem);
        font-size: clamp(0.45rem, 2.2vw, 0.7rem);
        flex-wrap: nowrap;
        white-space: nowrap;
        width: 100%;
        justify-content: center;
    }

    footer {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .info-item {
        border-bottom: 1px solid var(--grid-line);
        padding: 3rem 0;
        border-right: none;
    }

    .course-gallery {
        flex-direction: column;
        gap: 2rem;
    }

    .course-img-item {
        width: 100%;
        min-width: 0;
        height: 300px;
    }

    .about-content {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        align-items: center;
    }

    .chef-intro br:not(.m-br) {
        display: none;
    }

    .m-br {
        display: inline;
    }

    .chef-intro {
        font-size: 1.1rem !important;
        order: 1;
        padding: 0 1rem;
    }

    .chef-intro .intro-desc {
        text-align: center;
        word-break: keep-all;
        letter-spacing: -0.02em;
        line-height: 1.7;
    }

    .chef-image {
        width: 100%;
        height: 350px !important;
        border-left: none;
        border: none;
        /* Reset all borders first */
        border-bottom: 1px solid var(--grid-line);
        /* Apply only bottom border */
        order: 2;
    }

    .about-btn-wrap {
        order: 3;
        margin-top: 1rem;
    }

    .page-title {
        font-size: clamp(2.5rem, 10vw, 3.5rem);
    }

    .page-header {
        padding-top: 100px;
        padding-bottom: 1rem;
    }

    section {
        padding: 2rem 0;
    }

    .course-section {
        padding-top: 100px;
    }

    /* Hero Section Mobile */
    .hero {
        min-height: auto;
        padding-top: 120px;
    }

    .hero-flex {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
    }

    .hero-desc {
        max-width: 100%;
        font-size: 1rem;
    }

    .hero-image {
        width: 100%;
        height: 250px;
    }

    /* Feature Section Mobile */
    .feature {
        display: flex;
        flex-direction: column;
    }

    .feature-image {
        width: 100%;
        height: 200px;
        border-right: none;
        border-bottom: 1px solid var(--grid-line);
        order: 1;
        clip-path: none;
        background-size: cover;
        background-position: center;
    }

    .feature-content {
        padding: 2rem 1rem;
        order: 2;
    }

    .feature-tag {
        opacity: 1;
    }

    .feature h2 {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
        opacity: 1;
        transform: none;
    }

    .feature-desc {
        font-size: 0.95rem;
        margin-bottom: 2rem;
        opacity: 0.7;
        transform: none;
    }

    .feature .btn {
        width: 100%;
        justify-content: center;
    }

    /* Menu Items Mobile */
    .menu-item {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        padding: 1.5rem 0;
    }

    .m-id {
        order: 1;
    }

    .m-name {
        order: 2;
        font-size: 1.1rem;
    }

    .m-spec {
        order: 3;
    }

    .m-price {
        order: 4;
        text-align: left;
        margin-top: 0.5rem;
        font-size: 1.1rem;
    }

    .menu-list {
        margin-top: 2rem;
    }

    /* Contact Page Mobile */
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-value {
        font-size: 1.2rem;
    }

    .map-box {
        height: 250px;
        font-size: 0.75rem;
    }

    /* Reserve Page Mobile */
    .reserve-form-container {
        padding: 2rem 1.5rem;
        border: none;
        border-top: 1px solid var(--grid-line);
        border-bottom: 1px solid var(--grid-line);
    }

    .form-input,
    .form-select {
        font-size: 1rem;
    }
}

/* -----------------------------------------------------
   Specific Page Styles
   ----------------------------------------------------- */

/* Hero (Master) */
.hero {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-label {
    font-family: var(--mono);
    font-size: 0.8rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 7rem);
    font-weight: 700;
    line-height: 0.9;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    margin-left: -0.05em;
}

.hero-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: 2rem;
}

.hero-desc {
    max-width: 400px;
    font-weight: 300;
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.6);
}

.hero-image {
    width: 50%;
    height: 400px;
    background: url('hero.png') center/cover no-repeat;
    position: relative;
    clip-path: inset(0 100% 0 0);
}

.hero-image::after {
    content: '[ IMG-01 ]';
    position: absolute;
    bottom: -1.5rem;
    right: 0;
    font-family: var(--mono);
    font-size: 0.65rem;
    opacity: 0.4;
}

/* Info Grid (Master) */
.info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-bottom: 1px solid var(--grid-line);
}

.info-item {
    padding: 4rem 2rem;
    border-right: 1px solid var(--grid-line);
    transition: background 0.3s;
}

.info-item:hover {
    background: rgba(255, 255, 255, 0.02);
}

.info-item:last-child {
    border-right: none;
}

.info-num {
    font-family: var(--mono);
    color: var(--accent);
    margin-bottom: 1rem;
    display: block;
    font-size: 0.8rem;
}

.info-title {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.info-text {
    font-size: 0.9rem;
    opacity: 0.5;
    font-weight: 300;
}

/* Feature Section (Master) */
.feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.feature-image {
    height: 600px;
    background: url('knife.png') center/cover no-repeat;
    border-right: 1px solid var(--grid-line);
    clip-path: inset(100% 0 0 0);
}

.feature-content {
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feature-tag {
    font-family: var(--mono);
    font-size: 0.75rem;
    margin-bottom: 2rem;
    border: 1px solid var(--accent);
    padding: 0.25rem 0.75rem;
    align-self: flex-start;
    opacity: 0;
}

.feature h2 {
    font-size: 4rem;
    line-height: 1;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(20px);
}

.feature-desc {
    font-size: 1.1rem;
    font-weight: 300;
    opacity: 0.7;
    margin-bottom: 3rem;
    transform: translateY(20px);
}

/* Menu List */
.menu-list {
    margin-top: 4rem;
}

.menu-item {
    display: grid;
    grid-template-columns: 0.5fr 2fr 1fr 1fr;
    padding: 1.5rem 0;
    border-top: 1px solid var(--grid-line);
    align-items: center;
    transition: padding-left 0.3s, background 0.3s;
    position: relative;
}

.menu-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: var(--accent);
    transform: scaleY(0);
    transition: transform 0.3s;
    transform-origin: top;
}

.menu-item:hover {
    background: rgba(255, 255, 255, 0.03);
    padding-left: 2rem;
}

.menu-item:hover::before {
    transform: scaleY(1);
}

.m-id {
    font-family: var(--mono);
    font-size: 0.8rem;
    opacity: 0.4;
}

.m-name {
    font-size: 1.25rem;
    font-weight: 400;
}

.m-spec {
    font-family: var(--mono);
    font-size: 0.75rem;
    opacity: 0.6;
}

.m-price {
    text-align: right;
    color: var(--accent);
    font-weight: 700;
}

/* Sub Page: About */
.about-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.chef-intro {
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 1.6;
    width: 100%;
}

.intro-quote {
    margin-bottom: 2rem;
    text-align: center;
    word-break: keep-all;
}

.intro-desc {
    font-size: 1rem;
    opacity: 0.8;
    font-weight: 300;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

/* Mobile Break */
.m-br {
    display: none;
}

.chef-intro strong {
    color: var(--accent);
}

.chef-image {
    width: 100%;
    height: 600px;
    background: url('chef_hand.png') center/cover no-repeat;
    position: relative;
    border: 1px solid var(--grid-line);
}

.chef-image::after {
    content: '[ CHEF-PROFILE ]';
    position: absolute;
    bottom: -1.5rem;
    right: 0;
    font-family: var(--mono);
    font-size: 0.65rem;
    opacity: 0.4;
}

.about-btn-wrap {
    display: flex;
    justify-content: center;
    width: 100%;
}

/* Sub Page: Reserve */
.reserve-form-container {
    max-width: 800px;
    padding: 4rem;
    border: 1px solid var(--grid-line);
}

.form-group {
    margin-bottom: 2rem;
}

.form-label {
    display: block;
    font-family: var(--mono);
    font-size: 0.8rem;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.form-input,
.form-select {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--grid-line);
    padding: 1rem 0;
    color: var(--text);
    font-family: var(--sans);
    font-size: 1.25rem;
    border-radius: 0;
}

.form-input:focus,
.form-select:focus {
    outline: none;
    border-bottom-color: var(--accent);
}

.form-select option {
    background: var(--bg);
    color: var(--text);
}

::placeholder {
    color: rgba(245, 245, 245, 0.3);
}

/* Sub Page: Contact */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info-item {
    margin-bottom: 3rem;
}

.contact-label {
    font-family: var(--mono);
    color: var(--accent);
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
}

.contact-value {
    font-size: 1.5rem;
    font-weight: 300;
}

.map-box {
    width: 100%;
    height: 400px;
    background: #1a1a1a;
    border: 1px solid var(--grid-line);
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: var(--mono);
    color: rgba(255, 255, 255, 0.3);
}

/* Gallery Course Layout */
.course-section {
    padding: 3rem 0;
    border-bottom: 1px solid var(--grid-line);
}

.course-header {
    margin-bottom: 3rem;
    padding-left: 1rem;
    border-left: 2px solid var(--accent);
}

.course-id {
    font-family: var(--mono);
    color: var(--accent);
    margin-bottom: 0.5rem;
    font-size: 0.8rem;
}

.course-title {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    font-family: var(--sans);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.course-desc {
    font-size: 1rem;
    max-width: 600px;
    opacity: 0.8;
    font-weight: 300;
    font-family: 'Noto Serif KR', serif;
    line-height: 1.8;
    letter-spacing: -0.02em;
}

.course-gallery {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    padding-bottom: 2rem;
    scrollbar-width: none;
    mask-image: linear-gradient(to right, black 90%, transparent 100%);
}

.course-gallery::-webkit-scrollbar {
    display: none;
}

.course-img-item {
    min-width: 350px;
    height: 450px;
    background: var(--grid-line);
    position: relative;
    overflow: hidden;
}

.course-img-item:first-child {
    margin-left: 0;
}

.course-img-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease-out;
}

.course-img-item:hover img {
    transform: scale(1.1);
}

.course-img-caption {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(3px);
    font-family: 'Noto Serif KR', serif;
    font-size: 1.3rem;
    font-weight: 400;
    color: #fff;
    letter-spacing: -0.02em;
    opacity: 0;
    transition: all 0.4s ease;
    text-align: center;
    padding: 0;
}

.course-img-item:hover .course-img-caption {
    opacity: 1;
    background: rgba(0, 0, 0, 0.6);
}

/* Floating Cursor Label Style */
#gallery-cursor-label {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    padding: 0.8rem 1.2rem;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(5px);
    border: 1px solid var(--accent);
    color: var(--text);
    font-family: 'Noto Serif KR', serif;
    font-size: 1rem;
    white-space: nowrap;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8);
    transition: opacity 0.2s ease, transform 0.2s ease;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

#gallery-cursor-label.active {
    opacity: 1;
    transform: translate(20px, 20px) scale(1);
}

/* -----------------------------------------------------
   Flatpickr Customization
   ----------------------------------------------------- */
.flatpickr-calendar {
    background: var(--bg) !important;
    border: 1px solid var(--grid-line) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5) !important;
    font-family: var(--mono) !important;
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.selected.inRange,
.flatpickr-day.startRange.inRange,
.flatpickr-day.endRange.inRange,
.flatpickr-day:hover,
.flatpickr-day.prevMonthDay:hover,
.flatpickr-day.nextMonthDay:hover,
.flatpickr-day:focus,
.flatpickr-day.prevMonthDay:focus,
.flatpickr-day.nextMonthDay:focus {
    background: var(--accent) !important;
    border-color: var(--accent) !important;
    color: var(--bg) !important;
}

.flatpickr-months .flatpickr-prev-month:hover svg,
.flatpickr-months .flatpickr-next-month:hover svg {
    fill: var(--accent) !important;
}

.flatpickr-months .flatpickr-month {
    background: var(--bg) !important;
    color: var(--text) !important;
}

.flatpickr-current-month .flatpickr-monthDropdown-months {
    background: var(--bg) !important;
    font-family: var(--mono) !important;
}

.flatpickr-weekdays {
    background: var(--bg) !important;
}

.flatpickr-weekday {
    color: var(--accent) !important;
    font-family: var(--mono) !important;
}

/* -----------------------------------------------------
   MOBILE RESPONSIVE OVERRIDES (FINAL - HIGHEST PRIORITY)
   ----------------------------------------------------- */
@media (max-width: 1024px) {
    .feature {
        grid-template-columns: 1fr !important;
    }

    .info-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .contact-layout {
        grid-template-columns: 1fr !important;
    }

    .hero-flex {
        flex-direction: column !important;
        gap: 2rem !important;
    }

    .hero-image {
        width: 100% !important;
        height: 300px !important;
        clip-path: none !important;
    }
}

@media (max-width: 768px) {

    /* Container */
    .container {
        padding: 0 1.5rem !important;
    }

    /* Header */
    header {
        flex-direction: column !important;
        gap: 0.8rem !important;
        align-items: flex-start !important;
        padding: 0.8rem 5% !important;
    }

    .logo {
        font-size: 1.1rem !important;
    }

    nav ul {
        gap: clamp(0.5rem, 2vw, 1rem) !important;
        font-size: clamp(0.55rem, 2.5vw, 0.75rem) !important;
        flex-wrap: nowrap !important;
        width: 100% !important;
        justify-content: flex-start !important;
    }

    /* Hero Section */
    .hero {
        min-height: auto !important;
        padding-top: 120px !important;
    }

    .hero h1 {
        font-size: clamp(2.5rem, 12vw, 4rem) !important;
    }

    .hero-flex {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 2rem !important;
    }

    .hero-desc {
        max-width: 100% !important;
        font-size: 1rem !important;
    }

    .hero-image {
        width: 100% !important;
        height: 220px !important;
        clip-path: none !important;
    }

    /* Info Grid */
    .info-grid {
        grid-template-columns: 1fr !important;
    }

    .info-item {
        border-bottom: 1px solid var(--grid-line) !important;
        padding: 2rem 0 !important;
        border-right: none !important;
    }

    .info-item:last-child {
        border-bottom: none !important;
    }

    /* Feature Section */
    .feature {
        display: flex !important;
        flex-direction: column !important;
    }

    .feature-image {
        width: 100% !important;
        height: 200px !important;
        border-right: none !important;
        border-bottom: 1px solid var(--grid-line) !important;
        order: 1 !important;
        clip-path: none !important;
    }

    .feature-content {
        padding: 2rem 1rem !important;
        order: 2 !important;
    }

    .feature-tag {
        opacity: 1 !important;
    }

    .feature h2 {
        font-size: clamp(1.8rem, 8vw, 2.5rem) !important;
        opacity: 1 !important;
        transform: none !important;
    }

    .feature-desc {
        font-size: 0.95rem !important;
        margin-bottom: 1.5rem !important;
        opacity: 1 !important;
        transform: none !important;
    }

    .feature .btn {
        width: 100% !important;
        justify-content: center !important;
    }

    /* Menu Section */
    .menu-list {
        margin-top: 1.5rem !important;
    }

    .menu-item {
        display: flex !important;
        flex-direction: column !important;
        gap: 0.3rem !important;
        padding: 1.2rem 0 !important;
    }

    .m-id,
    .m-name,
    .m-spec,
    .m-price {
        width: 100% !important;
    }

    .m-price {
        text-align: left !important;
        margin-top: 0.5rem !important;
    }

    /* Contact Page */
    .contact-layout {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }

    .contact-value {
        font-size: 1.1rem !important;
    }

    .map-box {
        height: 220px !important;
        font-size: 0.7rem !important;
    }

    /* Reserve Page */
    .reserve-form-container {
        padding: 2rem 1rem !important;
        border: none !important;
        border-top: 1px solid var(--grid-line) !important;
        border-bottom: 1px solid var(--grid-line) !important;
    }

    .form-input,
    .form-select {
        font-size: 1rem !important;
    }

    /* Footer */
    footer {
        flex-direction: column !important;
        gap: 0.8rem !important;
        align-items: flex-start !important;
        padding: 2rem 0 !important;
    }

    /* Page Header */
    .page-header {
        padding-top: 100px !important;
        padding-bottom: 1rem !important;
    }

    .page-title {
        font-size: clamp(2rem, 10vw, 3rem) !important;
    }

    /* Section */
    section {
        padding: 2rem 0 !important;
    }

    /* Button */
    .btn {
        padding: 0.8rem 1.5rem !important;
        font-size: 0.8rem !important;
    }
}