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

:root {
    --cream:        #F8F4EF;
    --cream-dark:   #EDE4D8;
    --white:        #FEFCFA;
    --gold:         #C4A882;
    --gold-light:   #D4BFA0;
    --rose:         #D4A8A8;
    --brown-dark:   #3A2A20;
    --brown-mid:    #5C4438;
    --brown-light:  #8B6B5E;
    --brown-pale:   #A88B7E;
    --font-serif:   'Noto Serif TC', 'Georgia', serif;
    --font-display: 'Cormorant Garamond', 'Georgia', serif;
    --ease:         cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition:   all 0.4s var(--ease);
    --shadow-sm:    0 2px 20px rgba(58, 42, 32, 0.06);
    --shadow:       0 4px 30px rgba(58, 42, 32, 0.10);
    --shadow-lg:    0 8px 50px rgba(58, 42, 32, 0.15);
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-serif);
    color: var(--brown-mid);
    background-color: var(--white);
    line-height: 1.85;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
    font-weight: 400;
    line-height: 1.4;
    color: var(--brown-dark);
    letter-spacing: 0.05em;
}

p { margin-bottom: 1.3em; }
p:last-child { margin-bottom: 0; }

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

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

/* ===== LAYOUT ===== */
.container {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 48px;
}

.section { padding: 110px 0; }

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-eyebrow {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 0.95rem;
    color: var(--gold);
    letter-spacing: 0.3em;
    display: block;
    margin-bottom: 14px;
}

.section-title {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    color: var(--brown-dark);
    margin-bottom: 20px;
}

.section-divider {
    width: 44px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 0 auto 20px;
}

.section-desc {
    color: var(--brown-light);
    font-size: 0.95rem;
    line-height: 2;
    margin: 0;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 14px 38px;
    font-family: var(--font-serif);
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid transparent;
    border-radius: 100px;
    white-space: nowrap;
}

.btn-primary {
    background: var(--brown-dark);
    color: var(--cream);
    border-color: var(--brown-dark);
}

.btn-primary:hover {
    background: var(--brown-mid);
    border-color: var(--brown-mid);
}

.btn-outline {
    background: transparent;
    color: var(--brown-dark);
    border-color: var(--brown-dark);
}

.btn-outline:hover {
    background: var(--brown-dark);
    color: var(--cream);
}

/* 修正：dark section 上的 outline-light 按鈕 */
.btn-outline-light {
    background: transparent;
    color: var(--cream);
    border-color: rgba(254,252,250,0.5);
}

.btn-outline-light:hover {
    background: var(--brown-dark);
    border-color: var(--brown-dark);
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 10px 0;
    background: #ffffff;
    box-shadow: 0 1px 20px rgba(58, 42, 32, 0.07);
    transition: var(--transition);
}

.navbar.scrolled {
    background: #ffffff;
    box-shadow: 0 1px 24px rgba(58, 42, 32, 0.10);
}

.nav-container {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-decoration: none;
}

.nav-logo-img {
    height: 80px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
    filter: brightness(0) saturate(100%)
            invert(28%) sepia(18%) saturate(650%)
            hue-rotate(322deg) brightness(82%);
}

.nav-logo-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.3;
}

.logo-cn {
    font-size: 1rem;
    font-weight: 500;
    color: var(--brown-dark);
    letter-spacing: 0.12em;
}

.logo-sub {
    font-size: 0.55rem;
    color: var(--brown-light);
    letter-spacing: 0.2em;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 28px;
    align-items: center;
}

.nav-links a {
    font-size: 0.82rem;
    letter-spacing: 0.14em;
    color: var(--brown-mid);
    position: relative;
    padding-bottom: 2px;
}

.nav-links a:not(.nav-cta)::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0;
    width: 0; height: 1px;
    background: var(--gold);
    transition: width 0.35s var(--ease);
}

.nav-links a:not(.nav-cta):hover::after { width: 100%; }

/* ── Dropdown ── */
.nav-dropdown { position: relative; }

.nav-dropdown-arrow {
    font-size: 0.65em;
    margin-left: 3px;
    display: inline-block;
    transition: transform 0.25s ease;
    vertical-align: middle;
}

.nav-dropdown:hover .nav-dropdown-arrow,
.nav-dropdown.open .nav-dropdown-arrow { transform: rotate(180deg); }

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 14px);
    left: 50%;
    transform: translateX(-50%) translateY(-6px);
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 8px 28px rgba(58,42,32,0.13);
    border: 1px solid rgba(196,168,130,0.18);
    padding: 8px 0;
    min-width: 148px;
    list-style: none;
    z-index: 200;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.22s ease, transform 0.22s ease;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu li a {
    display: block;
    padding: 10px 22px;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    color: var(--brown-mid);
    white-space: nowrap;
}

.nav-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -14px;
    left: 0;
    right: 0;
    height: 14px;
}

.nav-dropdown-menu li a::after { display: none; }

.nav-dropdown-menu li a:hover {
    color: var(--brown-dark);
    background: var(--cream);
}

.nav-cta {
    background: var(--brown-light) !important;
    color: var(--cream) !important;
    width: 72px;
    height: 72px;
    padding: 0 !important;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.3;
}

.nav-cta:hover { background: var(--brown-mid) !important; }
.nav-cta::after { display: none !important; }

/* 手機版專用 CTA（桌機隱藏） */
.nav-mobile-cta {
    display: none;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 6px;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 22px; height: 1px;
    background: var(--brown-dark);
    transition: var(--transition);
    transform-origin: center;
}

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

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

.hero-deco--tr {
    top: -20%; right: -15%;
    width: 560px; height: 560px;
    background: radial-gradient(circle, rgba(196, 168, 130, 0.14) 0%, transparent 70%);
}

.hero-deco--bl {
    bottom: -25%; left: -10%;
    width: 460px; height: 460px;
    background: radial-gradient(circle, rgba(212, 168, 168, 0.1) 0%, transparent 70%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 680px;
}

.hero-eyebrow {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 0.95rem;
    color: var(--gold);
    letter-spacing: 0.3em;
    margin-bottom: 28px;
    display: block;
}

.hero-title {
    font-size: clamp(3rem, 7vw, 5rem);
    color: var(--brown-dark);
    line-height: 1.15;
    margin-bottom: 0;
    letter-spacing: 0.12em;
}

.hero-title span {
    display: block;
    font-size: 0.42em;
    color: var(--brown-light);
    letter-spacing: 0.4em;
    margin-top: 10px;
    font-weight: 300;
}

.hero-divider {
    width: 38px; height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 30px auto;
}

.hero-subtitle {
    font-size: 1rem;
    color: var(--brown-light);
    letter-spacing: 0.25em;
    margin-bottom: 16px;
}

.hero-desc {
    font-size: 0.9rem;
    color: var(--brown-pale);
    line-height: 2.1;
    margin-bottom: 44px;
}

.hero-scroll {
    position: absolute;
    bottom: 40px; left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.scroll-line {
    width: 1px; height: 56px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    margin: 0 auto;
    animation: scrollDrop 2.2s ease-in-out infinite;
}

@keyframes scrollDrop {
    0%   { opacity: 0; transform: scaleY(0); transform-origin: top; }
    40%  { opacity: 1; transform: scaleY(1); transform-origin: top; }
    80%  { opacity: 0; transform: scaleY(1); transform-origin: bottom; }
    100% { opacity: 0; }
}

/* ===== GALLERY (環境圖) ===== */
.gallery-section {
    background: var(--brown-dark);
    padding: 0;
    overflow: hidden;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 320px 240px;
    gap: 3px;
}

.gallery-item {
    overflow: hidden;
    position: relative;
    background: var(--brown-mid);
}

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

.gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.7s var(--ease);
    display: block;
}

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

.gallery-placeholder {
    width: 100%; height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--brown-mid);
    color: var(--brown-pale);
    gap: 10px;
    cursor: pointer;
    transition: background var(--transition);
}

