﻿/* ===== 變數設定（字體變亮） ===== */
:root {
    --bg: #0a0a0a;
    --bg2: #111111;
    --bg3: #1a1a1a;
    --gold: #FFD24D;
    --gold-light: #FFEA95;
    --gold-dark: #C49A17;
    --text: #FFFFFF;
    --text-secondary: #F7F5EF;
    --muted: #E6E6E6; /* 更亮更柔和的輔助文字顏色 */
    --border: rgba(255, 210, 77, 0.35);
    --border-light: rgba(255, 210, 77, 0.2);
    --serif: 'Noto Serif TC', serif;
    --sans: 'Noto Sans TC', sans-serif;
    --display: 'Cormorant Garamond', serif;
    --signature: 'Dancing Script', cursive;
    --brand: 'LXGW WenKai TC', serif;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-slow: cubic-bezier(0.4, 0, 0.2, 1);
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    --shadow-gold: 0 10px 40px rgba(201, 162, 39, 0.2);
}

/* ===== Reset & Base（字體加粗變亮） ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--sans);
    font-weight: 400; /* 從 300 改為 400（更清晰） */
    line-height: 1.9;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 16px;
    padding-top: 92px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--serif);
    font-weight: 400; /* 標題加粗 */
    line-height: 1.4;
    color: var(--text);
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.4s var(--ease);
}

img, video {
    width: 100%;
    display: block;
    object-fit: cover;
}

ul {
    list-style: none;
}

/* ===== Navigation ===== */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(10, 10, 10, 0.96);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid rgba(255, 210, 77, 0.1);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.22);
    z-index: 999;
    transition: all 0.35s var(--ease);
}

nav.scrolled {
    padding: 0.85rem 5%;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    font-family: var(--brand);
    font-weight: 400;
    text-shadow: 0 2px 10px rgba(201, 162, 39, 0.25);
}

.logo img {
    display: block;
    height: 42px;
    width: auto;
    object-fit: contain;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    padding: 0.35rem;
}

.logo-text {
    color: var(--text);
    font-size: 0.95rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.nav-links a {
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    color: var(--muted);
    text-transform: uppercase;
    position: relative;
    font-weight: 500;
    padding: 0.75rem 0.95rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.28s var(--ease);
    box-shadow: inset 0 0 0 rgba(255, 255, 255, 0.05);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--gold);
    background: rgba(255, 210, 77, 0.12);
    transform: translateY(-1px);
    box-shadow: 0 10px 30px rgba(255, 210, 77, 0.12);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 3px;
    border-radius: 999px;
    background: transparent;
    transition: background 0.3s var(--ease), width 0.3s var(--ease);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 24px;
    background: var(--gold);
}

.nav-toggle {
    display: none;
    border: none;
    background: transparent;
    cursor: pointer;
    width: 46px;
    height: 46px;
    position: relative;
    padding: 0;
    align-items: center;
    justify-content: center;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
    content: '';
    display: block;
    width: 26px;
    height: 3px;
    border-radius: 999px;
    background: var(--text);
    position: absolute;
    left: 0;
    transition: all 0.3s var(--ease);
}

.nav-toggle span {
    top: 50%;
    transform: translateY(-50%);
}

.nav-toggle span::before {
    top: -9px;
}

.nav-toggle span::after {
    top: 9px;
}

.nav-toggle.active span {
    background: transparent;
}

.nav-toggle.active span::before {
    top: 0;
    transform: rotate(45deg);
}

.nav-toggle.active span::after {
    top: 0;
    transform: rotate(-45deg);
}

.nav-cta {
    font-size: 0.68rem;
    color: #fff;
    background: #111;
    border: 1px solid #111;
    padding: 0.42rem 0.95rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border-radius: 2px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.22);
    transition: all 0.3s var(--ease);
    font-weight: 700;
}

.nav-cta:hover {
    background: #2a2a2a;
    color: #fff;
    border-color: #2a2a2a;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.28);
    transform: translateY(-1px);
}


/* ===== Sidebar Navigation ===== */
.sidebar-nav {
    position: fixed;
    left: 0;
    top: 0;
    width: 280px;
    height: 100vh;
    background: var(--bg);
    border-right: 1px solid var(--border);
    z-index: 1001;
    transform: translateX(-100%);
    transition: transform 0.3s var(--ease);
    overflow-y: auto;
    padding-top: 90px;
}

