* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    background:
        radial-gradient(circle at top left, rgba(201, 168, 76, 0.12), transparent 34%),
        linear-gradient(180deg, #101213 0%, #161819 100%);
    color: #f7f0df;
}

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

/* Shell */

.society-shell {
    width: 100%;
}

.society-hero {
    min-height: 72vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 90px 7vw 80px;
    border-bottom: 1px solid rgba(201, 168, 76, 0.16);
}

.eyebrow {
    margin: 0 0 14px;
    font-family: Arial, sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #c9a84c;
}

.society-hero h1 {
    max-width: 980px;
    margin: 0;
    font-size: clamp(3.2rem, 8vw, 7.5rem);
    line-height: 0.92;
    letter-spacing: -0.06em;
}

.society-hero-eyebrow {
    order: 2;
    margin: 24px 0 0;
    font-size: 1rem;
    font-weight: 700;
}

.hero-copy {
    order: 3;
    max-width: 720px;
    margin: 22px 0 0;
    font-family: Arial, sans-serif;
    font-size: 1.22rem;
    line-height: 1.8;
    color: rgba(247, 240, 223, 0.76);
}

.hero-actions {
    order: 4;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.primary-cta,
.secondary-cta,
.primary-button,
.secondary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 150px;
    padding: 14px 22px;
    border-radius: 999px;
    font-family: Arial, sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.primary-cta,
.primary-button {
    background: #c9a84c;
    color: #141414;
    border: 1px solid #c9a84c;
}

.secondary-cta,
.secondary-button {
    background: transparent;
    color: #f7f0df;
    border: 1px solid rgba(247, 240, 223, 0.32);
}

.primary-cta:hover,
.secondary-cta:hover,
.primary-button:hover,
.secondary-button:hover {
    transform: translateY(-2px);
}

.secondary-cta:hover,
.secondary-button:hover {
    border-color: #c9a84c;
    color: #f3d27a;
}

/* Sections */

.society-section {
    padding: 86px 7vw;
    border-bottom: 1px solid rgba(201, 168, 76, 0.14);
}

.section-header {
    max-width: 760px;
    margin-bottom: 38px;
}

.section-header h2 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 4rem);
    line-height: 1;
    letter-spacing: -0.04em;
}

.section-header p {
    margin: 18px 0 0;
    font-family: Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.75;
    color: rgba(247, 240, 223, 0.72);
}

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

.society-card,
.journey-step,
.tier-placeholder,
.tier-preview-card {
    border: 1px solid rgba(201, 168, 76, 0.2);
    background: rgba(255, 255, 255, 0.035);
    border-radius: 24px;
    padding: 26px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
}

.society-card h3,
.journey-step h3 {
    margin: 0;
    font-size: 1.35rem;
    color: #f3d27a;
}

.society-card p,
.journey-step p,
.tier-placeholder {
    font-family: Arial, sans-serif;
    line-height: 1.7;
    color: rgba(247, 240, 223, 0.72);
}

.society-card p,
.journey-step p {
    margin: 14px 0 0;
}

/* Journey */

.society-journey {
    background: rgba(0, 0, 0, 0.14);
}

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

.journey-step span {
    display: inline-flex;
    margin-bottom: 18px;
    font-family: Arial, sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    color: #c9a84c;
}

/* Membership Preview */

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

.tier-placeholder {
    grid-column: 1 / -1;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.tier-preview-card {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.tier-preview-code {
    margin: 0 0 8px;
    color: #c9a84c;
    font: 800 .78rem/1.2 Arial, sans-serif;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.tier-preview-card h3 {
    margin: 0;
    color: #f7f0df;
    font-size: 1.65rem;
    line-height: 1.1;
}

.tier-preview-price {
    margin: 12px 0 0;
    color: #f3d27a;
    font: 800 1.2rem/1.2 Arial, sans-serif;
}

.tier-preview-features {
    display: grid;
    gap: 9px;
    margin: 20px 0 24px;
    padding: 0;
    list-style: none;
    color: rgba(247, 240, 223, .78);
    font: 600 .95rem/1.4 Arial, sans-serif;
}

.tier-preview-features li::before {
    content: "✓";
    margin-right: 9px;
    color: #c9a84c;
}

.tier-preview-link {
    width: 100%;
    margin-top: auto;
}

/* Final CTA */

.society-final-cta {
    padding: 100px 7vw 120px;
    text-align: center;
}

.society-final-cta h2 {
    max-width: 860px;
    margin: 0 auto;
    font-size: clamp(2.4rem, 5vw, 5rem);
    line-height: 0.98;
    letter-spacing: -0.05em;
}

.society-final-copy {
    max-width: 720px;
    margin: 22px auto 0;
    color: rgba(247, 240, 223, .76);
    font: 500 1.1rem/1.7 Arial, sans-serif;
}

.society-final-copy:empty {
    display: none;
}

.society-final-cta .hero-actions {
    justify-content: center;
}

/* Responsive */

@media (max-width: 980px) {

    .society-grid,
    .journey-steps,
    .tier-preview-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {

    .society-hero,
    .society-section,
    .society-final-cta {
        padding-left: 22px;
        padding-right: 22px;
    }

    .society-hero {
        min-height: auto;
        padding-top: 70px;
    }

    .society-grid,
    .journey-steps,
    .tier-preview-grid {
        grid-template-columns: 1fr;
    }

    .primary-cta,
    .secondary-cta,
    .primary-button,
    .secondary-button {
        width: 100%;
    }

    .hero-actions {
        width: 100%;
    }
}