.gallery-placeholder:hover { background: var(--brown-light); }

.gallery-placeholder svg {
    width: 28px; height: 28px;
    opacity: 0.5;
}

.gallery-placeholder span {
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    opacity: 0.6;
}

/* ===== STORY ===== */
.story-section { background: var(--white); }

.story-content {
    max-width: 720px;
    margin: 0 auto;
    font-size: 0.97rem;
    line-height: 2.05;
    color: var(--brown-mid);
}

.story-lead {
    font-size: 1.13rem !important;
    color: var(--brown-dark) !important;
    font-weight: 500;
    line-height: 1.9 !important;
    margin-bottom: 1.5em !important;
}

.story-highlight {
    padding: 30px 36px;
    border-left: 2px solid var(--gold);
    background: var(--cream);
    margin: 2em 0;
}

.story-highlight p { margin-bottom: 1em; }
.story-highlight p:last-child { margin-bottom: 0; }

.story-quote {
    margin-top: 2.5em;
    padding-top: 2.5em;
    border-top: 1px solid var(--cream-dark);
}

blockquote {
    font-family: var(--font-display);
    font-size: 1.65rem;
    font-style: italic;
    color: var(--brown-dark);
    margin: 0 0 1.6em;
    line-height: 1.5;
    letter-spacing: 0.03em;
}

.story-ending {
    color: var(--gold) !important;
    font-weight: 500;
    font-size: 1.02rem !important;
    letter-spacing: 0.06em;
}

/* ===== ABOUT ===== */
.about-section { background: var(--cream); padding-top: 32px; }

/* ── About Stats Cards ── */
.about-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    margin-bottom: 80px;
    flex-wrap: wrap;
}

.stat-card {
    position: relative;
    width: 216px;
    height: 216px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-shrink: 0;
    transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}

.stat-card:hover {
    transform: translateY(-6px) scale(1.04);
    box-shadow: 0 20px 52px rgba(58, 42, 32, 0.24);
}

.stat-card--gold { background: linear-gradient(145deg, #E2CA9E 0%, #C4A882 50%, #A88B6A 100%); }
.stat-card--mid  { background: linear-gradient(145deg, #C4A882 0%, #9B7E6A 50%, #7A5C4E 100%); }
.stat-card--deep { background: linear-gradient(145deg, #8B6B5E 0%, #5C4438 50%, #3A2A20 100%); }

/* 背景大字水印 */
.stat-card::after {
    content: attr(data-bg);
    position: absolute;
    right: -6px;
    bottom: -16px;
    font-family: var(--font-display);
    font-size: 9rem;
    font-style: italic;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.08);
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

/* 圓形邊框光暈 */
.stat-card::before {
    content: '';
    position: absolute;
    inset: 6px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.22);
    pointer-events: none;
}

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

.stat-main {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 3px;
    margin-bottom: 10px;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 4.8rem;
    font-style: italic;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.96);
    line-height: 1;
    letter-spacing: -0.02em;
}

.stat-unit {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-style: italic;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1;
    margin-top: 0.5em;
}

.stat-number--zh {
    font-family: 'Microsoft JhengHei', '微軟正黑體', 'PingFang TC', sans-serif;
    font-style: normal;
    font-weight: 700;
}

.stat-en {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 0.68rem;
    letter-spacing: 0.16em;
    color: rgba(255, 255, 255, 0.48);
    text-transform: uppercase;
    margin: 0 0 14px;
}

.stat-label {
    font-family: 'Noto Serif TC', serif;
    font-size: 0.76rem;
    letter-spacing: 0.3em;
    color: rgba(255, 255, 255, 0.82);
    margin: 0;
}

.stat-divider { display: none; }

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 24px;
}

/* 區塊標題：關於秘密基地 */
.about-text-title {
    font-family: 'Playfair Display', 'Noto Serif TC', serif;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--brown-dark);
    margin-bottom: 16px;
}

/* 主標題：六年專注做好一件事 */
.about-text-lead {
    font-family: 'Playfair Display', 'Noto Serif TC', serif;
    font-size: 36px;
    font-weight: 700;
    font-style: normal;
    line-height: 1.3;
    color: var(--brown-dark);
    margin-bottom: 16px !important;
}

/* 副標題 */
.about-text-intro {
    font-family: 'Noto Sans TC', sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.8;
    color: var(--brown-mid);
    border-left: 3px solid var(--gold);
    padding-left: 16px;
    margin-bottom: 28px !important;
}

/* 小標題：除毛不只是技術 / 我們珍惜的 */
.about-text-section {
    font-family: 'Playfair Display', 'Noto Serif TC', serif;
    font-size: 30px;
    font-weight: 600;
    color: var(--brown-dark);
    margin: 80px 0 20px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--cream-dark);
    letter-spacing: 0.02em;
}

/* 數字亮點 */
.about-milestone {
    margin-bottom: 32px;
}

.about-milestone-num {
    font-family: 'Playfair Display', 'Noto Serif TC', serif;
    font-size: 60px;
    font-weight: 700;
    line-height: 1;
    color: var(--brown-dark);
    margin-bottom: 4px;
}

.about-milestone-label {
    font-family: 'Noto Sans TC', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: var(--brown-mid);
    margin-bottom: 8px;
}

.about-milestone p {
    font-family: 'Noto Sans TC', sans-serif;
    font-size: 18px !important;
    font-weight: 400;
    color: var(--brown-light);
    line-height: 1.8 !important;
    margin-bottom: 0 !important;
    max-width: 800px;
}

/* 品牌宣言 */
.about-belief {
    margin-top: 80px;
    padding: 36px 32px;
    background: var(--cream-dark);
    border-left: 4px solid var(--gold);
}

.about-belief-label {
    font-family: 'Noto Sans TC', sans-serif;
    font-size: 10px;
    font-weight: 500;
    color: var(--gold);
    letter-spacing: 0.25em;
    text-transform: uppercase;
    margin-bottom: 16px !important;
}

.about-belief-line1 {
    font-family: 'Noto Sans TC', sans-serif;
    font-size: 25px;
    font-weight: 500;
    color: var(--brown-mid);
    margin-bottom: 8px !important;
    line-height: 1.4;
}

.about-belief-line2 {
    font-family: 'Playfair Display', 'Noto Serif TC', serif;
    font-size: 16px !important;
    font-weight: 700;
    color: var(--gold);
    line-height: 1.3;
    margin: 0 !important;
}

.about-text p {
    font-family: 'Noto Sans TC', sans-serif;
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 1.6em;
    color: var(--brown-mid);
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.feature-item {
    background: var(--white);
    padding: 28px 24px;
    border-bottom: 2px solid transparent;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.feature-item:hover {
    border-bottom-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.feature-icon {
    width: 32px; height: 32px;
    color: var(--gold);
    margin-bottom: 14px;
}

.feature-icon svg { width: 100%; height: 100%; }

.feature-item h3 {
    font-size: 0.9rem;
    margin-bottom: 10px;
    letter-spacing: 0.1em;
}

.feature-item p {
    font-size: 0.82rem;
    color: var(--brown-light);
    line-height: 1.85;
    margin: 0;
}

/* ===== SERVICES ===== */
.services-section { background: var(--white); }

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

.service-card {
    padding: 38px 28px;
    border: 1px solid var(--cream-dark);
    text-align: center;
    position: relative;
    transition: var(--transition);
    background: var(--white);
}

.service-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.service-card--featured {
    background: var(--cream);
    border-color: var(--gold);
}

.service-badge {
    position: absolute;
    top: -11px; left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--white);
    font-size: 0.7rem;
    padding: 4px 18px;
    letter-spacing: 0.15em;
    white-space: nowrap;
}

.service-icon {
    font-size: 1.1rem;
    color: var(--gold);
    margin-bottom: 16px;
    letter-spacing: 0.3em;
}

.service-card h3 {
    font-size: 1rem;
    margin-bottom: 10px;
    letter-spacing: 0.08em;
}

.service-card p {
    font-size: 0.82rem;
    color: var(--brown-light);
    line-height: 1.85;
    margin-bottom: 18px;
}

.service-price {
    display: inline-block;
    font-size: 0.78rem;
    color: var(--gold);
    letter-spacing: 0.12em;
    border-bottom: 1px solid var(--gold-light);
    padding-bottom: 2px;
}

.service-card--featured .service-badge + * { margin-top: 28px; }

.services-note {
    text-align: center;
    font-size: 0.78rem;
    color: var(--brown-pale);
    letter-spacing: 0.12em;
    margin: 0;
}

/* ===== BOOKING ===== */
.booking-section { background: var(--cream); }

.booking-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.booking-card {
    background: var(--white);
    padding: 52px 36px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.booking-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.booking-icon {
    width: 46px; height: 46px;
    margin: 0 auto 22px;
    color: var(--gold);
}

.booking-icon svg { width: 100%; height: 100%; }

.booking-card h3 {
    font-size: 1rem;
    margin-bottom: 8px;
    letter-spacing: 0.1em;
}

.booking-id {
    font-size: 0.88rem;
    color: var(--gold);
    margin-bottom: 14px;
    letter-spacing: 0.1em;
}

.booking-desc {
    font-size: 0.83rem;
    color: var(--brown-light);
    line-height: 1.85;
    margin-bottom: 28px;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--brown-dark);
    color: var(--cream);
    padding: 64px 0 28px;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 48px;
}

.footer-logo-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
}

.footer-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.footer-logo-img {
    height: 96px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1) opacity(0.85);
}

.footer-sub {
    color: var(--gold-light);
    font-size: 0.82rem;
    letter-spacing: 0.25em;
    line-height: 1.4;
    align-self: flex-end;
    padding-bottom: 18px;
}

.footer-info-block {
    margin-bottom: 20px;
}

.footer-info {
    font-size: 0.78rem;
    color: var(--brown-pale);
    letter-spacing: 0.08em;
    line-height: 1.9;
}

.footer-icons {
    display: flex;
    gap: 14px;
    margin-top: 20px;
    align-items: center;
}

.footer-icon-link {
    display: flex;
    align-items: center;
    opacity: 0.82;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.footer-icon-link:hover {
    opacity: 1;
    transform: translateY(-3px);
}

.footer-icon-link img {
    width: 70px;
    height: 70px;
    object-fit: contain;
}

.footer-icons a:nth-child(2) img {
    filter: brightness(0) invert(1);
}

.footer-address {
    font-size: 0.72rem;
    color: var(--brown-pale);
    letter-spacing: 0.08em;
    margin-top: 10px;
}

.footer-nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: right;
}

.footer-nav a {
    color: var(--brown-pale);
    font-size: 0.82rem;
    letter-spacing: 0.12em;
    transition: var(--transition);
}

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

.footer-bottom {
    border-top: 1px solid rgba(196, 168, 130, 0.18);
    padding-top: 24px;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.72rem;
    color: rgba(168, 139, 126, 0.5);
    letter-spacing: 0.1em;
    margin: 0;
}

/* ===== CAROUSEL ===== */
.carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-top: 100px;
}

