:root {
    --bg: #0f0c0a;
    --bg-2: #15110f;
    --panel: #191512;
    --gold: #c7a76c;
    --gold-strong: #e0c38c;
    --text: #f5f1e8;
    --muted: #c1b7a6;
    --border: rgba(199, 167, 108, 0.16);
    --line: rgba(199, 167, 108, 0.24);
    --shadow: rgba(0, 0, 0, 0.45);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Noto Serif TC', serif;
    background:
        radial-gradient(circle at 12% 10%, rgba(199, 167, 108, 0.14), transparent 45%),
        radial-gradient(circle at 85% 20%, rgba(199, 167, 108, 0.08), transparent 45%),
        linear-gradient(180deg, #0d0b0a 0%, #15110f 55%, #0e0c0a 100%),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.02) 0 1px, transparent 1px 120px);
    color: var(--text);
    min-height: 100vh;
    letter-spacing: 0.2px;
}

h1,
h2,
h3,
.hero-kicker,
.section-kicker,
.stat-number,
.signature-index,
.journey-index,
.step-num {
    font-family: 'Cormorant Garamond', 'Noto Serif TC', serif;
}

a {
    color: inherit;
}

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

.container {
    width: min(1180px, 90vw);
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    backdrop-filter: blur(14px);
    background: rgba(14, 11, 10, 0.9);
    border-bottom: 1px solid var(--line);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Cinzel', serif;
    text-decoration: none;
    color: inherit;
}

.logo-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    border: 1px solid rgba(199, 167, 108, 0.6);
    background: linear-gradient(130deg, var(--gold) 0%, var(--gold-strong) 100%);
    color: #12100d;
    font-weight: 700;
    letter-spacing: 2px;
    box-shadow: 0 10px 22px rgba(199, 167, 108, 0.25);
}

.logo-text {
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Marcellus SC', 'Cormorant Garamond', 'Noto Serif TC', serif;
}

.main-nav {
    display: flex;
    gap: 22px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    align-items: center;
}

.main-nav a,
.nav-link {
    text-decoration: none;
    color: var(--muted);
    transition: color 0.3s ease;
}

.nav-link {
    background: transparent;
    border: 0;
    padding: 0;
    font: inherit;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    color: inherit;
}

.main-nav a:hover,
.nav-link:hover {
    color: var(--gold-strong);
}

.nav-item {
    position: relative;
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%);
    min-width: 180px;
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: 12px;
    border-radius: 14px;
    border: 1px solid var(--border);
    background: rgba(12, 12, 16, 0.98);
    box-shadow: 0 18px 40px var(--shadow);
    z-index: 5;
}

.nav-dropdown-menu a {
    padding: 8px 10px;
    border-radius: 10px;
}

.nav-dropdown-menu a:hover {
    background: rgba(199, 167, 108, 0.12);
}

.nav-dropdown.is-open .nav-dropdown-menu,
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
    display: flex;
}

.nav-toggle {
    display: none;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 8px;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
}

.nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--gold);
}

.hero {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.hero-inner {
    min-height: 60vh;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(6, 6, 7, 0.92) 0%, rgba(16, 16, 20, 0.7) 50%, rgba(10, 10, 12, 0.92) 100%);
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 20%, rgba(199, 167, 108, 0.22), transparent 45%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 120px 0 90px;
    max-width: 720px;
}

.hero-kicker {
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold);
    margin-bottom: 16px;
    font-size: 0.78rem;
}

.hero h1 {
    font-size: clamp(2.8rem, 4.8vw, 4rem);
    line-height: 1.05;
    margin: 0 0 16px;
}

.hero-subtitle {
    color: var(--muted);
    font-size: 1.1rem;
    line-height: 1.9;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin: 28px 0 40px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 26px;
    border-radius: 10px;
    border: 1px solid var(--border);
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary {
    background: linear-gradient(120deg, var(--gold) 0%, var(--gold-strong) 100%);
    color: #111;
    border-color: transparent;
    box-shadow: 0 12px 30px rgba(199, 167, 108, 0.3);
}

.btn-ghost {
    color: var(--gold-strong);
}

.btn:hover {
    transform: translateY(-2px);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 0;
    border: 1px solid var(--line);
    border-radius: 16px;
    overflow: hidden;
    background: rgba(15, 13, 12, 0.6);
}

.hero-stat {
    padding: 14px 18px;
    border-right: 1px solid var(--line);
}

.hero-stat:last-child {
    border-right: 0;
}

.stat-number {
    font-family: 'Cinzel', serif;
    color: var(--gold);
    font-size: 1.2rem;
}

.stat-label {
    display: block;
    color: var(--muted);
    margin-top: 6px;
    font-size: 0.85rem;
}

section {
    padding: 90px 0;
}

[id] {
    scroll-margin-top: 90px;
}

.quick-links {
    margin-top: -50px;
    position: relative;
    z-index: 3;
}

.quick-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
}

