@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&family=Zen+Kaku+Gothic+New:wght@300;400&family=EB+Garamond:ital,wght@0,400;1,400&display=swap');

/* =========================================
   Design Tokens
========================================= */
:root {
    --cream:        #fdf8f4;
    --cream-dark:   #f5ede4;
    --blush:        #f2d8cb;
    --blush-mid:    #e8b9a3;
    --rose:         #c97e6a;
    --rose-deep:    #a8614f;
    --gold:         #c9a96e;
    --gold-light:   #e8d5b0;
    --gold-pale:    #f5edd8;
    --text:         #3d2e27;
    --text-mid:     #7a5c52;
    --text-light:   #b0927f;
    --white:        #ffffff;

    --font-serif:   'Cormorant Garamond', 'EB Garamond', serif;
    --font-sans:    'Zen Kaku Gothic New', sans-serif;

    --transition:   0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --radius-sm:    8px;
    --radius-md:    16px;
    --radius-lg:    28px;
    --radius-full:  999px;
}

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

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

body {
    font-family: var(--font-sans);
    color: var(--text);
    background: var(--cream);
    overflow-x: hidden;
    line-height: 1.8;
    font-weight: 300;
}

img { display: block; width: 100%; }

/* =========================================
   Header
========================================= */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 200;
    transition: var(--transition);
    padding: 18px 48px;
}

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

.header.scrolled {
    background: rgba(253, 248, 244, 0.94);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 1px 0 rgba(201, 169, 110, 0.2);
    padding: 12px 48px;
}

.logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
    text-decoration: none;
}

.logo-en {
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 3px;
    color: var(--text);
}

.logo-ja {
    font-size: 10px;
    letter-spacing: 2px;
    color: var(--text-light);
    margin-top: 2px;
}

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

.nav a {
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 1.5px;
    color: var(--text-mid);
    transition: color var(--transition);
    font-weight: 400;
}

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

.nav-reserve {
    padding: 9px 22px;
    border: 1px solid var(--gold);
    border-radius: var(--radius-full);
    color: var(--gold) !important;
    transition: all var(--transition) !important;
}

.nav-reserve:hover {
    background: var(--gold) !important;
    color: var(--white) !important;
}

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

.hamburger span {
    display: block;
    width: 24px;
    height: 1px;
    background: var(--text);
    transition: var(--transition);
    transform-origin: center;
}

.hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: var(--cream);
    z-index: 190;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.mobile-menu.open {
    opacity: 1;
    pointer-events: all;
}

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

.mobile-link {
    font-family: var(--font-serif);
    font-size: 28px;
    letter-spacing: 3px;
    color: var(--text);
    text-decoration: none;
    transition: color var(--transition);
}

.mobile-link:hover { color: var(--rose); }

.mobile-reserve {
    margin-top: 12px;
    font-size: 20px;
    color: var(--gold) !important;
    padding: 14px 40px;
    border: 1px solid var(--gold);
    border-radius: var(--radius-full);
}

/* =========================================
   Hero
========================================= */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--cream);
    position: relative;
    overflow: hidden;
    padding: 100px 48px 60px;
}

.hero-bg-deco {
    position: absolute;
    top: -120px;
    right: -120px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--blush) 0%, transparent 70%);
    opacity: 0.5;
    pointer-events: none;
}

.hero-circle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.circle-1 {
    width: 320px;
    height: 320px;
    border: 1px solid var(--gold-light);
    bottom: -80px;
    left: -60px;
    opacity: 0.6;
}

.circle-2 {
    width: 160px;
    height: 160px;
    border: 1px solid var(--blush-mid);
    bottom: 80px;
    left: 40px;
    opacity: 0.5;
}

.hero-wrap {
    display: flex;
    align-items: center;
    gap: 64px;
    max-width: 1100px;
    width: 100%;
    position: relative;
    z-index: 2;
}

.hero-image-col {
    flex: 1.1;
    position: relative;
}