.carousel-track {
    display: flex;
    transition: transform 0.75s cubic-bezier(0.77, 0, 0.175, 1);
    will-change: transform;
}

.carousel-slide {
    min-width: 100%;
    width: 100%;
    position: relative;
    flex-shrink: 0;
    overflow: hidden;
    background: #ffffff;
    isolation: isolate;
}

.carousel-slide img {
    width: 100%;
    height: auto;
    display: block;
}


.carousel-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 120px 48px 80px;
}

.carousel-eyebrow {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 0.95rem;
    color: var(--gold-light);
    letter-spacing: 0.35em;
    margin-bottom: 24px;
    opacity: 0;
    transform: translateY(20px);
    animation: slideUp 0.9s 0.3s forwards;
}

.carousel-title {
    font-family: var(--font-serif);
    font-size: clamp(2.8rem, 6vw, 5rem);
    color: #FEFCFA;
    line-height: 1.15;
    letter-spacing: 0.14em;
    font-weight: 300;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(20px);
    animation: slideUp 0.9s 0.5s forwards;
}

.carousel-title span {
    display: block;
    font-size: 0.4em;
    color: rgba(254,252,250,0.7);
    letter-spacing: 0.45em;
    margin-top: 10px;
}

.carousel-sub {
    font-size: 0.88rem;
    color: rgba(254,252,250,0.75);
    letter-spacing: 0.28em;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(20px);
    animation: slideUp 0.9s 0.7s forwards;
}

.carousel-overlay .btn-outline-gold {
    opacity: 0;
    transform: translateY(20px);
    animation: slideUp 0.9s 0.9s forwards;
}

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

.btn-outline-gold {
    background: transparent;
    color: #FEFCFA;
    border: 1px solid rgba(196,168,130,0.6);
    padding: 13px 38px;
    font-family: var(--font-serif);
    font-size: 0.82rem;
    letter-spacing: 0.22em;
    cursor: pointer;
    transition: var(--transition);
    display: inline-block;
}

.btn-outline-gold:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--brown-dark);
}

.carousel-btn {
    position: absolute;
    top: 50%; transform: translateY(-50%);
    z-index: 10;
    background: rgba(254,252,250,0.12);
    border: 1px solid rgba(254,252,250,0.25);
    color: #FEFCFA;
    width: 52px; height: 52px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(4px);
}

.carousel-btn:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--brown-dark);
}

.carousel-btn svg { width: 20px; height: 20px; }
.carousel-btn--prev { left: 32px; }
.carousel-btn--next { right: 32px; }

.carousel-dots {
    position: absolute;
    bottom: 32px; left: 50%;
    transform: translateX(-50%);
    display: flex; gap: 10px;
    z-index: 10;
}

.carousel-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: rgba(254,252,250,0.4);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    padding: 0;
}

.carousel-dot.active {
    background: var(--gold);
    width: 24px;
    border-radius: 3px;
}

/* ── 輪播底部波浪 ── */
.carousel-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 5;
    pointer-events: none;
}

