:root {
    --bg-dark: #141211;
    --text-light: #F1F1F1;
    --accent-gold: #D9B35D;
    --accent-red: #B23A2B;
    --card-bg: #1A1817;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
}

/* --- GLOBAL STYLES --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: var(--font-body);
    line-height: 1.6;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

a {
    color: var(--accent-gold);
    text-decoration: none;
}

h1, h2, h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-light);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    text-align: center;
    margin-bottom: 2rem;
}

h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 2px;
    background-color: var(--accent-gold);
    margin: 1rem auto 0;
}

h3 {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    color: var(--text-light);
}

section {
    padding: 6rem 1rem;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1rem;
}

.cta-button {
    display: inline-block;
    background-color: var(--accent-red);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-family: var(--font-body);
    font-weight: 500;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(178, 58, 43, 0.4);
}

.cta-large {
    font-size: 1.1rem;
    padding: 1.2rem 3rem;
}

.caption {
    display: block;
    font-size: 0.8rem;
    color: #999;
    margin-top: 0.75rem;
}

.card {
    background-color: var(--card-bg);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* --- SECTION STYLES --- */

/* Hero Section */
.hero-section {
    padding-top: 4rem;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-text h1 {
    margin-bottom: 1.5rem;
}
.hero-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 50ch;
}
.hero-image {
    max-width: 400px;
    margin: 0 auto;
}

/* Story Section */
.story-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}
.story-text h2 { text-align: left; }
.story-text h2::after { margin: 1rem 0 0; }
.story-text blockquote {
    margin: 2rem 0;
    padding-left: 1.5rem;
    border-left: 3px solid var(--accent-gold);
    font-style: italic;
    font-size: 1.1rem;
}
.story-text blockquote span {
    display: block;
    font-style: normal;
    font-weight: 500;
    margin-top: 0.5rem;
    color: var(--accent-gold);
}

/* Why It's Different Section */
.why-section { background-color: var(--card-bg); }
.why-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}
.why-text h2 { text-align: left; }
.why-text h2::after { margin: 1rem 0 0; }
.why-text p { margin-bottom: 1rem; }

/* What You Get Section */
.what-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}
.what-list h2 { text-align: left; }
.what-list h2::after { margin: 1rem 0 0; }
.what-list ul {
    list-style: none;
    padding: 0;
}
.what-list li {
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(217, 179, 93, 0.2);
}
.what-list li:last-child {
    border-bottom: none;
}
.what-list h3 {
    margin-bottom: 0.5rem;
    color: var(--accent-gold);
}

/* Offer Strip Section */
.offer-section {
    background-color: var(--card-bg);
    text-align: center;
}
.offer-container h2 {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
}
.offer-container h2::after { display: none; }
.offer-container p {
    max-width: 60ch;
    margin: 0 auto 1.5rem;
}
.offer-container .cta-button {
    margin-top: 1.5rem;
}

/* Choices Section */
.choices-container { text-align: center; }
.choice-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}
.card.choice-a {
    opacity: 0.6;
    border: 2px solid transparent;
}
.card.choice-b {
    border: 2px solid var(--accent-gold);
    box-shadow: 0 0 25px rgba(217, 179, 93, 0.3);
}
.choice-cards h3 { margin-bottom: 1rem; }

/* Reviews Section */
.reviews-section { background-color: var(--card-bg); }
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}
.review-card { text-align: center; }
.review-card img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    object-fit: cover;
}
.review-card .stars {
    color: var(--accent-gold);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}
.review-card .quote {
    font-style: italic;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}
.review-card .name {
    font-weight: 500;
}
.full-row-review {
    display: grid;
    max-width: 600px;
    margin: 0 auto;
}


/* Footer */
.trust-footer {
    padding: 4rem 1rem;
    text-align: center;
    border-top: 1px solid #333;
}
.footer-container h3 { color: var(--accent-gold); }
.footer-container p {
    margin: 0.5rem 0;
    color: #aaa;
}
.footer-links {
    margin-top: 2rem;
    font-size: 0.9rem;
    color: #777;
}
.footer-links a {
    color: #999;
    margin: 0 0.5rem;
    text-decoration: underline;
}

/* --- MEDIA QUERIES --- */
@media (min-width: 768px) {
    .hero-container { grid-template-columns: 1fr 1fr; }
    .story-container { grid-template-columns: 1fr 1fr; }
    .why-container { grid-template-columns: 1fr 1fr; }
    .why-text { order: 2; }
    .why-image { order: 1; }
    .what-container { grid-template-columns: 1fr 1fr; }
    .choice-cards { grid-template-columns: 1fr 1fr; }
    .reviews-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