.hero-frame {
    position: relative;
    border-radius: 60% 40% 55% 45% / 50% 55% 45% 50%;
    overflow: hidden;
    aspect-ratio: 3/4;
    max-width: 360px;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    transition: transform 6s ease;
}

.hero-img:hover { transform: scale(1.0); }

.hero-frame-deco {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: inset 0 0 0 1px rgba(201, 169, 110, 0.3);
    pointer-events: none;
}

.hero-sub-images {
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hero-sub {
    width: 100px;
    height: 100px;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 3px solid var(--white);
    box-shadow: 0 4px 16px rgba(61,46,39,0.12);
}

.hero-sub img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-badge {
    position: absolute;
    bottom: 24px;
    left: -20px;
    width: 88px;
    height: 88px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 10px;
    letter-spacing: 1px;
    color: var(--gold);
    border: 1px solid var(--gold-light);
    font-weight: 400;
    line-height: 1.6;
    box-shadow: 0 4px 20px rgba(201,169,110,0.2);
}

.hero-text-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero-eyebrow {
    font-size: 12px;
    letter-spacing: 3px;
    color: var(--gold);
    font-weight: 400;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: 56px;
    font-weight: 400;
    line-height: 1.25;
    color: var(--text);
}

.hero-title em {
    font-style: italic;
    color: var(--rose);
}

.hero-desc {
    font-size: 14px;
    color: var(--text-mid);
    line-height: 2;
}

.hero-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.hero-chips span {
    font-size: 11px;
    padding: 4px 14px;
    border-radius: var(--radius-full);
    background: var(--gold-pale);
    color: var(--gold);
    letter-spacing: 1px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 4px;
}

.btn-primary {
    display: inline-block;
    padding: 14px 36px;
    background: var(--rose);
    color: var(--white);
    text-decoration: none;
    border-radius: var(--radius-full);
    font-size: 13px;
    letter-spacing: 1px;
    transition: all var(--transition);
    font-weight: 400;
}

.btn-primary:hover {
    background: var(--rose-deep);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201, 126, 106, 0.3);
}

.btn-ghost {
    font-size: 13px;
    color: var(--text-mid);
    text-decoration: none;
    letter-spacing: 1px;
    transition: color var(--transition);
}

.btn-ghost:hover { color: var(--rose); }

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.scroll-line {
    display: block;
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2s ease infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

.scroll-text {
    font-size: 10px;
    letter-spacing: 3px;
    color: var(--gold);
    font-weight: 400;
}

/* =========================================
   Feature (こだわり)
========================================= */
.feature-section {
    background: var(--text);
    padding: 0;
}

.feature-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 1100px;
    margin: 0 auto;
}

.feature-card {
    padding: 52px 40px;
    border-right: 1px solid rgba(255,255,255,0.07);
    position: relative;
    transition: background var(--transition);
}

.feature-card:last-child { border-right: none; }

.feature-card:hover { background: rgba(255,255,255,0.04); }

.feature-num {
    font-family: var(--font-serif);
    font-size: 48px;
    color: rgba(201,169,110,0.15);
    font-weight: 400;
    line-height: 1;
    margin-bottom: 20px;
}

.feature-icon {
    color: var(--gold);
    margin-bottom: 16px;
}

.feature-card h3 {
    font-size: 16px;
    color: var(--white);
    font-weight: 400;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    line-height: 2;
}

/* =========================================
   Sections Common
========================================= */
.section { padding: 100px 48px; }

.section-inner {
    max-width: 1060px;
    margin: 0 auto;
}

.section-label {
    font-size: 11px;
    letter-spacing: 4px;
    color: var(--gold);
    text-align: center;
    margin-bottom: 16px;
    font-weight: 400;
}

.section-heading {
    font-family: var(--font-serif);
    font-size: 42px;
    font-weight: 400;
    text-align: center;
    line-height: 1.3;
    color: var(--text);
    margin-bottom: 52px;
}

.section-heading.left { text-align: left; }