.carousel-wave svg {
    display: block;
    width: 100%;
    height: 88px;
}

@media (max-width: 768px) {
    .carousel-wave svg { height: 52px; }
}

/* ── 輪播 CTA 膠囊按鈕 ── */
.carousel-pill {
    position: absolute;
    left: 8%;
    bottom: 285px;
    z-index: 10;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 16px 32px;
    background: rgba(58, 42, 32, 0.45);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1.5px solid rgba(196, 168, 130, 0.7);
    border-radius: 100px;
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.4s ease, border-color 0.4s ease, transform 0.4s cubic-bezier(0.34, 1.3, 0.64, 1), box-shadow 0.4s ease;
}

.carousel-pill:hover {
    background: rgba(58, 42, 32, 0.7);
    border-color: rgba(196, 168, 130, 1);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(58, 42, 32, 0.35);
}

.carousel-pill-arrow {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.carousel-pill-arrow svg {
    width: 18px;
    height: 18px;
}

.carousel-pill:hover .carousel-pill-arrow {
    transform: translateX(6px);
}

@media (max-width: 768px) {
    .carousel-btn {
        display: none;
    }
    .carousel-pill {
        left: 8%;
        transform: none;
        bottom: 52px;
        font-size: 0.6rem;
        padding: 7px 13px;
        gap: 6px;
    }
    .carousel-pill-arrow svg {
        width: 11px;
        height: 11px;
    }
    .carousel-pill:hover {
        transform: translateY(-2px);
    }
}

/* ===== HOME SECTIONS ===== */
.home-section { padding: 100px 0; }

.home-section-header {
    text-align: center;
    margin-bottom: 64px;
}

/* ── 本店特色 ── */
.features-home { background: var(--white); }

.features-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.features-intro-img-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8%;
}

.fi-bg-blob {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: #EAD9C8;
}

.features-intro-img {
    position: relative;
    z-index: 1;
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    overflow: hidden;
    background: var(--cream);
}

.features-intro-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.features-intro-img img + .feature-img-placeholder { display: none; }

/* 泡泡 */
.fi-bubble {
    position: absolute;
    border-radius: 50%;
    background: rgba(196, 168, 130, 0.35);
    z-index: 2;
    animation: fi-float 4s ease-in-out infinite;
}

.fi-bubble--1 { width: 18px; height: 18px; top: 12%; right: 8%;  animation-duration: 4s;   animation-delay: 0s; }
.fi-bubble--2 { width: 11px; height: 11px; bottom: 18%; right: 4%; animation-duration: 5.5s; animation-delay: 1.2s; }
.fi-bubble--3 { width: 8px;  height: 8px;  top: 40%;   left: 4%;  animation-duration: 3.8s; animation-delay: 0.6s; }
.fi-bubble--4 { width: 14px; height: 14px; bottom: 10%; left: 10%; animation-duration: 5s;   animation-delay: 2s; }

@keyframes fi-float {
    0%, 100% { transform: translateY(0)    scale(1);    opacity: 0.5; }
    50%       { transform: translateY(-14px) scale(1.15); opacity: 0.9; }
}

.features-intro-text .section-eyebrow { margin-bottom: 16px; }

.features-intro-heading {
    font-family: 'Playfair Display', 'Noto Serif TC', serif;
    font-size: clamp(1.5rem, 2.4vw, 2rem);
    font-weight: 700;
    line-height: 1.25;
    color: var(--brown-mid);
    margin-bottom: 28px;
}

.features-intro-text .section-divider { margin: 0 0 36px; }

.features-intro-body {
    font-family: var(--font-body);
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--brown-mid);
    margin-bottom: 1.4em;
}

.features-intro-closing {
    font-family: 'Playfair Display', 'Noto Serif TC', serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--brown-mid);
    line-height: 1.7;
    border-left: 3px solid var(--gold);
    padding-left: 18px;
    margin-top: 40px;
}

.feature-img-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--cream);
    color: var(--brown-light);
    gap: 10px;
}

.feature-img-placeholder svg { width: 32px; height: 32px; opacity: 0.4; }
.feature-img-placeholder span { font-size: 0.72rem; letter-spacing: 0.15em; opacity: 0.55; }

/* ── 區塊頂部波浪 ── */
.wave-top {
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 5;
    pointer-events: none;
}

.wave-top svg {
    display: block;
    width: 100%;
    height: 88px;
}

@media (max-width: 768px) {
    .wave-top { display: none; }
}

/* ── 環境與安全空間 ── */
.environment-img-only {
    width: 100%;
    line-height: 0;
    position: relative;
}

.environment-img-only img {
    width: 100%;
    height: auto;
    display: block;
}

.env-btn-wrap {
    position: absolute;
    bottom: 48px;
    left: 50%;
    transform: translateX(-50%);
}

.env-btn-wrap .btn-outline-gold {
    font-size: 1.7rem;
    letter-spacing: 0.25em;
    padding: 30px 88px;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    background: rgba(58, 42, 32, 0.65);
    color: var(--gold);
    border-color: var(--gold);
    transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

@media (max-width: 768px) {
    .env-btn-wrap {
        bottom: 2px;
    }
    .env-btn-wrap .btn-outline-gold {
        font-size: 0.85rem;
        padding: 12px 28px;
        letter-spacing: 0.15em;
        white-space: nowrap;
        width: auto;
    }
}

.env-btn-wrap .btn-outline-gold:hover {
    background: var(--gold);
    color: var(--brown-dark);
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(58, 42, 32, 0.35);
}

.env-single {
    width: 100%;
    height: 560px;
    overflow: hidden;
    margin-bottom: 40px;
}

.env-single img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s var(--ease);
}

.env-single:hover img { transform: scale(1.03); }

.env-features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0 48px;
    padding-top: 40px;
    border-top: 1px solid rgba(196,168,130,0.2);
}

.env-feat-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 0;
}

.env-feat-icon { color: var(--gold); font-size: 0.75rem; }

.env-feat-item p {
    font-size: 0.82rem;
    color: var(--brown-pale);
    letter-spacing: 0.12em;
    margin: 0;
}

/* ── 服務項目 ── */
.services-home { background: var(--cream); }

.services-home-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.service-home-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: transparent;
    overflow: visible;
    box-shadow: none;
    transition: var(--transition);
}

.service-home-card:hover { transform: translateY(-4px); }

.service-home-img {
    width: 72%;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    background: var(--cream-dark);
    box-shadow: var(--shadow-sm);
    margin-bottom: -44px;
    z-index: 1;
    flex-shrink: 0;
}

.service-home-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s var(--ease);
}

.service-home-card:hover .service-home-img img { transform: scale(1.05); }

.service-home-img .feature-img-placeholder {
    position: absolute;
    inset: 0;
}

.service-home-img img + .feature-img-placeholder { display: none; }

.service-home-body {
    padding: 60px 32px 36px;
    background: var(--white);
    border-radius: 28px;
    box-shadow: var(--shadow-sm);
    width: 100%;
    text-align: center;
    position: relative;
}

.service-home-badge {
    display: inline-block;
    font-size: 0.68rem;
    color: var(--gold);
    border: 1px solid var(--gold-light);
    padding: 4px 14px;
    letter-spacing: 0.18em;
    margin-bottom: 14px;
}

.service-home-body h3 {
    font-size: 1.3rem;
    color: var(--brown-dark);
    margin-bottom: 12px;
    letter-spacing: 0.08em;
}