.sidebar-nav.active {
    transform: translateX(0);
}

.sidebar-nav a {
    display: block;
    padding: 1rem 1.5rem;
    color: var(--muted);
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    border-left: 3px solid transparent;
    transition: all 0.3s var(--ease);
}

.sidebar-nav a:hover {
    color: var(--gold);
    background: rgba(255, 210, 77, 0.08);
    border-left-color: var(--gold);
    padding-left: 2rem;
}

.sidebar-nav a:last-child {
    margin: 1rem 1rem 0;
    padding: 0.5rem 0.95rem;
    border: 0;
    border-top: 1px solid var(--border);
    background: #111;
    color: #fff;
    font-size: 0.82rem;
    letter-spacing: 0.06em;
    border-radius: 2px;
    text-align: center;
}

.sidebar-nav a:last-child:hover {
    background: #2a2a2a;
    color: #fff;
    border-left-color: transparent;
    padding-left: 0.95rem;
}

.sidebar-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s var(--ease);
}

.sidebar-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

/* ===== Hero Section ===== */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('/assets/images/台中最頂級七期豪宅.jpg') center/cover no-repeat;
    background-color: transparent;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(0, 0, 0, 0.45) 35%,
        rgba(0, 0, 0, 0.5) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1100px;
    padding: 120px 2rem 2rem;
    animation: heroFade 1.5s var(--ease) forwards;
    background: transparent;
}

@keyframes heroFade {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-eyebrow {
    font-family: var(--display);
    font-size: 0.85rem;
    letter-spacing: 0.6em;
    color: var(--gold);
    margin-bottom: 2rem;
    text-transform: uppercase;
    font-style: italic;
    font-weight: 300;
}

.hero-title {
    font-family: var(--brand);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    margin-bottom: 1.25rem;
    letter-spacing: 0.08em;
    font-weight: 400;
    color: var(--gold);
    line-height: 1.3;
    text-shadow: 0 4px 18px rgba(201, 162, 39, 0.25);
}

.hero-subtitle {
    font-family: var(--display);
    font-size: clamp(0.95rem, 1.2vw, 1.2rem);
    letter-spacing: 0.25em;
    color: var(--gold);
    margin-bottom: 1.5rem;
    font-style: italic;
    font-weight: 300;
}

.hero-desc {
    font-size: clamp(0.9rem, 1.2vw, 1.05rem);
    color: var(--text);
    letter-spacing: 0.1em;
    margin-bottom: 2.5rem;
    font-weight: 300;
    line-height: 1.9;
}

.hero-stats {
    display: flex;
    gap: 4rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

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

.hero-stat strong {
    display: block;
    font-family: var(--display);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    color: var(--gold);
    line-height: 1;
    font-weight: 300;
    font-style: italic;
    margin-bottom: 0.5rem;
    text-shadow: 0 4px 20px rgba(201, 162, 39, 0.4);
}

.hero-stat span {
    font-size: 0.85rem;
    color: var(--text);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 300;
}

.hero-btns {
    display: flex;
    gap: 0.8rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== Buttons ===== */
/* 黑金高級按鈕風格 - 優化版（更精品、更小、更優雅） */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.55rem 1.3rem;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: all 0.35s var(--ease);
    border: 1.2px solid #D4AF37;
    color: #D4AF37;
    cursor: pointer;
    font-weight: 600;
    font-family: var(--sans);
    border-radius: 1px;
    background: rgba(0, 0, 0, 0.65);
    box-shadow: 0 3px 12px rgba(212, 175, 55, 0.12);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.2), transparent);
    transition: left 0.4s;
}

.btn:hover {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.18), rgba(0, 0, 0, 0.75));
    color: #E8D4A0;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.25), inset 0 0 15px rgba(212, 175, 55, 0.06);
    transform: translateY(-1.5px);
    letter-spacing: 0.2em;
}

.btn:hover::before {
    left: 100%;
}