/* =========================================
   Concept
========================================= */
.concept-section {
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.concept-deco-text {
    position: absolute;
    font-family: var(--font-serif);
    font-size: 180px;
    font-weight: 400;
    color: var(--blush);
    opacity: 0.2;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
    pointer-events: none;
    letter-spacing: 10px;
    user-select: none;
}

.concept-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.concept-img-col { position: relative; }

.concept-img-wrap {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/5;
}

.concept-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 6s ease;
}

.concept-img-wrap:hover img { transform: scale(1.04); }

.concept-img-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 160px;
    height: 160px;
    border: 1px solid var(--gold-light);
    border-radius: var(--radius-lg);
    pointer-events: none;
    z-index: -1;
}

.concept-content { padding: 20px 0; }

.concept-divider {
    width: 60px;
    height: 1px;
    background: var(--gold-light);
    margin: 24px 0;
}

.concept-text {
    font-size: 15px;
    color: var(--text-mid);
    line-height: 2.2;
    margin-bottom: 32px;
}

.concept-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag {
    padding: 6px 18px;
    border: 1px solid var(--gold-light);
    border-radius: var(--radius-full);
    font-size: 12px;
    color: var(--gold);
    letter-spacing: 1px;
}

/* =========================================
   Menu
========================================= */
.menu-section { background: var(--cream); }

.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 28px;
}

.menu-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--gold-light);
    transition: all var(--transition);
}

.menu-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(201, 169, 110, 0.15);
}

.menu-img-wrap {
    aspect-ratio: 4/3;
    overflow: hidden;
}

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

.menu-card:hover .menu-img-wrap img { transform: scale(1.06); }

.menu-body {
    padding: 28px 28px 32px;
    text-align: center;
}

.menu-icon {
    font-size: 16px;
    color: var(--gold);
    margin-bottom: 12px;
    letter-spacing: 0;
}

.menu-name {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 400;
    color: var(--text);
    margin-bottom: 10px;
}

.menu-desc {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 20px;
}

.menu-price-wrap {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.menu-price {
    font-family: var(--font-serif);
    font-size: 32px;
    font-weight: 400;
    color: var(--rose);
}

.menu-price-from {
    font-size: 14px;
    color: var(--text-light);
}

.menu-note {
    text-align: center;
    font-size: 12px;
    color: var(--text-light);
    letter-spacing: 0.5px;
}

/* =========================================
   Gallery
========================================= */
.gallery-section { background: var(--white); }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
    gap: 12px;
    margin-bottom: 40px;
}

.gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 1;
    position: relative;
}

.gallery-item.gallery-large {
    grid-row: span 2;
    aspect-ratio: auto;
}

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

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

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 60%, rgba(61,46,39,0.12));
    opacity: 0;
    transition: opacity var(--transition);
}

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

.instagram-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    color: var(--gold);
    font-size: 13px;
    letter-spacing: 2px;
    transition: opacity var(--transition);
    font-weight: 400;
    padding: 14px 32px;
    border: 1px solid var(--gold-light);
    border-radius: var(--radius-full);
    width: fit-content;
    margin: 0 auto;
}

.instagram-link:hover { opacity: 0.7; }

/* =========================================
   Voice (お客様の声)
========================================= */
.voice-section { background: var(--cream-dark); }

.voice-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.voice-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    border: 1px solid var(--gold-light);
    position: relative;
}

.voice-card::before {
    content: '"';
    font-family: var(--font-serif);
    font-size: 80px;
    color: var(--blush);
    position: absolute;
    top: 12px;
    left: 20px;
    line-height: 1;
    pointer-events: none;
}

.voice-stars {
    color: var(--gold);
    font-size: 14px;
    letter-spacing: 3px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.voice-text {
    font-size: 13.5px;
    color: var(--text-mid);
    line-height: 2;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.voice-author {
    border-top: 1px solid var(--gold-pale);
    padding-top: 16px;
}

.voice-name {
    font-size: 12px;
    color: var(--text-light);
    letter-spacing: 1px;
}

/* =========================================
   Flow (ご来店の流れ)
========================================= */
.flow-section { background: var(--white); }

.flow-list {
    max-width: 680px;
    margin: 0 auto;
    position: relative;
}

.flow-item {
    display: flex;
    gap: 28px;
    align-items: flex-start;
    position: relative;
    z-index: 1;
}

.flow-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gold-light), transparent);
    margin: 0 0 0 22px;
}