.service-home-body p {
    font-size: 0.88rem;
    color: var(--brown-light);
    line-height: 2;
    margin-bottom: 0;
}

/* ── Google 好評 ── */
.reviews-home {
    background: var(--white);
    position: relative;
    overflow: hidden;
}

/* 評論標題包裝層（讚圖定位基準） */
.reviews-header-wrap {
    position: relative;
}

/* 讚圖：絕對定位，以標題為中心散佈 */
.reviews-deco-icon {
    position: absolute;
    color: var(--gold);
    pointer-events: none;
    animation: reviews-float 5s ease-in-out infinite;
}

/* 左側三個：title 左邊 */
.reviews-deco-icon--1 { width: 54px; height: 54px; top: 10px;  left: calc(50% - 200px); opacity: 1; animation-duration: 5s;   animation-delay: 0s;   color: #EA4335; }
.reviews-deco-icon--2 { width: 36px; height: 36px; top: 52px;  left: calc(50% - 260px); opacity: 1; animation-duration: 6.5s; animation-delay: 1.4s; color: #4285F4; }
.reviews-deco-icon--3 { width: 44px; height: 44px; top: -12px; left: calc(50% - 150px); opacity: 1; animation-duration: 4.8s; animation-delay: 2.2s; color: #FBBC05; }

/* 右側三個：翻轉，title 右邊 */
.reviews-deco-icon--4 { width: 52px; height: 52px; top: 8px;   left: calc(50% + 148px); opacity: 1; animation-duration: 5.3s; animation-delay: 0.5s; animation-name: reviews-float-r; color: #34A853; }
.reviews-deco-icon--5 { width: 34px; height: 34px; top: 56px;  left: calc(50% + 220px); opacity: 1; animation-duration: 4.5s; animation-delay: 2s;   animation-name: reviews-float-r; color: #EA4335; }
.reviews-deco-icon--6 { width: 46px; height: 46px; top: -10px; left: calc(50% + 96px);  opacity: 1; animation-duration: 6.2s; animation-delay: 1s;   animation-name: reviews-float-r; color: #4285F4; }

@keyframes reviews-float {
    0%, 100% { transform: translateY(0)     rotate(-12deg); }
    50%       { transform: translateY(-28px) rotate(8deg);  }
}

@keyframes reviews-float-r {
    0%, 100% { transform: scaleX(-1) translateY(0)     rotate(-12deg); }
    50%       { transform: scaleX(-1) translateY(-28px) rotate(8deg);  }
}

@media (max-width: 768px) {
    .reviews-deco-icon { display: none; }
}

.reviews-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.reviews-score {
    font-family: var(--font-display);
    font-size: 2.8rem;
    color: var(--brown-dark);
    line-height: 1;
}

.reviews-stars {
    font-size: 1.2rem;
    color: var(--gold);
    letter-spacing: 0.1em;
}

.reviews-link {
    font-size: 0.78rem;
    color: var(--gold);
    border-bottom: 1px solid var(--gold-light);
    padding-bottom: 2px;
    letter-spacing: 0.1em;
    transition: var(--transition);
}

.reviews-link:hover { color: var(--brown-mid); border-color: var(--brown-mid); }

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

.review-card {
    background: var(--cream);
    padding: 32px 28px;
    border-bottom: 2px solid transparent;
    transition: var(--transition);
}

.review-card:hover {
    border-bottom-color: var(--gold);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.review-avatar {
    width: 42px; height: 42px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.review-name {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--brown-dark);
    margin-bottom: 2px;
    letter-spacing: 0.05em;
}

.review-meta {
    display: block;
    font-size: 0.72rem;
    color: var(--brown-light);
    letter-spacing: 0.03em;
    margin-bottom: 3px;
}

.review-stars {
    font-size: 0.75rem;
    color: var(--gold);
    letter-spacing: 0.1em;
}

.review-text {
    font-size: 0.85rem;
    color: var(--brown-mid);
    line-height: 1.95;
    margin: 0 0 10px;
    font-style: italic;
}

.review-date {
    font-size: 0.72rem;
    color: var(--brown-light);
    margin: 0;
}

/* ===== ENVIRONMENT PAGE ===== */
.env-gallery-section {
    padding: 130px 0 0;
    background: var(--white);
}

/* Bento grid: tall image left, 2×2 right */
.env-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-rows: 380px 260px 260px;
    gap: 6px;
    margin-top: 52px;
}

.gallery-item:nth-child(1) { grid-column: 1 / 3; grid-row: 1 / 3; }
.gallery-item:nth-child(2) { grid-column: 3; grid-row: 1; }
.gallery-item:nth-child(3) { grid-column: 4; grid-row: 1; }
.gallery-item:nth-child(4) { grid-column: 3; grid-row: 2; }
.gallery-item:nth-child(5) { grid-column: 4; grid-row: 2; }
.gallery-item:nth-child(6) { grid-column: 1; grid-row: 3; }
.gallery-item:nth-child(9) { grid-column: 2; grid-row: 3; }
.gallery-item:nth-child(7) { grid-column: 3; grid-row: 3; }
.gallery-item:nth-child(8) { grid-column: 4; grid-row: 3; }

/* Entry animation (triggered by .gallery-visible via JS) */
.gallery-item {
    overflow: hidden;
    opacity: 0;
    transform: translateY(48px) scale(0.97);
    transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
    cursor: zoom-in;
}

.gallery-item:nth-child(1) { transition-delay: 0.00s; }
.gallery-item:nth-child(2) { transition-delay: 0.12s; }
.gallery-item:nth-child(3) { transition-delay: 0.22s; }
.gallery-item:nth-child(4) { transition-delay: 0.32s; }
.gallery-item:nth-child(5) { transition-delay: 0.42s; }
.gallery-item:nth-child(6) { transition-delay: 0.52s; }
.gallery-item:nth-child(7) { transition-delay: 0.60s; }
.gallery-item:nth-child(8) { transition-delay: 0.68s; }
.gallery-item:nth-child(9) { transition-delay: 0.76s; }

.gallery-item.gallery-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.gallery-inner {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.gallery-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s var(--ease);
}

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

/* Gold overlay on hover */
.gallery-hover {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(58, 42, 32, 0.7) 0%, rgba(58, 42, 32, 0.1) 50%, transparent 100%);
    opacity: 0;
    display: flex;
    align-items: flex-end;
    padding: 22px 24px;
    transition: opacity 0.4s var(--ease);
}

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

.gallery-hover-label {
    color: var(--cream);
    font-family: var(--font-serif);
    font-size: 0.78rem;
    letter-spacing: 0.25em;
    transform: translateY(10px);
    transition: transform 0.4s var(--ease);
    border-bottom: 1px solid rgba(196, 168, 130, 0.6);
    padding-bottom: 4px;
}

.gallery-item:hover .gallery-hover-label {
    transform: translateY(0);
}

/* ── Lightbox ── */
.gallery-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(18, 10, 6, 0.95);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s var(--ease);
    backdrop-filter: blur(4px);
}

.gallery-lightbox.lb-active {
    opacity: 1;
    pointer-events: all;
}

.lightbox-img-wrap {
    max-width: 88vw;
    max-height: 84vh;
    position: relative;
}

.lightbox-img-wrap img {
    max-width: 88vw;
    max-height: 84vh;
    object-fit: contain;
    display: block;
    border: 1px solid rgba(196, 168, 130, 0.18);
    transition: opacity 0.25s var(--ease);
}

.lightbox-img-wrap img.lb-fade {
    opacity: 0;
}

.lightbox-close {
    position: absolute;
    top: 20px; right: 28px;
    background: none;
    border: 1px solid rgba(196, 168, 130, 0.35);
    color: var(--gold-light);
    font-size: 1rem;
    line-height: 1;
    width: 36px; height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}
.lightbox-close:hover { background: rgba(196, 168, 130, 0.2); color: var(--cream); }

.lightbox-prev, .lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(196, 168, 130, 0.12);
    border: 1px solid rgba(196, 168, 130, 0.3);
    color: var(--gold-light);
    width: 46px; height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-prev svg, .lightbox-next svg { width: 20px; height: 20px; }
.lightbox-prev:hover, .lightbox-next:hover {
    background: rgba(196, 168, 130, 0.28);
    color: var(--cream);
    border-color: var(--gold-light);
}

.lightbox-counter {
    position: absolute;
    bottom: 22px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--gold-light);
    font-size: 0.72rem;
    letter-spacing: 0.3em;
    font-family: var(--font-display);
    font-style: italic;
}

/* Mobile gallery */
@media (max-width: 820px) {
    .env-gallery {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(5, 200px);
        gap: 4px;
    }
    .gallery-item:nth-child(1) { grid-column: 1 / 3; grid-row: 1; }
    .gallery-item:nth-child(2) { grid-column: 1; grid-row: 2; }
    .gallery-item:nth-child(3) { grid-column: 2; grid-row: 2; }
    .gallery-item:nth-child(4) { grid-column: 1; grid-row: 3; }
    .gallery-item:nth-child(5) { grid-column: 2; grid-row: 3; }
    .gallery-item:nth-child(6) { grid-column: 1; grid-row: 4; }
    .gallery-item:nth-child(9) { grid-column: 2; grid-row: 4; }
    .gallery-item:nth-child(7) { grid-column: 1; grid-row: 5; }
    .gallery-item:nth-child(8) { grid-column: 2; grid-row: 5; }

    .lightbox-prev { left: 8px; }
    .lightbox-next { right: 8px; }
}

.env-page-content { background: var(--white); }

.env-standards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.env-std-item {
    padding: 36px 28px;
    border: 1px solid var(--cream-dark);
    border-radius: 16px;
    transition: var(--transition);
    text-align: center;
}

.env-std-item:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.env-std-icon {
    width: 40px; height: 40px;
    color: var(--gold);
    margin: 0 auto 18px;
}

.env-std-icon svg { width: 100%; height: 100%; }

.env-std-item h3 {
    font-size: 0.95rem;
    color: var(--brown-dark);
    margin-bottom: 12px;
    letter-spacing: 0.08em;
}

.env-std-item p {
    font-size: 0.82rem;
    color: var(--brown-light);
    line-height: 1.9;
    margin: 0;
}

@media (max-width: 960px) {
    .env-standards { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .env-standards { grid-template-columns: 1fr; }
}

/* ===== NAV YOUTUBE ===== */
.nav-youtube {
    color: var(--gold) !important;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section { background: var(--cream); padding-top: 0; }

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

.testimonial-card {
    background: var(--white);
    padding: 40px 32px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-bottom: 2px solid transparent;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-bottom-color: var(--gold);
}

.testimonial-stars {
    color: var(--gold);
    font-size: 0.9rem;
    letter-spacing: 0.15em;
    margin-bottom: 18px;
}

.testimonial-text {
    font-size: 0.9rem;
    line-height: 2;
    color: var(--brown-mid);
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    font-size: 0.78rem;
    color: var(--brown-light);
    letter-spacing: 0.12em;
    margin: 0;
}

.testimonials-more-wrap {
    text-align: center;
    margin-top: 48px;
}

/* ===== TEAM ===== */
.team-section { background: var(--white); }

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

.team-card {
    text-align: center;
    transition: var(--transition);
}

.team-card:hover { transform: translateY(-4px); }

.team-photo-wrap {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 22px;
    border: 2px solid var(--cream-dark);
    transition: var(--transition);
}

.team-card:hover .team-photo-wrap { border-color: var(--gold); }

.team-photo-wrap img {
    width: 100%; height: 100%;
    object-fit: cover;
}

.team-photo-placeholder {
    width: 100%; height: 100%;
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brown-pale);
}

.team-photo-placeholder svg {
    width: 48px; height: 48px;
    opacity: 0.4;
}

.team-name {
    font-size: 1rem;
    color: var(--brown-dark);
    margin-bottom: 6px;
    letter-spacing: 0.08em;
}

.team-role {
    font-size: 0.75rem;
    color: var(--gold);
    letter-spacing: 0.15em;
    margin-bottom: 14px;
}

.team-desc {
    font-size: 0.82rem;
    color: var(--brown-light);
    line-height: 1.9;
    margin: 0;
}

.team-note {
    text-align: center;
    font-size: 0.75rem;
    color: var(--brown-pale);
    letter-spacing: 0.1em;
    margin: 0;
}

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

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

.faq-item { background: var(--white); }

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 32px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Microsoft JhengHei', '微軟正黑體', 'PingFang TC', sans-serif;
    font-size: 0.95rem;
    color: var(--brown-dark);
    letter-spacing: 0.06em;
    text-align: left;
    transition: var(--transition);
    gap: 20px;
}

.faq-question:hover { color: var(--gold); }

.faq-icon {
    font-size: 1.2rem;
    color: var(--gold);
    flex-shrink: 0;
    transition: transform var(--transition);
    line-height: 1;
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease), padding 0.4s var(--ease);
}

.faq-item.open .faq-answer { max-height: 1200px; }

.faq-answer p {
    padding: 0 32px 18px;
    font-family: 'Microsoft JhengHei', '微軟正黑體', 'PingFang TC', sans-serif;
    font-size: 0.88rem;
    color: var(--brown-light);
    line-height: 2;
    margin: 0;
}

.faq-answer p strong {
    color: var(--brown-mid);
    font-weight: 600;
}

.faq-answer ul {
    padding: 0 32px 24px 52px;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    list-style: disc;
}

.faq-answer ul li {
    font-family: 'Microsoft JhengHei', '微軟正黑體', 'PingFang TC', sans-serif;
    font-size: 0.88rem;
    color: var(--brown-light);
    line-height: 1.9;
    padding-left: 4px;
}

.faq-section-label {
    max-width: 780px;
    margin: 0 auto 32px;
    font-family: 'Microsoft JhengHei', '微軟正黑體', 'PingFang TC', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--brown-dark);
    letter-spacing: 0.12em;
    padding-left: 4px;
}

/* ===== PAGE HERO (sub pages) ===== */
.page-hero {
    background: var(--cream);
    padding: 160px 48px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -30%; right: -10%;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(196,168,130,0.12) 0%, transparent 70%);
    pointer-events: none;
}