/* 實心按鈕 - 黑金高級 */
.btn-solid {
    background: linear-gradient(135deg, #D4AF37 0%, #C9A227 100%);
    color: #1a1a1a;
    border-color: #E8D4A0;
    font-weight: 700;
}

.btn-solid:hover {
    background: linear-gradient(135deg, #E8D4A0 0%, #D4AF37 100%);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.35), inset 0 0 15px rgba(255, 255, 255, 0.1);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
    transform: translateY(-1.5px);
}

/* ===== Trust Section ===== */
.trust {
    background: var(--bg2);
    padding: 5rem 5%;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto 4rem;
}

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

.trust-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.trust-number {
    font-family: var(--display);
    font-size: 2.5rem;
    color: var(--gold);
    font-style: italic;
    font-weight: 300;
    margin-bottom: 0.5rem;
}

.trust-label {
    font-size: 0.85rem;
    color: var(--muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.partners {
    text-align: center;
}

.partners h3 {
    font-size: 1rem;
    color: var(--muted);
    letter-spacing: 0.3em;
    margin-bottom: 2rem;
    text-transform: uppercase;
    font-family: var(--display);
    font-weight: 300;
}

.partners-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}

.partner-logo {
    font-size: 1.3rem;
    color: var(--muted);
    letter-spacing: 0.2em;
    font-family: var(--display);
    opacity: 0.6;
    transition: opacity 0.3s;
    font-weight: 300;
}

.partner-logo:hover {
    opacity: 1;
}

/* ===== Sections ===== */
section {
    padding: 5.5rem 5%;
}

.section-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 3.5rem;
}

.section-sub {
    font-size: 0.75rem;
    letter-spacing: 0.5em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    display: block;
    font-family: var(--display);
    font-style: italic;
    font-weight: 300;
}

.section-title {
    font-size: clamp(1.7rem, 2.8vw, 2.3rem);
    margin-bottom: 1.2rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    color: var(--text);
}

.section-desc {
    color: var(--muted);
    font-size: 1rem;
    line-height: 2;
}

/* ===== Intro Block ===== */
.intro-block {
    background: var(--bg);
    padding: 6rem 5%;
}

.intro-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.intro-text {
    color: var(--text);
    font-size: 1.05rem;
    line-height: 2.2;
    margin-bottom: 2rem;
    text-align: center;
}

.section-cta {
    text-align: center;
    margin-top: 3rem;
}

.footer-contact-title {
    margin-top: 2rem;
}

/* ===== Services Section（修復圖被蓋住） ===== */
.services-section {
    background: var(--bg2);
}

.hub-section {
    background: var(--bg);
}

.hub-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.6rem;
    max-width: 1400px;
    margin: 0 auto;
}

.hub-card {
    background: var(--bg2);
    border: 1px solid var(--border-light);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.4s var(--ease);
}

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

.hub-card h3 {
    font-size: 1.3rem;
    color: var(--gold);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.hub-card p {
    color: var(--muted);
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.hub-card .hub-link {
    margin-top: auto;
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    color: var(--gold);
    text-transform: uppercase;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.8rem;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    cursor: pointer;
    display: block;
    background: var(--bg);
    border: 1px solid var(--border);
    transition: all 0.4s var(--ease);
}

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

.service-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(1.05) contrast(1.05);
    transition: all 1s var(--ease);
    z-index: 1;
}

.service-card:hover img {
    transform: scale(1.03);
    filter: brightness(0.95);
}

.service-overlay {
    position: absolute;
    inset: 0;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.18) 0%,
        rgba(0, 0, 0, 0.10) 35%,
        transparent 100%
    );
    z-index: 3;
    transition: background 0.4s var(--ease), transform 0.4s var(--ease);
}

.service-card:hover .service-overlay {
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.35) 0%,
        rgba(0, 0, 0, 0.15) 40%,
        transparent 100%
    );
}

.service-card-no-overlay {
    background: transparent;
    border: none;
}

.service-card-no-overlay .service-overlay {
    background: transparent;
}

.service-card-no-overlay .service-overlay h3,
.service-card-no-overlay .service-overlay p {
    color: #FFFFFF;
}

.service-card-no-overlay .service-overlay p {
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.6);
}