.flow-step {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--gold-light);
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
}

.flow-num {
    font-family: var(--font-serif);
    font-size: 18px;
    color: var(--gold);
    font-weight: 400;
}

.flow-content {
    padding-bottom: 0;
    flex: 1;
}

.flow-content h3 {
    font-size: 16px;
    font-weight: 400;
    color: var(--text);
    letter-spacing: 1px;
    margin-bottom: 8px;
    margin-top: 10px;
}

.flow-content p {
    font-size: 13.5px;
    color: var(--text-mid);
    line-height: 2;
}

/* =========================================
   FAQ
========================================= */
.faq-section { background: var(--cream); }

.faq-list {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-item {
    border-bottom: 1px solid var(--gold-light);
}

.faq-item:first-child {
    border-top: 1px solid var(--gold-light);
}

.faq-q {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    gap: 16px;
}

.faq-q span:first-child {
    font-size: 15px;
    color: var(--text);
    font-weight: 400;
    letter-spacing: 0.5px;
    line-height: 1.6;
}

.faq-icon {
    font-size: 22px;
    color: var(--gold);
    flex-shrink: 0;
    font-weight: 300;
    transition: transform var(--transition);
    width: 24px;
    text-align: center;
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-q[aria-expanded="true"] + .faq-a {
    max-height: 200px;
    padding-bottom: 20px;
}

.faq-a p {
    font-size: 13.5px;
    color: var(--text-mid);
    line-height: 2.1;
}

/* =========================================
   Access
========================================= */
.access-section { background: var(--cream-dark); }

.access-wrap {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 48px;
    align-items: start;
}

.access-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.info-icon-wrap {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--gold-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--gold);
}

.info-label {
    font-size: 11px;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 3px;
    font-weight: 400;
}

.info-value {
    font-size: 15px;
    color: var(--text);
    font-weight: 300;
}

.info-sub {
    font-size: 12px;
    color: var(--text-light);
}

.access-instagram {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--text-mid);
    font-size: 13px;
    letter-spacing: 1px;
    transition: color var(--transition);
    padding: 10px 20px;
    border: 1px solid var(--gold-light);
    border-radius: var(--radius-full);
    width: fit-content;
    margin-top: 8px;
}

.access-instagram:hover { color: var(--rose); border-color: var(--rose); }

.map-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 380px;
    border: 1px solid var(--gold-light);
}

.map-wrap iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: sepia(0.12) brightness(0.97);
}

/* =========================================
   Reserve
========================================= */
.reserve-section {
    padding: 120px 48px;
    background: var(--blush);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.reserve-deco {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.4);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.reserve-deco::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.4);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.reserve-inner { position: relative; z-index: 1; }

.reserve-eyebrow {
    font-size: 11px;
    letter-spacing: 4px;
    color: var(--rose-deep);
    margin-bottom: 16px;
    font-weight: 400;
}

.reserve-heading {
    font-family: var(--font-serif);
    font-size: 52px;
    font-weight: 400;
    color: var(--text);
    margin-bottom: 24px;
}

.reserve-text {
    font-size: 15px;
    color: var(--text-mid);
    line-height: 2.2;
    margin-bottom: 40px;
}

.btn-reserve {
    display: inline-block;
    padding: 18px 56px;
    background: var(--text);
    color: var(--white);
    text-decoration: none;
    border-radius: var(--radius-full);
    font-size: 14px;
    letter-spacing: 2px;
    transition: all var(--transition);
    font-weight: 400;
}

.btn-reserve:hover {
    background: var(--rose-deep);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(61,46,39,0.2);
}

.reserve-note {
    margin-top: 24px;
    font-size: 12px;
    color: var(--text-light);
    letter-spacing: 1px;
}