.page-hero-eyebrow {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 0.95rem;
    color: var(--gold);
    letter-spacing: 0.3em;
    display: block;
    margin-bottom: 14px;
}

.page-hero-title {
    font-size: clamp(2rem, 5vw, 3.2rem);
    color: var(--brown-dark);
    letter-spacing: 0.1em;
    margin-bottom: 18px;
}

.page-hero-divider {
    width: 44px; height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 0 auto;
}

/* ===== RESPONSIVE additions ===== */
@media (max-width: 960px) {
    .testimonials-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .team-grid { grid-template-columns: 1fr; max-width: 320px; margin: 0 auto; }
    .faq-question { padding: 18px 20px; font-size: 0.88rem; }
    .faq-answer p { padding: 0 20px 20px; }
    .page-hero { padding: 130px 28px 60px; }
}

/* ===== SCROLL ANIMATIONS ===== */
.fade-in {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
    .about-content { grid-template-columns: 1fr; gap: 44px; padding: 48px 24px; }
    .about-text-title { font-size: 32px; }
    .about-text-lead { font-size: 28px; }
    .about-text-intro { font-size: 18px; }
    .about-text-section { font-size: 24px; margin-top: 48px; }
    .about-milestone-num { font-size: 44px; }
    .about-milestone-label { font-size: 16px; }
    .about-milestone p { font-size: 16px !important; }
    .about-belief { margin-top: 48px; padding: 28px 24px; }
    .about-belief-line1 { font-size: 22px; }
    .about-belief-line2 { font-size: 30px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .booking-cards { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
    .features-home { padding-top: 36px; }
    .features-intro { grid-template-columns: 1fr; gap: 40px; }
    .features-intro-text { order: 1; }
    .features-intro-img-wrap { order: 2; max-width: 100%; padding: 5%; }
    .fi-bg-blob { border-radius: 16px; }
    .features-intro-img {
        border-radius: 16px;
        aspect-ratio: 4 / 3;
    }
    .env-single { height: 320px; }
    .services-home-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
    .reviews-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}

@media (max-width: 768px) {
    .container { padding: 0 28px; }
    .section { padding: 72px 0; }
    .nav-container { padding: 0 28px; }

    /* 手機版 navbar：三欄 grid（漢堡｜logo 置中｜CTA） */
    .nav-container {
        display: grid;
        grid-template-columns: 44px 1fr 72px;
        align-items: center;
        padding: 0 20px;
    }

    .nav-toggle {
        display: flex;
        order: 1;
        justify-self: start;
    }

    .nav-logo {
        order: 2;
        justify-self: center;
    }

    .nav-mobile-cta {
        order: 3;
        justify-self: end;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 56px;
        height: 56px;
        background: var(--brown-light);
        color: var(--cream);
        border-radius: 50%;
        font-family: var(--font-body);
        font-size: 0.65rem;
        font-weight: 500;
        letter-spacing: 0.08em;
        text-align: center;
        line-height: 1.3;
        text-decoration: none;
        white-space: pre-line;
        transition: background 0.3s ease;
    }

    .nav-mobile-cta:hover { background: var(--brown-mid); }

    .nav-links {
        display: none;
        position: fixed;
        inset: 0;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 32px;
        z-index: 999;
    }

    .nav-links.open { display: flex; }

    /* Mobile dropdown */
    .nav-dropdown {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .nav-dropdown-menu {
        position: static;
        transform: none;
        box-shadow: none;
        border: none;
        background: transparent;
        opacity: 1;
        pointer-events: auto;
        padding: 4px 0 0 0;
        min-width: unset;
        width: 100%;
        text-align: center;
        display: none;
    }

    .nav-dropdown.open .nav-dropdown-menu {
        display: flex;
        flex-direction: column;
        align-items: center;
        transform: none;
        opacity: 1;
        pointer-events: auto;
    }

    .nav-dropdown-menu li {
        width: 100%;
        text-align: center;
    }

    .nav-dropdown-menu li a {
        padding: 8px 0;
        font-size: 0.85rem;
        color: rgba(92,68,56,0.75);
        text-align: center;
        width: 100%;
    }

    .nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .nav-toggle.open span:nth-child(2) { opacity: 0; }
    .nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

    .hero { padding: 120px 28px 90px; }

    .about-stats { gap: 28px; }
    .stat-card { width: 160px; height: 160px; }
    .stat-number { font-size: 3rem; }
    .stat-unit { font-size: 0.9rem; }
    .about-features { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 200px 200px 160px;
    }
    .gallery-item--large { grid-column: span 2; }

    .footer-inner { flex-direction: column; gap: 36px; }
    .footer-nav ul { text-align: left; flex-direction: row; flex-wrap: wrap; gap: 14px 28px; }
}

/* ===== PRICE MENU ===== */
.price-menu-section {
    background: url('../images/PR-1.png') center / cover no-repeat;
    position: relative;
}

.price-menu-overlay {
    background: rgba(248, 244, 239, 0.55);
    padding: 80px 0 96px;
}

.price-section-title {
    font-family: 'Playfair Display', 'Noto Serif TC', serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--brown-dark);
    letter-spacing: 0.15em;
    text-align: left;
    margin-bottom: 32px;
}

.price-menu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px 56px;
    margin-top: 0;
}

.price-category {
    background: rgba(255, 252, 250, 0.82);
    border-radius: 16px;
    padding: 32px 28px;
    box-shadow: 0 4px 24px rgba(58, 42, 32, 0.08);
    border: 1px solid rgba(196, 168, 130, 0.22);
}

.price-cat-title {
    font-family: 'Playfair Display', 'Noto Serif TC', serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--brown-dark);
    letter-spacing: 0.12em;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1.5px solid rgba(196, 168, 130, 0.45);
}

