:root {
    --bg: #ffffff;
    --text: #1a1a1a;
    --accent: #c5a059;
    --muted: #f4f4f4;
    --tier1: #6c757d;
    --tier2: #2a9d8f;
    --tier3: #e63946;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.6;
    padding: 4rem 8% 8rem 8%;
    min-height: 100vh;
}

h1, h2, h3 { font-family: 'Playfair Display', serif; }

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Layout */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Elements */
.badge {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    border-radius: 30px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: white;
}

.title { font-size: 3.5rem; line-height: 1.1; margin-bottom: 1rem; }
.subtitle { font-size: 1.5rem; color: var(--accent); margin-bottom: 2rem; display: block; }

.image-frame {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.12);
}

.card {
    background: var(--muted);
    padding: 2.5rem;
    border-left: 5px solid var(--accent);
    margin-top: 2rem;
}

.card h3 { margin-bottom: 1rem; font-size: 1.4rem; }

.list {
    list-style: none;
}

.list li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: flex-start;
    font-size: 1rem;
}

.list li::before {
    content: "•";
    color: var(--accent);
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
    font-size: 1.5rem;
    line-height: 1;
    margin-right: 10px;
}

/* Table */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 3rem;
}

th, td {
    padding: 1.8rem;
    text-align: left;
    border-bottom: 1px solid #eee;
}

th {
    background: #fafafa;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1px;
    font-weight: 600;
}

.recommended {
    background: rgba(42, 157, 143, 0.05);
    border-left: 2px solid var(--tier2);
    border-right: 2px solid var(--tier2);
}

.recommended-label {
    background: var(--tier2);
    color: white;
    padding: 2px 8px;
    font-size: 0.6rem;
    position: absolute;
    top: 0; right: 0;
}

@media (max-width: 900px) {
    .grid-2 { grid-template-columns: 1fr; gap: 2rem; }
    .image-frame { height: 300px; }
    .title { font-size: 2.5rem; }
}
