:root {
    --gold-grad: linear-gradient(135deg, #e2b4bd 0%, #ad8a90 100%);
    --gold: #e2b4bd;
    --dark: #4a3a3c; /* 勃艮第深红粉，作为视觉锚点 */
    --creamy: #f9f0f1; /* 莫兰迪淡藕粉背景 */
    --text: #3a2e2f;
    --text-light: #8c7d7f;
    --border: rgba(226, 180, 189, 0.4);
    --shadow: 0 20px 50px rgba(74, 58, 60, 0.12);
}

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

body {
    background: var(--creamy) url('https://www.transparenttextures.com/patterns/white-marble.png');
    color: var(--text);
    font-family: 'Outfit', 'PingFang SC', sans-serif;
    overflow-x: hidden;
    line-height: 1.6;
}

.serif {
    font-family: 'Cormorant Garamond', serif;
}

/* --- Navigation --- */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2000;
    background: rgba(253, 251, 247, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    padding: 20px 0;
}

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

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
}

/* --- Hero --- */
.hero {
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
}

.hero-content {
    display: flex;
    width: 100%;
    height: 100%;
}

.hero-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 8%;
    background: white;
    position: relative;
    z-index: 10;
}

.hero-right {
    flex: 1.2;
    background: url('hero.png') center/cover no-repeat;
    position: relative;
}

.hero-right::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, white, transparent 30%);
}

.hero-actions {
    display: flex;
    gap: 20px;
    align-items: center;
}

.hero-location {
    font-size: 11px;
    letter-spacing: 2px;
    color: var(--text-light);
    text-transform: uppercase;
    font-weight: 600;
}

.hero-title {
    font-size: clamp(3.5rem, 8vw, 6rem);
    line-height: 1.1;
    margin-bottom: 30px;
    color: var(--dark);
}

.hero-desc {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 480px;
    margin-bottom: 50px;
}

.gold-bar {
    width: 60px;
    height: 3px;
    background: var(--gold-grad);
    margin-bottom: 20px;
}

/* --- Typography & Section Titles --- */
.section-title-wrap {
    text-align: center;
    margin-bottom: 80px;
}

.main-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--dark);
    margin-bottom: 5px;
    letter-spacing: 2px;
}

.sub-title {
    display: block;
    font-size: 10px;
    letter-spacing: 6px;
    color: var(--gold);
    text-transform: uppercase;
    font-weight: 700;
}

/* --- Layout --- */
.section {
    padding: 120px 0;
}

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

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

.img-frame {
    position: relative;
    padding: 20px;
}

.img-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 80%;
    height: 80%;
    border: 2px solid var(--gold);
    z-index: -1;
}

.img-frame img {
    width: 100%;
    box-shadow: var(--shadow);
}

/* --- Buttons --- */
.btn-main {
    display: inline-block;
    padding: 18px 45px;
    background: var(--dark);
    color: white;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 2px;
    transition: 0.3s;
    font-size: 13px;
    white-space: nowrap;
}

.btn-main:hover {
    background: var(--gold);
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

/* --- Dark Menu --- */
.dark-menu {
    background: var(--dark);
    color: white;
    padding: 120px 0;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.price {
    color: var(--gold);
    font-weight: 700;
}

/* --- Gallery (3x2 Grid) --- */
.gallery-grid-3x2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 60px;
}

.gallery-grid-3x2 img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: 0.5s;
    border: 1px solid var(--border);
}

.gallery-grid-3x2 img:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow);
}

/* --- Staff (Responsive Grid) --- */
.staff-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

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

.staff-img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto;
    border: 1px solid var(--border);
    padding: 5px;
    transition: 0.3s;
}

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

.staff-name {
    font-size: 1.5rem;
    margin-top: 25px;
    color: var(--dark);
}

.staff-role {
    font-size: 11px;
    color: var(--gold);
    letter-spacing: 2px;
    margin-top: 5px;
}

/* --- Contact & Access (Refined Symmetry) --- */
.contact-section {
    padding: 120px 0;
}

.contact-outer-box {
    border: 1px solid var(--border);
    background: white;
    overflow: hidden;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
}

.contact-details {
    padding: 80px 10%;
    display: flex;
    flex-direction: column;
    gap: 45px;
}

.contact-item {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.contact-icon {
    width: 45px;
    height: 45px;
    background: var(--dark);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-text h4 {
    font-size: 12px;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 10px;
    text-transform: uppercase;
    font-weight: 700;
}

.contact-text p {
    font-size: 1.1rem;
    color: var(--text);
    line-height: 1.4;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-btn {
    color: var(--text);
    transition: 0.3s;
}

.social-btn:hover {
    color: var(--gold);
}

.map-box {
    width: 100%;
    min-height: 550px;
    background: #eee;
}

.map-box iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
    filter: grayscale(1) contrast(1.1);
    transition: 0.5s;
}

.map-box:hover iframe {
    filter: grayscale(0);
}

/* --- Animations --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: 1s ease-out;
}

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

/* --- Responsive --- */
@media (max-width: 1024px) {
    section, .section, .contact-section { padding: 80px 0; }
    .hero-content { flex-direction: column; }
    .hero-left { padding: 60px 20px; text-align: center; order: 2; }
    .hero-right { height: 350px; width: 100%; order: 1; }
    .hero-right::before { background: linear-gradient(0deg, white, transparent 50%); }
    .hero-actions { flex-direction: column; gap: 15px; }
    
    .grid-2, .contact-grid { grid-template-columns: 1fr; }
    .contact-details { padding: 60px 40px; }
    .map-box { min-height: 400px; }

    .gallery-grid-3x2 { grid-template-columns: 1fr 1fr; }
    .gallery-grid-3x2 img { height: 250px; }

    .staff-grid { grid-template-columns: 1fr; gap: 60px; }
    .staff-img { width: 180px; height: 180px; }

    .nav-links { display: none; }
    .btn-main { padding: 15px 30px; font-size: 12px; }
}

@media (max-width: 640px) {
    .gallery-grid-3x2 { grid-template-columns: 1fr; }
    .gallery-grid-3x2 img { height: 300px; }
    .main-title { font-size: 2rem; }
}