.price-table {
    width: 100%;
    border-collapse: collapse;
}

.price-table thead th {
    font-family: 'Noto Sans TC', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--brown-light);
    letter-spacing: 0.15em;
    padding: 0 0 10px;
    text-align: left;
}

.price-table thead th:last-child {
    text-align: right;
}

.price-table tbody tr {
    border-top: 1px solid rgba(196, 168, 130, 0.18);
}

.price-table tbody td {
    font-family: 'Noto Sans TC', sans-serif;
    font-size: 0.92rem;
    color: var(--brown-mid);
    padding: 11px 0;
    line-height: 1.4;
}

.price-table tbody td:last-child {
    text-align: right;
    font-family: 'Roboto', sans-serif;
    font-size: 0.95rem;
    color: var(--brown-dark);
    font-weight: 400;
    letter-spacing: 0.02em;
}

.btn-book-now {
    display: inline-block;
    background: var(--brown-mid);
    color: var(--cream);
    font-family: var(--font-serif);
    font-size: 1.05rem;
    letter-spacing: 0.2em;
    padding: 18px 56px;
    border-radius: 999px;
    border: 1.5px solid rgba(196, 168, 130, 0.5);
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-book-now:hover {
    background: var(--brown-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(58, 42, 32, 0.3);
}

@media (max-width: 768px) {
    .price-menu-grid { grid-template-columns: 1fr; gap: 24px; }
    .price-menu-overlay { padding: 60px 0 72px; }
}

/* ===== MOM MARQUEE ===== */
.mom-marquee-section {
    padding: 140px 0 80px;
    background: var(--cream);
    overflow: hidden;
}

.mom-marquee-home { padding-top: 72px; }

.marquee-wrapper {
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
    mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
    margin-top: 48px;
}

.marquee-track {
    display: flex;
    gap: 16px;
    width: max-content;
    animation: marquee-scroll 40s linear infinite;
}

.marquee-track:hover {
    animation-play-state: paused;
}

.marquee-track img {
    height: 320px;
    width: auto;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 4px 20px rgba(58, 42, 32, 0.1);
    flex-shrink: 0;
}

@keyframes marquee-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@media (max-width: 768px) {
    .marquee-track img { height: 220px; }
    .marquee-track { gap: 10px; }
}

/* ===== ARTICLE PAGE ===== */
.article-page { background: var(--white); }

.article-hero {
    background: var(--cream);
    padding: 140px 0 56px;
}

.article-back {
    display: inline-block;
    font-family: 'Noto Sans TC', sans-serif;
    font-size: 0.82rem;
    color: var(--brown-light);
    letter-spacing: 0.08em;
    margin-bottom: 28px;
    transition: color 0.2s ease;
}

.article-back:hover { color: var(--brown-dark); }

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

.article-tag {
    font-family: 'Noto Sans TC', sans-serif;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    color: var(--brown-mid);
    background: rgba(196,168,130,0.18);
    padding: 4px 14px;
    border-radius: 999px;
}

.article-date {
    font-family: 'Noto Sans TC', sans-serif;
    font-size: 0.78rem;
    color: var(--brown-light);
    letter-spacing: 0.08em;
}

.article-title {
    font-family: 'Noto Serif TC', serif;
    font-size: clamp(1.35rem, 3vw, 2rem);
    font-weight: 500;
    color: var(--brown-dark);
    line-height: 1.5;
    letter-spacing: 0.05em;
    margin-bottom: 24px;
    max-width: 800px;
}

.article-lead {
    font-family: 'Noto Sans TC', sans-serif;
    font-size: 1rem;
    color: var(--brown-light);
    line-height: 2;
    max-width: 720px;
    border-left: 3px solid var(--gold);
    padding-left: 20px;
}

.article-body { padding: 64px 0 96px; }

.article-content {
    max-width: 740px;
    margin: 0 auto;
    font-family: 'Noto Sans TC', sans-serif;
    font-size: 1rem;
    color: var(--brown-mid);
    line-height: 2;
}

.article-content h2 {
    font-family: 'Noto Serif TC', serif;
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--brown-dark);
    letter-spacing: 0.08em;
    margin: 52px 0 18px;
    padding-bottom: 10px;
    border-bottom: 1.5px solid rgba(196,168,130,0.35);
}

.article-content h3 {
    font-family: 'Noto Serif TC', serif;
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--brown-dark);
    letter-spacing: 0.06em;
    margin: 28px 0 10px;
}

