.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ── Shared Hero (matches site-wide pattern) ─────────────────── */
.hero {
    min-height: 60vh;
    background: #0D1410;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding-top: 100px;
    padding-bottom: 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.hero-grid {
    position: absolute;
    inset: 0;
    opacity: 0.3;
    background-image:
        linear-gradient(rgba(198, 168, 103, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(198, 168, 103, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 1;
}

.hero-orb {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(45, 90, 61, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
    top: 10%;
    right: 10%;
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #C6A867;
}

.breadcrumb-separator {
    color: rgba(255, 255, 255, 0.4);
}

.breadcrumb-current {
    color: #C6A867;
    font-weight: 500;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 24px;
    background: rgba(198, 168, 103, 0.2);
    border-radius: 100px;
    border: 1px solid rgba(198, 168, 103, 0.4);
    margin-bottom: 24px;
}

.hero-badge-text {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #C6A867;
}

.hero-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(40px, 6vw, 68px);
    font-weight: 400;
    color: #FFFFFF;
    line-height: 1.1;
    max-width: 900px;
    margin-bottom: 24px;
}

.hero-highlight {
    font-style: italic;
    background: linear-gradient(135deg, #C6A867 0%, #E8D5A3 50%, #C6A867 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-family: 'DM Sans', sans-serif;
    font-size: 18px;
    color: #A8A49C;
    line-height: 1.8;
    max-width: 800px;
}

/* ── Section ──────────────────────────────────────────────────── */
.section {
    padding: 100px 0;
}

.section-alt {
    background: #FAFAF8;
}

.section-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 52px;
    font-weight: 400;
    color: #1A241E;
    margin-bottom: 16px;
    text-align: center;
}

.section-subtitle {
    font-family: 'DM Sans', sans-serif;
    font-size: 18px;
    color: #888;
    text-align: center;
    max-width: 680px;
    margin: 0 auto 56px;
    line-height: 1.7;
}

/* ── Attractions — simple card ─────────────────────── */
.attr-simple-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.attr-simple-card {
    background: #FFFFFF;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.attr-simple-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}

.attr-simple-img-link {
    display: block;
    aspect-ratio: 4/3;
    overflow: hidden;
    cursor: zoom-in;
}

.attr-simple-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.attr-simple-img-link:hover .attr-simple-img {
    transform: scale(1.05);
}

.attr-simple-img-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #E5E5E5, #F0F0F0);
}

.attr-simple-body {
    padding: 24px;
}

.attr-simple-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 20px;
    font-weight: 600;
    color: #1A241E;
    margin-bottom: 10px;
}

.attr-simple-desc {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    color: #666;
    line-height: 1.7;
}

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

@media (max-width: 600px) {
    .attr-simple-grid { grid-template-columns: 1fr; }
    .hero-title { font-size: 36px; }
    .section { padding: 64px 0; }
}