/* Dark/Gold Elite Aesthetic */

:root {
    --bg-color: #0a0a0a; /* Very dark background */
    --bg-color-card: #18181b; /* zinc-900 */
    --text-primary: #f4f4f5; /* zinc-100 */
    --text-secondary: #d4d4d8; /* zinc-300 */
    --text-muted: #71717a; /* zinc-500 */
    --accent-gold: #FFD700;
    --accent-gold-hover: #e6c200;
}

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

body {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
    background-color: var(--bg-color);
    color: var(--text-secondary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

h1, h2, h3, h4 {
    color: var(--text-primary);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(48px, 8vw, 72px);
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(32px, 5vw, 42px);
}

h3 {
    font-size: 24px;
}

p {
    margin-bottom: 1.5rem;
    font-size: 18px;
}

.text-block p:last-child {
    margin-bottom: 0;
}

/* Sections */
section {
    padding: 80px 0;
}

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 120px 0 80px 0;
}

.hero .eyebrow {
    display: inline-block;
    text-transform: uppercase;
    color: var(--accent-gold);
    letter-spacing: 0.1em;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 1rem;
}

.subhead {
    font-size: 24px;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.cta-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.trust-line {
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 1rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 32px;
    height: 52px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: background-color 0.2s ease, transform 0.1s ease;
    border: none;
    cursor: pointer;
}

.btn:active {
    transform: scale(0.98);
}

.btn-primary {
    background-color: var(--accent-gold);
    color: #000;
}

.btn-primary:hover {
    background-color: var(--accent-gold-hover);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-primary);
    border: 1px solid var(--text-muted);
}

.btn-secondary:hover {
    border-color: var(--text-secondary);
    background-color: rgba(255, 255, 255, 0.05);
}

.btn-large {
    height: 60px;
    font-size: 20px;
    padding: 0 40px;
}

.btn-xl {
    height: 64px;
    font-size: 22px;
    padding: 0 48px;
}

/* Cards Grid */
.cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 640px) {
    .cards-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.card {
    background-color: var(--bg-color-card);
    border: 1px solid rgba(255, 215, 0, 0.3); /* Gold tinted border 30% opacity */
    border-radius: 12px;
    padding: 32px 24px;
}

.card .emoji {
    font-size: 36px;
    display: block;
    margin-bottom: 16px;
}

.card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.card p {
    font-size: 16px;
    margin-bottom: 0;
    color: var(--text-secondary);
}

/* Experience Image */
.image-container {
    margin-top: 40px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.explainer-img {
    width: 100%;
    height: auto;
    display: block;
}

/* Who for */
.columns-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media (min-width: 640px) {
    .columns-wrapper {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }
}

.col-heading {
    color: var(--text-primary);
}

.who-for ul {
    list-style: none;
}

.who-for li {
    font-size: 18px;
    margin-bottom: 16px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.icon-check, .icon-x {
    color: var(--accent-gold);
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Why Me */
.why-me-content {
    display: flex;
    flex-direction: column-reverse;
    gap: 40px;
}

@media (min-width: 640px) {
    .why-me-content {
        flex-direction: row;
        align-items: flex-start;
    }
    
    .why-me .text-content {
        flex: 1; /* roughly 60% */
    }
    
    .why-me .image-content {
        flex-shrink: 0;
        width: 40%;
        max-width: 280px;
    }
}

.profile-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    border: 1px solid rgba(255, 215, 0, 0.3); /* Subtle gold border */
    display: block;
    aspect-ratio: 4/5;
    object-fit: cover;
}

/* Closing CTA */
.center-align {
    text-align: center;
    padding: 100px 0;
}

.center-align h2 {
    font-size: clamp(40px, 6vw, 56px);
}

.center-cta {
    justify-content: center;
    margin-top: 40px;
    margin-bottom: 24px;
}

.secondary-contact {
    font-size: 16px;
    color: var(--text-muted);
}

.secondary-contact a {
    color: var(--accent-gold);
    text-decoration: none;
    font-weight: 500;
}

.secondary-contact a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    text-align: center;
    padding: 40px 20px;
    color: var(--text-muted);
    font-size: 14px;
    border-top: 1px solid rgba(255, 215, 0, 0.3);
}

footer p {
    font-size: 14px;
    margin: 0;
}