.quick-card {
    background: rgba(17, 14, 13, 0.8);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: transform 0.3s ease, border 0.3s ease;
}

.quick-card:hover {
    transform: translateY(-4px);
    border-color: var(--gold);
}

.quick-card .icon {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid var(--gold);
    color: var(--gold);
}

.quick-card svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.quick-card .label {
    font-weight: 600;
}

.quick-card .arrow {
    margin-left: auto;
    color: var(--gold);
}

.signature {
    position: relative;
    padding: 100px 0;
}

.signature::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 10% 20%, rgba(199, 167, 108, 0.14), transparent 50%),
        radial-gradient(circle at 85% 30%, rgba(199, 167, 108, 0.12), transparent 45%);
    pointer-events: none;
    z-index: 0;
}

.signature-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    align-items: start;
}

.signature-body h2 {
    margin: 10px 0 14px;
    font-size: clamp(2rem, 3.4vw, 2.8rem);
}

.signature-list {
    margin-top: 22px;
    display: grid;
    gap: 14px;
}

.signature-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 14px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(17, 14, 13, 0.7);
}

.signature-index {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-family: 'Cinzel', serif;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.signature-collage {
    display: grid;
    --row: clamp(150px, 18vw, 200px);
    --row-small: clamp(120px, 14vw, 170px);
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    grid-template-rows: var(--row) var(--row) var(--row-small);
    grid-template-areas:
        "tile1 tile2"
        "tile1 tile3"
        "tile4 tile4";
    gap: 16px;
    align-content: start;
}

.collage-tile {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border);
    background-size: cover;
    background-position: center;
    box-shadow: 0 18px 40px var(--shadow);
    min-height: 120px;
}

.collage-tile::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(8, 8, 10, 0.15), rgba(8, 8, 10, 0.65));
}

.fallback-1 {
    background-image: linear-gradient(140deg, rgba(199, 167, 108, 0.35), rgba(12, 12, 16, 0.95)),
        repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.04) 0 2px, transparent 2px 8px);
}

.fallback-2 {
    background-image: linear-gradient(120deg, rgba(35, 35, 45, 0.8), rgba(199, 167, 108, 0.25)),
        radial-gradient(circle at 20% 20%, rgba(199, 167, 108, 0.25), transparent 55%);
}

.fallback-3 {
    background-image: linear-gradient(160deg, rgba(199, 167, 108, 0.2), rgba(8, 8, 12, 0.95)),
        repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.03) 0 3px, transparent 3px 9px);
}

.fallback-4 {
    background-image: linear-gradient(200deg, rgba(30, 30, 40, 0.9), rgba(199, 167, 108, 0.2)),
        radial-gradient(circle at 80% 30%, rgba(199, 167, 108, 0.3), transparent 60%);
}

.tile-1 { grid-area: tile1; }
.tile-2 { grid-area: tile2; }
.tile-3 { grid-area: tile3; }
.tile-4 { grid-area: tile4; }

.section-head {
    margin-bottom: 36px;
    max-width: 720px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--line);
}

.section-kicker {
    color: var(--gold);
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: 12px;
}

.section-head h2 {
    margin: 10px 0 12px;
    font-size: clamp(2.1rem, 3.2vw, 3rem);
}

.muted {
    color: var(--muted);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    counter-reset: service;
}

.service-card {
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    background: rgba(16, 14, 13, 0.82);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.35);
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
    min-height: 260px;
    counter-increment: service;
}

.service-card--extra .service-body::before {
    content: 'VIP';
}