.service-overlay h3 {
    font-size: 1.4rem;
    color: var(--gold); /* 確保標題是金色 */
    margin-bottom: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.service-overlay p {
    font-size: 0.9rem;
    color: #FFFFFF; /* 確保內文是純白 */
    line-height: 1.7;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.8);
    margin-bottom: 1rem;
}

.related-links {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.related-links a {
    font-size: 0.7rem;
    color: #FFFFFF; /* 確保連結是白色 */
    border: 1px solid var(--border);
    padding: 0.3rem 0.8rem;
    transition: all 0.3s;
    background: rgba(0, 0, 0, 0.5);
}

.related-links a:hover {
    color: var(--gold);
    border-color: var(--gold);
    background: rgba(201, 162, 39, 0.1);
}

/* ===== Why Us Section ===== */
.why-us {
    background: var(--bg);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8rem;
    max-width: 1200px;
    margin: 0 auto;
}

.why-item {
    background: var(--bg2);
    padding: 2.5rem;
    border: 1px solid var(--border);
    transition: all 0.4s var(--ease);
    text-align: center;
}

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

.why-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.why-item h3 {
    font-size: 1.3rem;
    color: var(--gold);
    margin-bottom: 1rem;
    font-weight: 400;
    letter-spacing: 0.05em;
}

.why-item p {
    font-size: 0.95rem;
    color: var(--muted);
    line-height: 1.9;
}

/* ===== Chef Section ===== */
.chef-eeat {
    background: var(--bg2);
}

.chef-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
}

.chef-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/5;
}

.chef-image img {
    height: 100%;
    filter: brightness(1.05) contrast(1.05);
}

.chef-badge {
    position: absolute;
    bottom: 30px;
    left: -20px;
    background: var(--gold);
    color: var(--bg);
    padding: 1.5rem 2rem;
    text-align: center;
    box-shadow: var(--shadow-gold);
}

.chef-badge .number {
    font-family: var(--display);
    font-size: 2.5rem;
    display: block;
    line-height: 1;
    font-style: italic;
}

.chef-badge .text {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-top: 0.3rem;
}

.chef-name {
    font-family: var(--brand);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    letter-spacing: 0.25em;
    line-height: 1.5;
    margin-bottom: 0.5rem;
    font-weight: 400;
    color: var(--gold);
}

.chef-signature {
    display: block;
    font-family: var(--signature);
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    color: var(--gold);
    font-style: italic;
    margin-bottom: 2.5rem;
    font-weight: 400;
    letter-spacing: 0.05em;
}

.chef-title {
    font-size: 0.85rem;
    color: var(--muted);
    letter-spacing: 0.2em;
    margin-bottom: 3rem;
    text-transform: uppercase;
    display: block;
}

.chef-content p {
    color: var(--text);
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 2.2;
}

.chef-content p strong {
    color: var(--gold);
    font-weight: 400;
}

.chef-quote {
    font-size: 1.2rem;
    color: var(--gold);
    font-family: var(--display);
    font-style: italic;
    margin: 2.5rem 0;
    padding: 1.5rem 0;
    border-left: 2px solid var(--gold);
    line-height: 1.8;
    padding-left: 2rem;
}

/* ===== Cases Section ===== */
.cases {
    background: var(--bg);
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8rem;
    max-width: 1200px;
    margin: 0 auto;
}

.case-card {
    background: var(--bg2);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: all 0.4s var(--ease);
    display: block;
}

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

.case-image {
    position: relative;
    aspect-ratio: 4/3;
    min-height: 220px;
    overflow: hidden;
}

.case-image img {
    height: 100%;
    filter: brightness(1.05);
    transition: all 1s var(--ease);
}

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

.case-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--gold);
    color: var(--bg);
    padding: 0.5rem 1rem;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    z-index: 1;
}

.case-date {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.7);
    color: var(--gold);
    padding: 0.5rem 1rem;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    z-index: 1;
}

.case-content {
    padding: 2rem;
}

.case-content h3 {
    font-size: 1.3rem;
    color: var(--gold);
    margin-bottom: 0.8rem;
    font-weight: 400;
}

.case-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.8rem;
    color: var(--muted);
}

.case-link {
    font-size: 0.8rem;
    color: var(--gold);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    display: inline-block;
    margin-top: 1rem;
}

