:root {
    --bg: #f4f8fb;
    --surface: #ffffff;
    --surface-soft: #ecf5f7;
    --text: #12212d;
    --muted: #617280;
    --line: rgba(18, 33, 45, 0.09);
    --brand: #0bb8c9;
    --brand-deep: #0c6d9a;
    --accent: #ffbf47;
    --shadow: 0 20px 45px rgba(12, 28, 42, 0.08);
    --radius-xl: 28px;
    --radius-lg: 22px;
    --radius-md: 16px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Manrope", sans-serif;
    background:
        radial-gradient(circle at top left, rgba(11, 184, 201, 0.16), transparent 28%),
        linear-gradient(180deg, #f7fbfd 0%, var(--bg) 100%);
    color: var(--text);
}

a {
    color: inherit;
    text-decoration: none;
}

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

.container {
    width: min(var(--container), calc(100% - 32px));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    padding: 18px 0;
    backdrop-filter: blur(18px);
    background: rgba(247, 251, 253, 0.82);
    border-bottom: 1px solid rgba(18, 33, 45, 0.05);
}

.nav-shell,
.footer-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    font-size: 1.45rem;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.brand span {
    color: var(--brand-deep);
}

.nav-links,
.nav-actions,
.locale-switch {
    display: flex;
    align-items: center;
    gap: 14px;
}

.nav-links a,
.locale-switch a {
    font-weight: 600;
    color: var(--muted);
}

.locale-switch a.active {
    color: var(--text);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 999px;
    font-weight: 700;
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.button:hover,
.text-link:hover {
    transform: translateY(-1px);
}

.button-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--brand), var(--brand-deep));
    box-shadow: 0 14px 30px rgba(11, 184, 201, 0.22);
}

.hero,
.detail-hero {
    position: relative;
    overflow: hidden;
}

.hero {
    padding: 64px 0 38px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 28px;
    align-items: stretch;
}

.hero-copy,
.hero-card,
.content-card,
.venue-card,
.category-card {
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(255, 255, 255, 0.7);
    box-shadow: var(--shadow);
}

.hero-copy {
    padding: 38px;
    border-radius: var(--radius-xl);
}

.eyebrow,
.hero-badge,
.pill,
.verified {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 999px;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.eyebrow,
.hero-badge,
.pill {
    font-size: 0.78rem;
    color: var(--brand-deep);
    background: rgba(11, 184, 201, 0.1);
    padding: 8px 12px;
}

.hero-copy h1,
.detail-hero h1 {
    margin: 18px 0 12px;
    font-size: clamp(2.1rem, 5vw, 4.2rem);
    line-height: 0.96;
    letter-spacing: -0.05em;
}

.hero-copy p,
.detail-hero p,
.section-head p,
.venue-card p,
.site-footer p {
    color: var(--muted);
    line-height: 1.7;
}

.hero-panel {
    display: grid;
}

.hero-card {
    border-radius: var(--radius-xl);
    padding: 32px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(236, 245, 247, 0.92)),
        var(--surface);
}

.hero-card h2 {
    margin: 18px 0 14px;
}

.hero-list {
    margin: 0;
    padding-left: 18px;
    color: var(--muted);
}

.section {
    padding: 34px 0;
}

.section-head {
    margin-bottom: 18px;
}

.section-head h2,
.content-card h2 {
    margin: 0 0 8px;
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.category-grid,
.card-grid,
.collection-grid,
.detail-layout {
    display: grid;
    gap: 18px;
}

.category-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.category-card {
    border-radius: var(--radius-lg);
    padding: 24px 18px;
}

.category-icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

.card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.venue-card {
    overflow: hidden;
    border-radius: var(--radius-xl);
}

.venue-image {
    height: 220px;
    background-size: cover;
    background-position: center;
}

.venue-body {
    padding: 22px;
}

.venue-topline,
.venue-meta,
.venue-footer,
.detail-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.venue-card h3,
.collection-card h3 {
    margin: 14px 0 10px;
    font-size: 1.35rem;
    line-height: 1.1;
    letter-spacing: -0.04em;
}

.venue-meta,
.rating,
.detail-meta {
    color: var(--muted);
    font-size: 0.92rem;
}

.verified {
    color: #0b7d68;
    background: rgba(32, 201, 151, 0.12);
    padding: 8px 12px;
    font-size: 0.78rem;
}

.text-link {
    color: var(--brand-deep);
    font-weight: 800;
}

.collection-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.collection-card {
    min-height: 280px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background-size: cover;
    background-position: center;
    color: #fff;
    display: flex;
    align-items: flex-end;
}

.collection-content {
    padding: 24px;
}

.collection-content span {
    display: inline-block;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    font-weight: 700;
    font-size: 0.85rem;
}

.detail-hero {
    min-height: 420px;
    background-size: cover;
    background-position: center;
    color: #fff;
}

.detail-hero-inner {
    padding: 92px 0 48px;
}

.detail-hero p,
.detail-meta {
    color: rgba(255, 255, 255, 0.86);
}

.detail-layout {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: start;
}

.content-card {
    border-radius: var(--radius-xl);
    padding: 28px;
}

.detail-list {
    display: grid;
    gap: 18px;
    margin: 0 0 18px;
}

.detail-list dt {
    color: var(--muted);
    font-weight: 700;
    margin-bottom: 5px;
}

.detail-list dd {
    margin: 0;
    font-weight: 600;
}

.map-frame {
    width: 100%;
    min-height: 230px;
    border: 0;
    border-radius: var(--radius-lg);
}

.detail-back,
.simple-state {
    padding-bottom: 48px;
}

.simple-state {
    padding-top: 72px;
    text-align: center;
}

.site-footer {
    padding: 42px 0 56px;
}

.footer-brand {
    margin-bottom: 10px;
}

@media (max-width: 980px) {
    .nav-shell,
    .nav-actions {
        flex-wrap: wrap;
    }

    .hero-grid,
    .detail-layout,
    .card-grid,
    .category-grid,
    .collection-grid {
        grid-template-columns: 1fr;
    }
}

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

    .container {
        width: min(var(--container), calc(100% - 20px));
    }

    .hero-copy,
    .hero-card,
    .content-card,
    .venue-body {
        padding: 20px;
    }

    .nav-links {
        width: 100%;
        justify-content: space-between;
    }
}