.article-content p {
    margin-bottom: 1.3em;
    color: var(--brown-mid);
}

.article-content ul {
    margin: 0 0 1.3em 0;
    padding-left: 24px;
    list-style: none;
}

.article-content ul li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 8px;
    color: var(--brown-mid);
}

.article-content ul li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 0.6em;
    top: 0.4em;
}

.article-divider {
    border: none;
    border-top: 1px solid rgba(196,168,130,0.25);
    margin: 48px 0;
}

.article-closing {
    background: var(--cream);
    border-radius: 16px;
    padding: 36px 32px;
    margin-top: 48px;
}

.article-closing h2 {
    border-bottom: none;
    margin-top: 0;
}

.article-cta-block {
    text-align: center;
    margin-top: 56px;
    padding: 40px 32px;
    background: var(--cream-dark);
    border-radius: 16px;
}

.article-cta-block p {
    font-size: 0.95rem;
    color: var(--brown-light);
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .article-hero { padding: 110px 0 40px; }
    .article-body { padding: 40px 0 64px; }
    .article-content h2 { font-size: 1.15rem; margin-top: 40px; }
    .article-closing { padding: 24px 20px; }
}

/* ===== COLUMN PAGES ===== */
.column-hub-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 56px;
}

.column-hub-card {
    background: var(--white);
    border-radius: 20px;
    padding: 48px 36px 40px;
    text-align: center;
    box-shadow: 0 4px 24px rgba(58,42,32,0.07);
    border: 1px solid rgba(196,168,130,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.column-hub-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(58,42,32,0.13);
}

.column-hub-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--cream-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px;
}

.column-hub-icon svg { width: 28px; height: 28px; color: var(--brown-mid); }

.column-hub-title {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--brown-dark);
    letter-spacing: 0.08em;
}

.column-hub-desc {
    font-size: 0.82rem;
    color: var(--brown-light);
    line-height: 1.8;
    letter-spacing: 0.06em;
}

.column-hub-arrow {
    font-size: 0.75rem;
    color: var(--gold);
    letter-spacing: 0.15em;
    margin-top: auto;
}

/* Article grid */
.column-section { padding: 72px 0 96px; }

.column-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.column-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(58,42,32,0.07);
    border: 1px solid rgba(196,168,130,0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.column-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 36px rgba(58,42,32,0.13);
}

.column-card-img {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: var(--cream-dark);
    position: relative;
}

.column-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.column-card:hover .column-card-img img { transform: scale(1.04); }

.column-card-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--cream-dark) 0%, #DDD0C0 100%);
}

.column-card-img-placeholder svg { width: 36px; height: 36px; color: var(--brown-light); opacity: 0.4; }

.column-card-body {
    padding: 28px 28px 32px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.column-card-tag {
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    color: var(--gold);
    font-family: var(--font-body);
    text-transform: uppercase;
}

.column-card-title {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 700;
    color: var(--brown-dark);
    line-height: 1.6;
    letter-spacing: 0.04em;
}

.column-card-excerpt {
    font-size: 0.8rem;
    color: var(--brown-light);
    line-height: 1.85;
    letter-spacing: 0.04em;
    flex: 1;
}

.column-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(196,168,130,0.18);
}

.column-card-date {
    font-size: 0.72rem;
    color: var(--brown-light);
    opacity: 0.7;
    letter-spacing: 0.08em;
}

.column-card-link {
    font-size: 0.75rem;
    color: var(--brown-mid);
    letter-spacing: 0.12em;
    border-bottom: 1px solid var(--gold);
    padding-bottom: 1px;
    transition: color 0.2s ease;
}

.column-card-link:hover { color: var(--brown-dark); }

.column-empty {
    text-align: center;
    padding: 80px 0;
    color: var(--brown-light);
}

.column-empty-icon { width: 56px; height: 56px; opacity: 0.25; margin: 0 auto 20px; }
.column-empty p { font-size: 0.9rem; letter-spacing: 0.1em; }

@media (max-width: 900px) {
    .column-hub-grid { grid-template-columns: 1fr; gap: 20px; }
    .column-hub-card { padding: 36px 28px; flex-direction: row; text-align: left; }
    .column-hub-icon { flex-shrink: 0; }
    .column-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
}

@media (max-width: 600px) {
    .column-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 2.6rem; }
    blockquote { font-size: 1.35rem; }
    .gallery-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
    .gallery-item--large { grid-column: span 1; height: 260px; }
    .gallery-item { height: 180px; }
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    right: 24px;
    bottom: 28px;
    z-index: 999;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--brown-mid);
    border: 1.5px solid rgba(196, 168, 130, 0.5);
    color: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(58, 42, 32, 0.25);
    opacity: 0;
    transform: translateY(16px);
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s ease;
}
.back-to-top svg { width: 22px; height: 22px; }
.back-to-top.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
.back-to-top:hover {
    background: var(--brown-dark);
    border-color: var(--gold);
    transform: translateY(-3px);
}