/* ===== Menu Preview ===== */
.menu-preview {
    background: var(--bg2);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.menu-card {
    background: var(--bg);
    padding: 3rem;
    border: 1px solid var(--border);
    text-align: center;
    transition: all 0.4s var(--ease);
    display: block;
}

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

.menu-card h3 {
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
    font-weight: 400;
}

.menu-card p {
    font-size: 0.95rem;
    color: var(--muted);
    line-height: 2;
    margin-bottom: 1.5rem;
}

.menu-card .price {
    font-size: 1.3rem;
    color: var(--gold);
    font-family: var(--display);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.menu-card .service-link {
    font-size: 0.75rem;
    color: var(--gold);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    display: inline-block;
}

/* ===== Region Matrix ===== */
.region-matrix {
    background: var(--bg);
}

.region-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.region-card {
    background: var(--bg2);
    padding: 2.5rem;
    border: 1px solid var(--border);
    text-align: center;
    transition: all 0.4s var(--ease);
    display: block;
}

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

.region-card h3 {
    font-size: 1.3rem;
    color: var(--gold);
    margin-bottom: 1rem;
    font-weight: 400;
}

.region-card p {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.region-card span {
    font-size: 0.8rem;
    color: var(--gold);
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

/* ===== FAQ Section ===== */
.faq-preview {
    background: var(--bg2);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg);
    border: 1px solid var(--border);
    transition: all 0.4s var(--ease);
}

.faq-item[open] {
    border-color: var(--gold);
}

.faq-item summary {
    padding: 2rem;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--gold);
    transition: transform 0.3s;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-item h3 {
    font-size: 1.1rem;
    color: var(--text);
    margin: 0;
    font-family: var(--sans);
    font-weight: 400;
}

.faq-item p {
    padding: 0 2rem 2rem;
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 2;
}

/* ===== Articles Section ===== */
.articles {
    background: var(--bg);
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.articles-grid,
.article-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.article-card {
    background: var(--bg2);
    padding: 2rem;
    border: 1px solid var(--border);
    transition: all 0.4s var(--ease);
    display: block;
}

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

.article-date {
    font-size: 0.75rem;
    color: var(--muted);
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.article-card h3 {
    font-size: 1.1rem;
    color: var(--gold);
    margin-bottom: 1rem;
    font-weight: 400;
    line-height: 1.6;
}

.article-card p {
    font-size: 0.85rem;
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.article-card .article-link {
    font-size: 0.75rem;
    color: var(--gold);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    display: inline-block;
}

/* ===== Cards with top image ===== */
.card-with-img {
    padding: 0 !important;
    overflow: hidden;
}
.card-with-img .card-top-img {
    display: block;
    width: 100%;
    height: 180px;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
    border-bottom: 1px solid rgba(255,210,77,0.2);
    flex-shrink: 0;
}
.card-with-img:hover .card-top-img {
    transform: scale(1.04);
}
.card-with-img .card-text {
    padding: 1.5rem 2rem 2rem;
}
.hub-card.card-with-img .card-text {
    padding: 1.5rem 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.review-card.card-with-img .card-text {
    padding: 1.5rem 2.25rem 2.75rem;
}
.region-card.card-with-img .card-text {
    padding: 1.5rem 2.5rem 2.5rem;
    text-align: center;
}
.article-card.card-with-img .card-text {
    padding: 1.5rem 2rem 2rem;
}

/* ===== Final CTA ===== */
.final-cta {
    min-height: 60vh;
    background: linear-gradient(
        rgba(10, 10, 10, 0.85),
        rgba(10, 10, 10, 0.95)
    ),
    url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?w=1920&q=80') center/cover fixed;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 6rem 5%;
}

.final-cta h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    margin-bottom: 1.5rem;
    max-width: 800px;
    font-weight: 200;
    letter-spacing: 0.1em;
    line-height: 1.6;
    color: var(--gold);
}

.final-cta p {
    color: var(--muted);
    margin-bottom: 3rem;
    letter-spacing: 0.3em;
    font-size: 0.9rem;
    font-family: var(--display);
    font-style: italic;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

/* ===== Footer ===== */
footer {
    background: #050505;
    padding: 6rem 5% 3rem;
    border-top: 1px solid var(--border);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 5rem;
    max-width: 1400px;
    margin: 0 auto 4rem;
}

.footer-brand .logo {
    font-family: var(--brand);
    font-size: 1.6rem;
    margin-bottom: 2rem;
    display: block;
    color: var(--gold);
}

.footer-brand p {
    color: #E0E0E0;
    font-size: 0.95rem;
    margin-top: 1.5rem;
    max-width: 400px;
    line-height: 2.2;
}

.footer-col h4 {
    font-size: 0.85rem;
    letter-spacing: 0.25em;
    color: var(--gold);
    margin-bottom: 2rem;
    text-transform: uppercase;
    font-weight: 400;
    font-family: var(--display);
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 1.2rem;
}

.footer-col a {
    font-size: 0.95rem;
    color: #E0E0E0;
    transition: color 0.3s;
}

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

.footer-social {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.footer-social h4 {
    font-size: 0.8rem;
    letter-spacing: 0.25em;
    color: var(--gold);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    font-family: var(--display);
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
    color: #E0E0E0;
    transition: all 0.3s;
}

.social-links a:hover {
    color: var(--gold);
    transform: translateX(5px);
}

.footer-keywords {
    max-width: 1400px;
    margin: 0 auto 3rem;
    padding: 3rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.footer-keywords h4 {
    font-size: 0.85rem;
    letter-spacing: 0.25em;
    color: var(--gold);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    font-family: var(--display);
    text-align: center;
}

.keyword-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.keyword-tags a {
    font-size: 0.85rem;
    color: #E0E0E0;
    padding: 0.5rem 1.2rem;
    border: 1px solid var(--border);
    border-radius: 20px;
    transition: all 0.3s;
}

.keyword-tags a:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    padding-top: 3rem;
    font-size: 0.85rem;
    color: #AAAAAA;
    letter-spacing: 0.1em;
}

/* ===== Floating CTA ===== */
.floating-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 999;
}

.floating-btn {
    width: 50px;
    height: 50px;
    border-radius: 2px;
    background: rgba(212, 175, 55, 0.98);
    color: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: 0 3px 12px rgba(212, 175, 55, 0.2);
    transition: all 0.3s;
    border: 1px solid rgba(212, 175, 55, 0.5);
    font-weight: 700;
}

.floating-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
    background: rgba(232, 212, 160, 0.98);
}

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
    .trust-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .services-grid,
    .hub-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cases-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .region-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .articles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .chef-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: inline-flex;
    }

    /* Sidebar always present on mobile */
    .sidebar-nav,
    .sidebar-overlay {
        display: block;
    }


    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        padding: 1.2rem 5%;
        background: rgba(10, 10, 10, 0.98);
        flex-direction: column;
        gap: 0.9rem;
        border-top: 1px solid rgba(255, 210, 77, 0.15);
        box-shadow: 0 24px 55px rgba(0, 0, 0, 0.3);
        z-index: 90;
    }

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

    .nav-links a {
        width: 100%;
        padding: 0.85rem 1rem;
        font-size: 0.95rem;
        border-radius: 999px;
    }

    .nav-cta {
        width: 100%;
        text-align: center;
        padding: 0.65rem 1rem;
        font-size: 0.82rem;
    }

    nav {
        align-items: flex-start;
        padding: 0.85rem 5%;
    }

    section {
        padding: 3.2rem 5%;
    }
    
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid,
    .hub-grid,
    .why-grid,
    .cases-grid,
    .menu-grid,
    .region-grid,
    .articles-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        gap: 1.6rem;
    }
    
    .hero-btns,
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 0.8rem;
    }
    
    .btn {
        width: auto;
        max-width: 240px;
        text-align: center;
        padding: 0.65rem 1.3rem;
        font-size: 0.84rem;
    }
    
    .hero {
        min-height: 90vh;
        height: auto;
    }

    .hero-content {
        padding: 80px 1.5rem 2rem;
    }

    .hero-title {
        font-size: clamp(1.5rem, 6vw, 2.1rem);
        letter-spacing: 0.06em;
    }

    .hero-subtitle {
        font-size: clamp(0.9rem, 2.5vw, 1rem);
        margin-bottom: 1.2rem;
    }

    .hero-desc {
        font-size: clamp(0.85rem, 2.4vw, 0.98rem);
        margin-bottom: 2rem;
    }

    .page-hero {
        min-height: 44vh;
        height: auto;
    }

    .page-hero-content {
        padding: 1rem 1.25rem;
    }

    .page-subnav {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.85rem;
        max-width: 1200px;
        margin: 0 1.25rem 1.5rem;
        padding: 0.8rem 1rem;
        background: rgba(0, 0, 0, 0.45);
        border-radius: 999px;
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
    }

    .subnav-link {
        color: #fff;
        background: rgba(255, 255, 255, 0.08);
        padding: 0.75rem 1.2rem;
        border-radius: 999px;
        font-size: 0.92rem;
        text-decoration: none;
        transition: background 0.2s ease, transform 0.2s ease;
        white-space: nowrap;
    }

    .subnav-link:hover,
    .subnav-link:focus {
        background: rgba(255, 255, 255, 0.18);
        transform: translateY(-1px);
    }

    .page-hero-content h1 {
        font-size: clamp(1.5rem, 5vw, 1.9rem);
    }

    .page-hero-content h2 {
        font-size: clamp(0.88rem, 3vw, 1rem);
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .floating-cta {
        bottom: 1rem;
        right: 1rem;
    }
    
    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .chef-badge {
        left: 20px;
        bottom: 20px;
        padding: 1rem 1.5rem;
    }
}
/* ===== Reviews ===== */
.reviews {
    padding: 8rem 5%;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.review-card {
    background: var(--bg2);
    border: 1px solid var(--border-light);
    padding: 2.75rem 2.25rem;
    transition: all 0.4s var(--ease);
}

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

.review-stars {
    color: var(--gold);
    letter-spacing: 0.2em;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.review-text {
    color: var(--text);
    font-size: 1rem;
    line-height: 2;
    margin-bottom: 2rem;
}

.review-author {
    font-family: var(--display);
    color: var(--gold);
    font-size: 1.05rem;
    font-style: italic;
}

.review-role {
    color: var(--muted);
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    margin-top: 0.3rem;
}

/* ===== Reservation Process ===== */
.process {
    background: var(--bg2);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.75rem;
    max-width: 1300px;
    margin: 0 auto;
}

.process-item {
    background: var(--bg);
    border: 1px solid var(--border-light);
    padding: 2.5rem 1.75rem;
    text-align: center;
    transition: all 0.4s var(--ease);
}

.process-item:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
}

.process-number {
    font-family: var(--display);
    font-size: 2.3rem;
    color: var(--gold);
    font-style: italic;
    font-weight: 300;
    line-height: 1;
    margin-bottom: 1.25rem;
}

.process-item h3 {
    font-size: 1.15rem;
    margin-bottom: 0.8rem;
    font-weight: 400;
}

.process-item p {
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.85;
}

/* ===== Video Section ===== */
.video-section {
    background: var(--bg);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.75rem;
    max-width: 1200px;
    margin: 0 auto;
}

.video-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.video-wrapper {
    border: 1px solid var(--border-light);
    overflow: hidden;
    box-shadow: var(--shadow);
    border-radius: 1rem;
}

.video-wrapper video {
    width: 100%;
    display: block;
    background: #000;
}

.video-card h3 {
    font-size: 1.2rem;
    margin: 0;
}

.video-card p {
    color: var(--muted);
    line-height: 1.8;
}

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

/* ===== Photo Gallery (portfolio real photos) ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
    max-width: 1300px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    background: var(--bg2);
    border: 1px solid var(--border-light);
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    filter: brightness(1.03);
    transition: transform 1s var(--ease);
}

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

.gallery-caption {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    padding: 1.75rem;
    background: linear-gradient(to top, rgba(10,10,10,0.88) 15%, transparent 65%);
    opacity: 0;
    transition: opacity 0.4s var(--ease);
}

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

.gallery-caption p {
    color: var(--text);
    font-size: 0.95rem;
    letter-spacing: 0.03em;
    line-height: 1.7;
}

@media (max-width: 1024px) {
    .reviews-grid { grid-template-columns: 1fr; }
    .process-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .process-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    .process-item {
        flex-direction: row !important;
        align-items: flex-start !important;
        text-align: left !important;
        padding: 1.2rem !important;
        gap: 1rem;
    }
    .process-number {
        font-size: 1.4rem !important;
        min-width: 48px;
        text-align: center;
        flex-shrink: 0;
        margin-bottom: 0 !important;
    }
    .process-item h3 {
        font-size: 0.95rem;
        margin-bottom: 0.35rem;
    }
    .process-item p {
        font-size: 0.82rem;
        margin: 0;
    }
    .gallery-grid { grid-template-columns: 1fr; }
    .hero-slider-nav { bottom: 1.5rem; }
}

/* ===== Interior Page Hero Banner (used on all sub-pages) ===== */
.page-hero {
    position: relative;
    height: 60vh;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
    margin-top: 0;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.55);
    z-index: 0;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(10, 10, 10, 0.35) 0%,
        rgba(10, 10, 10, 0.65) 55%,
        rgba(10, 10, 10, 0.95) 100%
    );
    z-index: 1;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 2rem;
    animation: heroFade 1.2s var(--ease) forwards;
}

.page-hero-eyebrow {
    display: block;
    font-family: var(--display);
    font-size: 0.8rem;
    letter-spacing: 0.55em;
    color: var(--gold);
    text-transform: uppercase;
    font-style: italic;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.page-hero-content h1 {
    font-family: var(--brand);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    letter-spacing: 0.06em;
    color: var(--gold);
    margin-bottom: 1rem;
    text-shadow: 0 4px 18px rgba(201, 162, 39, 0.3);
}

.page-hero-content h2 {
    font-family: var(--display);
    font-size: clamp(0.95rem, 1.4vw, 1.2rem);
    letter-spacing: 0.18em;
    color: var(--gold);
    font-style: italic;
    font-weight: 300;
    margin-bottom: 1.25rem;
}

.page-hero-content p {
    color: var(--text);
    font-size: 1rem;
    letter-spacing: 0.05em;
    line-height: 1.9;
}

/* ===== Generic Content Block ===== */
.content-block {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.content-text {
    color: var(--text);
    font-size: 1.05rem;
    line-height: 2.2;
    margin-bottom: 1.75rem;
}

.content-text strong {
    color: var(--gold);
    font-weight: 400;
}

/* ===== Generic Grids & Cards ===== */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1300px;
    margin: 0 auto;
}

.media-card {
    display: block;
    background: var(--bg2);
    border: 1px solid var(--border-light);
    overflow: hidden;
    transition: all 0.4s var(--ease);
}

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

.media-card-image {
    aspect-ratio: 16 / 10;
    min-height: 220px;
    overflow: hidden;
    background: var(--bg);
}

.media-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 1s var(--ease);
}

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

.media-card-content {
    padding: 1.35rem 1.25rem 1.5rem;
}

.media-card-tag {
    display: inline-block;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.media-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    font-weight: 400;
    color: var(--text);
}

.media-card p {
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.8;
}

.card {
    background: var(--bg2);
    border: 1px solid var(--border-light);
    padding: 2.25rem 2rem;
    transition: all 0.4s var(--ease);
}

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

.card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.9rem;
    font-weight: 400;
    color: var(--text);
}

.card p {
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.85;
}

/* ===== CTA Section (before footer, all pages) ===== */
.cta-section {
    background: linear-gradient(rgba(10,10,10,0.88), rgba(10,10,10,0.92)),
                url('/assets/images/精緻餐桌擺設.jpg') center/cover fixed;
    text-align: center;
    padding: 7rem 5%;
}

.cta-section h2 {
    font-size: clamp(1.6rem, 3vw, 2.3rem);
    color: var(--gold);
    margin-bottom: 1.25rem;
    font-weight: 300;
    letter-spacing: 0.06em;
}

.cta-section p {
    color: var(--muted);
    font-size: 1rem;
    margin-bottom: 2.5rem;
    letter-spacing: 0.05em;
}

@media (max-width: 1024px) {
    .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .grid-3, .grid-4 { grid-template-columns: 1fr; }
    .page-hero { height: 50vh; min-height: 340px; }
    .cta-section { background-attachment: scroll; }
}
