/* Base */

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Inter", sans-serif;
    background: #faf8f4;
    color: #2b2b2b;
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
}

/* Layout helpers */

.section {
    padding: 70px 6%;
}

.section-alt {
    background: #f4efe6;
}

.section-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.two-column {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 40px;
}

.three-column {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 40px;
}

@media (max-width: 900px) {
    .two-column,
    .three-column {
        grid-template-columns: 1fr;
    }
}

/* Header */

.site-header {
    padding: 16px 6%;
    background: #fdfbf7;
    border-bottom: 1px solid #e4ddcf;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-mark {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    background: radial-gradient(circle at 30% 30%, #f7e9c8, #d1b88a);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #3a2b1a;
    font-size: 18px;
}

.logo-title {
    font-weight: 600;
    font-size: 16px;
}

.logo-subtitle {
    font-size: 12px;
    color: #7a6c57;
}

/* Hero */

.hero {
    background: radial-gradient(circle at top left, #fdf7ea, #f4efe6);
    padding: 60px 6% 70px;
}

.hero-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 50px;
    align-items: center;
}

.hero-text h1 {
    font-size: 2.6rem;
    margin: 0 0 10px;
    color: #2b2b2b;
}

.subheadline {
    font-size: 1.15rem;
    color: #5b5244;
    margin: 0 0 20px;
}

.hero-badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 999px;
    background: #efe3cf;
    color: #5a4a33;
    font-size: 0.85rem;
    margin-bottom: 16px;
}

.hero-bullets {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    color: #4b4336;
    font-size: 0.98rem;
}

.hero-bullets li {
    margin-bottom: 6px;
}

.hero-cta-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 18px 18px 16px;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.06);
    max-width: 360px;
}

.price-line {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 4px;
}

.price {
    font-size: 1.6rem;
    font-weight: 600;
    color: #2b2b2b;
}

.price-note {
    font-size: 0.85rem;
    color: #7a6c57;
}

.cta-note {
    font-size: 0.9rem;
    color: #5b5244;
    margin: 0 0 10px;
}

/* Old button (kept for hero card) */

.button.buy-button {
    display: inline-block;
    background: #4a6cf7;
    color: #fff;
    padding: 14px 28px;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.25s ease, transform 0.15s ease;
    box-shadow: 0 4px 14px rgba(0,0,0,0.12);
}

.button.buy-button:hover {
    background: #3d5be0;
    transform: translateY(-2px);
}

.button.buy-button:active {
    transform: translateY(0);
}

.hero-image img {
    border-radius: 18px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

/* Typography */

h2 {
    font-size: 1.9rem;
    margin-top: 0;
    margin-bottom: 12px;
}

h3 {
    font-size: 1.25rem;
    margin-top: 0;
    margin-bottom: 8px;
}

p {
    margin-top: 0;
    margin-bottom: 12px;
}

.small-note {
    font-size: 0.9rem;
    color: #6b6254;
}

/* Feature lists */

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 10px;
}

.feature-list li {
    margin-bottom: 8px;
    padding-left: 18px;
    position: relative;
    font-size: 0.98rem;
}

.feature-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: #b28a4a;
}

/* Gallery */

.gallery-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr) minmax(0, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.gallery-item {
    background: #fdfbf7;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-item.tall {
    grid-row: span 2;
}

.gallery-item figcaption {
    padding: 10px 12px 12px;
    font-size: 0.9rem;
    color: #5b5244;
}

@media (max-width: 900px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .gallery-item.tall {
        grid-row: auto;
    }
}

/* Video */

.video-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
    gap: 40px;
    align-items: center;
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.video-wrapper iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 0;
}

.center-cta {
    margin-top: 30px;
    text-align: center;
}

/* FAQ */

.faq-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-top: 20px;
}

.faq-item h3 {
    font-size: 1.05rem;
    margin-bottom: 6px;
}

/* ... existing CSS above ... */

.faq-item p {
    font-size: 0.95rem;
    color: #5b5244;
} /* <--- This closing brace was missing! */

.stripe-style-btn {
    all: unset;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #635bff;
    color: #fff;
    padding: 14px 32px;
    border-radius: 9999px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(99, 91, 255, 0.3);
    transition: all 0.2s ease;
}

.stripe-style-btn:hover {
    background: #4f46e5;
    box-shadow: 0 6px 20px rgba(99, 91, 255, 0.4);
    transform: translateY(-2px);
}
.product-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 20px;
    max-width: 380px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.08);
    text-align: center;
    margin: 0 auto;
}

.product-card-image {
    width: 100%;
    border-radius: 14px;
    margin-bottom: 16px;
    box-shadow: 0 10px 26px rgba(0,0,0,0.08);
}

.product-card-title {
    font-size: 1.4rem;
    margin: 0 0 6px;
    color: #2b2b2b;
}

.product-card-price {
    font-size: 1.2rem;
    font-weight: 600;
    color: #5b5244;
    margin-bottom: 18px;
}

.product-card-buy {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #635bff;
    color: #fff;
    padding: 14px 32px;
    border-radius: 9999px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(99, 91, 255, 0.3);
    transition: all 0.2s ease;
}

.product-card-buy:hover {
    background: #4f46e5;
    box-shadow: 0 6px 20px rgba(99, 91, 255, 0.4);
    transform: translateY(-2px);
}

.site-footer {
    text-align: center;
    padding: 40px 6%;
    background: #fdfbf7;
    border-top: 1px solid #e4ddcf;
}

.footer-email {
    margin-top: 10px;
    font-size: 0.9rem;
}

.footer-email a {
    color: #635bff; /* Matches your Stripe button blue */
    text-decoration: none;
    font-weight: 500;
}

.footer-email a:hover {
    text-decoration: underline;
}