.service-media {
    min-height: 240px;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.service-media--empty {
    background-image: linear-gradient(135deg, rgba(199, 167, 108, 0.2), rgba(15, 12, 10, 0.85)),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.03) 0 1px, transparent 1px 120px);
}

.service-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(20,20,24,0) 0%, rgba(12,12,14,0.7) 100%);
}

.service-body {
    padding: 26px 28px;
    display: grid;
    gap: 12px;
    align-content: start;
    position: relative;
}

.service-body h3 {
    margin: 0;
    font-size: 1.6rem;
}

.service-body p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.service-body::before {
    content: counter(service, decimal-leading-zero);
    font-family: 'Cormorant Garamond', 'Noto Serif TC', serif;
    color: var(--gold);
    letter-spacing: 3px;
    font-size: 0.85rem;
}

.text-link {
    color: var(--gold-strong);
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.text-link::after {
    content: '->';
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 22px;
}

.visual-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
    align-items: center;
}

.visual-media {
    min-height: 320px;
    border-radius: 20px;
    background-size: cover;
    background-position: center;
    border: 1px solid var(--border);
    box-shadow: 0 20px 50px var(--shadow);
    position: relative;
}

.visual-media::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    background: linear-gradient(120deg, rgba(11, 11, 12, 0.1), rgba(11, 11, 12, 0.6));
}

.visual-body h2 {
    margin: 10px 0 14px;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.visual-body .btn {
    margin-top: 18px;
}

.featured-card {
    background: rgba(17, 14, 13, 0.8);
    border: 1px solid var(--line);
    border-radius: 18px;
    overflow: hidden;
}

.featured-media {
    height: 180px;
    background-size: cover;
    background-position: center;
}

.featured-body {
    padding: 18px 20px 26px;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
}

.testimonial-card {
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 20px;
    background: rgba(17, 14, 13, 0.82);
}

.testimonial-card span {
    display: block;
    margin-top: 12px;
    color: var(--gold);
    font-weight: 600;
}

.journey {
    position: relative;
    padding: 90px 0;
}

.journey::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 75% 20%, rgba(199, 167, 108, 0.16), transparent 55%);
    pointer-events: none;
    z-index: 0;
}

.journey-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
}

.journey-media {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin: 24px 0 30px;
}

.journey-shot {
    height: 180px;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--border);
    background-size: cover;
    background-position: center;
    box-shadow: 0 16px 34px var(--shadow);
    position: relative;
}

.journey-shot::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(140deg, rgba(9, 9, 12, 0.15), rgba(9, 9, 12, 0.65));
}

.journey-card {
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 22px;
    background: linear-gradient(140deg, rgba(20, 16, 14, 0.95), rgba(12, 10, 9, 0.8));
    position: relative;
    overflow: hidden;
}

.journey-card::after {
    content: '';
    position: absolute;
    width: 140px;
    height: 140px;
    right: -40px;
    top: -40px;
    background: radial-gradient(circle, rgba(199, 167, 108, 0.2), transparent 70%);
}

.journey-index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-family: 'Cinzel', serif;
    margin-bottom: 12px;
}

.articles-preview {
    position: relative;
    padding: 90px 0;
}

.articles-preview::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 15% 60%, rgba(199, 167, 108, 0.14), transparent 55%);
    pointer-events: none;
    z-index: 0;
}

.articles-preview .container {
    position: relative;
    z-index: 1;
}

.section-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 24px;
}

.cta {
    padding: 60px 0 100px;
}

.cta-box {
    border-radius: 24px;
    padding: 40px;
    background: linear-gradient(135deg, rgba(199, 167, 108, 0.18) 0%, rgba(17, 17, 19, 0.95) 60%);
    border: 1px solid var(--border);
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    align-items: center;
}

.cta-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.contact-dropdown {
    position: relative;
    display: inline-flex;
}

.contact-menu {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    min-width: 220px;
    display: none;
    flex-direction: column;
    gap: 10px;
    padding: 14px;
    border-radius: 16px;
    border: 1px solid var(--line);
    background: rgba(18, 14, 12, 0.96);
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.35);
    z-index: 4;
}

.contact-menu a {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 14px;
    border-radius: 12px;
    border: 1px solid rgba(199, 167, 108, 0.2);
    text-decoration: none;
    color: var(--text);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: linear-gradient(130deg, rgba(14, 11, 10, 0.9), rgba(24, 19, 16, 0.88));
}