/* =========================================
   Footer
========================================= */
.footer {
    background: var(--text);
    padding: 56px 48px 32px;
}

.footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}

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

.footer-logo-en {
    font-family: var(--font-serif);
    font-size: 24px;
    letter-spacing: 4px;
    color: var(--gold-light);
    font-weight: 400;
}

.footer-logo-ja {
    font-size: 10px;
    letter-spacing: 2px;
    color: rgba(201,169,110,0.5);
    margin-top: 4px;
}

.footer-nav {
    display: flex;
    gap: 28px;
}

.footer-nav a {
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 1.5px;
    color: rgba(255,255,255,0.4);
    transition: color var(--transition);
}

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

.footer-sns {
    color: rgba(255,255,255,0.4);
    transition: color var(--transition);
}

.footer-sns:hover { color: var(--gold-light); }

.footer-divider {
    width: 100%;
    height: 1px;
    background: rgba(255,255,255,0.08);
    margin-bottom: 28px;
}

.footer-copy {
    font-size: 11px;
    color: rgba(255,255,255,0.25);
    letter-spacing: 1px;
    text-align: center;
}

/* =========================================
   Fixed Bar (Mobile)
========================================= */
.fixed-bar {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    z-index: 300;
}

.fixed-btn {
    display: block;
    text-align: center;
    padding: 16px;
    background: var(--rose);
    color: var(--white);
    text-decoration: none;
    border-radius: var(--radius-full);
    font-size: 14px;
    letter-spacing: 1px;
    box-shadow: 0 8px 24px rgba(201,126,106,0.4);
    transition: all var(--transition);
}

.fixed-btn:active { transform: scale(0.98); }

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

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

/* =========================================
   Tablet
========================================= */
@media (max-width: 900px) {
    .header { padding: 16px 32px; }
    .header.scrolled { padding: 12px 32px; }
    .nav { display: none; }
    .hamburger { display: flex; }
    .section { padding: 80px 32px; }

    .hero {
        padding: 90px 32px 60px;
        min-height: auto;
    }

    .hero-wrap {
        flex-direction: column;
        gap: 48px;
        text-align: center;
        align-items: center;
    }

    .hero-image-col { max-width: 320px; width: 100%; }
    .hero-frame { max-width: 100%; }
    .hero-sub-images { right: -10px; }
    .hero-sub { width: 80px; height: 80px; }
    .hero-badge { left: -10px; bottom: 16px; }
    .hero-actions { justify-content: center; }
    .hero-chips { justify-content: center; }
    .hero-title { font-size: 44px; }

    .feature-inner { grid-template-columns: 1fr; }
    .feature-card { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
    .feature-card:last-child { border-bottom: none; }

    .concept-layout { grid-template-columns: 1fr; gap: 40px; }
    .concept-img-accent { display: none; }
    .section-heading.left { text-align: center; }
    .concept-divider { margin: 24px auto; }
    .concept-tags { justify-content: center; }

    .menu-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto 28px; }

    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-item.gallery-large { grid-row: auto; aspect-ratio: 1; }

    .voice-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }

    .access-wrap { grid-template-columns: 1fr; }
    .map-wrap { height: 280px; }

    .footer-top { flex-direction: column; gap: 24px; text-align: center; }
    .footer-nav { flex-wrap: wrap; justify-content: center; gap: 16px; }
}

/* =========================================
   Mobile
========================================= */
@media (max-width: 480px) {
    .header { padding: 14px 20px; }
    .header.scrolled { padding: 10px 20px; }
    .section { padding: 72px 20px; }

    .hero { padding: 80px 20px 80px; }
    .hero-title { font-size: 36px; }
    .hero-desc { font-size: 13px; }
    .hero-sub-images { display: none; }

    .concept-deco-text { font-size: 80px; }
    .section-heading { font-size: 32px; }

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

    .reserve-section { padding: 80px 20px 100px; }
    .reserve-heading { font-size: 38px; }

    .footer { padding: 48px 20px 32px; }

    .fixed-bar { display: block; }
    .footer { padding-bottom: 100px; }
}