.contact-menu a::after {
    content: '->';
    color: var(--gold-strong);
}

.contact-dropdown.is-open .contact-menu,
.contact-dropdown:hover .contact-menu,
.contact-dropdown:focus-within .contact-menu {
    display: flex;
}

.site-footer {
    border-top: 1px solid var(--border);
    padding: 50px 0 30px;
    background: rgba(10, 10, 12, 0.9);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

.footer-grid h3,
.footer-grid h4 {
    margin-top: 0;
}

.footer-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-tag {
    border: 1px solid var(--border);
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 12px;
    color: var(--muted);
    background: transparent;
    cursor: pointer;
    font: inherit;
}

.link-button {
    background: none;
    border: 0;
    padding: 0;
    color: var(--gold-strong);
    cursor: pointer;
    font: inherit;
}

.support-widget {
    position: fixed;
    right: 26px;
    bottom: 26px;
    z-index: 15;
    display: grid;
    gap: 10px;
    align-items: end;
}

.support-toggle {
    background: linear-gradient(180deg, rgba(199, 167, 108, 0.24) 0%, rgba(16, 12, 10, 0.92) 100%);
    color: var(--text);
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 12px 18px 12px 16px;
    letter-spacing: 3px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.35);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.support-toggle::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 12px rgba(199, 167, 108, 0.8);
}

.support-panel {
    display: none;
    flex-direction: column;
    gap: 10px;
    padding: 14px;
    border-radius: 18px;
    background: rgba(18, 14, 12, 0.96);
    border: 1px solid var(--line);
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.35);
}

.support-widget.is-open .support-panel {
    display: flex;
}

.support-item {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 14px;
    border-radius: 12px;
    border: 1px solid rgba(199, 167, 108, 0.2);
    text-decoration: none;
    color: var(--text);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: linear-gradient(130deg, rgba(14, 11, 10, 0.9), rgba(24, 19, 16, 0.88));
}

.support-item::after {
    content: '->';
    color: var(--gold-strong);
}

@media (max-width: 640px) {
    .support-widget {
        right: 18px;
        bottom: 18px;
    }

    .support-toggle {
        padding: 10px 14px;
    }
}

body.modal-open {
    overflow: hidden;
}

.wechat-modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 20;
    padding: 24px;
}

.wechat-modal.is-open {
    display: flex;
}

.wechat-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(8, 7, 6, 0.75);
    backdrop-filter: blur(6px);
}

.wechat-modal__panel {
    position: relative;
    z-index: 1;
    width: min(420px, 90vw);
    background: rgba(18, 14, 12, 0.98);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.45);
    display: grid;
    gap: 16px;
}

.wechat-modal__close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: transparent;
    color: var(--text);
    cursor: pointer;
    font-size: 18px;
}

.wechat-modal__id {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: rgba(12, 10, 9, 0.6);
}

.wechat-modal__qr {
    width: 100%;
    border-radius: 12px;
    border: 1px solid var(--line);
    background: #000;
}

.wechat-modal__placeholder {
    border: 1px dashed var(--line);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    color: var(--muted);
}

.footer-bottom {
    text-align: center;
    padding-top: 26px;
    color: var(--muted);
    font-size: 13px;
}

.content-block {
    padding: 80px 0;
}

.content-grid {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
    gap: 30px;
}

.content-main {
    background: rgba(17, 14, 13, 0.82);
    border-radius: 16px;
    border: 1px solid var(--line);
    padding: 28px;
    line-height: 2;
    font-size: 1.02rem;
}

.content-main p {
    color: #d2c6b5;
}

.content-aside {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.aside-card {
    border: 1px solid var(--line);
    padding: 24px;
    border-radius: 16px;
    background: rgba(17, 14, 13, 0.82);
}

.article-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 22px;
}

.article-card {
    border: 1px solid var(--line);
    border-radius: 16px;
    overflow: hidden;
    background: rgba(17, 14, 13, 0.82);
}

.article-media {
    height: 180px;
    background-size: cover;
    background-position: center;
}

.article-body {
    padding: 20px;
}

.detail-highlights,
.detail-steps,
.detail-gallery {
    padding: 70px 0;
}

.highlight-banners {
    display: grid;
    gap: 24px;
}

.highlight-banner {
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    background: rgba(16, 14, 13, 0.82);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.35);
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: center;
}

.highlight-illustration {
    min-height: 220px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.highlight-illustration::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(140deg, rgba(9, 9, 12, 0.2), rgba(9, 9, 12, 0.7));
}

.highlight-illustration--fallback {
    background-image: linear-gradient(135deg, rgba(199, 167, 108, 0.25), rgba(12, 12, 16, 0.9));
}

.highlight-content {
    padding: 28px;
}

.highlight-content h3 {
    margin: 0 0 12px;
    font-size: 1.6rem;
}

.highlight-list {
    margin: 0;
    padding-left: 18px;
    display: grid;
    gap: 8px;
    color: var(--muted);
    line-height: 1.7;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
}

.step-card {
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 20px;
    background: rgba(18, 18, 22, 0.85);
}

.step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-family: 'Cinzel', serif;
    margin-bottom: 12px;
}

.venue-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.venue-card {
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: rgba(15, 13, 12, 0.7);
    box-shadow: 0 16px 30px var(--shadow);
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    min-height: 240px;
    transition: transform 0.3s ease, border 0.3s ease;
}

.venue-card:hover {
    transform: translateY(-4px);
    border-color: var(--gold);
}

.venue-media {
    min-height: 160px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.venue-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(140deg, rgba(10, 10, 12, 0.15), rgba(10, 10, 12, 0.6));
}

.venue-body {
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.venue-body span {
    font-weight: 600;
}

.venue-card--more {
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 10px;
    background: linear-gradient(140deg, rgba(199, 167, 108, 0.2), rgba(12, 12, 16, 0.95));
    border-style: dashed;
    min-height: 240px;
}

.venue-card--more .venue-body {
    padding: 30px;
    flex-direction: column;
    justify-content: center;
}

.venue-card--more .venue-body::after {
    content: '->';
    color: var(--gold-strong);
    font-size: 18px;
    letter-spacing: 2px;
}

@media (max-width: 960px) {
    .main-nav {
        display: none;
        position: absolute;
        top: 70px;
        right: 5vw;
        background: rgba(12, 12, 16, 0.98);
        border: 1px solid var(--border);
        border-radius: 14px;
        padding: 16px;
        flex-direction: column;
        width: min(260px, 80vw);
    }

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

    .nav-toggle {
        display: inline-flex;
    }

    .hero-content {
        padding: 90px 0 60px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-dropdown-menu {
        position: static;
        transform: none;
        min-width: 0;
        width: 100%;
        padding: 10px;
        box-shadow: none;
    }

    .nav-dropdown.is-open .nav-dropdown-menu,
    .nav-dropdown:focus-within .nav-dropdown-menu {
        display: flex;
    }

    .service-card {
        grid-template-columns: 1fr;
    }

    .service-media {
        min-height: 200px;
    }

    .content-grid {
        grid-template-columns: 1fr;
    }

    .venue-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .signature-collage {
        --row: clamp(140px, 26vw, 200px);
        --row-small: clamp(120px, 22vw, 180px);
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        grid-template-rows: var(--row) var(--row) var(--row-small);
        grid-template-areas:
            "tile1 tile2"
            "tile1 tile3"
            "tile4 tile4";
    }

    [id] {
        scroll-margin-top: 110px;
    }

    .highlight-banner {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .header-inner {
        padding: 14px 0;
    }

    .logo-text {
        font-size: 14px;
    }

    section {
        padding: 70px 0;
    }

    .hero {
        min-height: 78vh;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }

    .hero-stat {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .hero-stat:last-child {
        border-bottom: 0;
    }

    .signature-collage {
        --row: clamp(170px, 60vw, 240px);
        --row-small: clamp(150px, 48vw, 210px);
        grid-template-columns: 1fr;
        grid-template-rows: var(--row) var(--row) var(--row) var(--row-small);
        grid-template-areas:
            "tile1"
            "tile2"
            "tile3"
            "tile4";
    }

    .journey-media {
        grid-template-columns: 1fr;
    }

    .section-actions {
        justify-content: flex-start;
    }

    .contact-menu {
        right: auto;
        left: 0;
        min-width: 200px;
    }

    .venue-grid {
        grid-template-columns: 1fr;
    }
}

[data-reveal] {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}
