/* === LYSSARA — DESIGN TOKENS === */
:root {
    --color-bg: #F7F5F2;
    --color-primary: #2F6F6D;
    --color-accent: #C4845C;
    --color-accent-hover: #b0734f;
    --color-text: #2C3333;
    --color-text-secondary: #5C6666;
    --color-surface: #FFFFFF;
    --color-border: #E8E4DF;
    --color-badge-bg: #EEEAE5;
    --font-heading: 'Fraunces', Georgia, serif;
    --font-body: 'Source Sans 3', system-ui, sans-serif;
    --shadow-card: 0 4px 24px rgba(44, 51, 51, 0.06);
    --radius-card: 16px;
    --radius-input: 10px;
    --transition: 0.4s ease;
}

/* === RESET & BASE === */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 1.125rem;
    line-height: 1.65;
    color: var(--color-text);
    background: var(--color-bg);
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--color-accent);
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.25;
    color: var(--color-text);
}

h1 {
    font-size: clamp(2rem, 5vw, 2.75rem);
}

h2 {
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.25rem;
}

p {
    margin: 0 0 1rem;
}

ul {
    padding-left: 1.25rem;
}

/* === LAYOUT === */
.container {
    width: 100%;
    max-width: 72rem;
    margin: 0 auto;
    padding: 0 1.25rem;
}

.section {
    padding: 4rem 0;
    position: relative;
}

.section--alt {
    background: var(--color-surface);
}

/* === ORGANIC BLOBS === */
.blob {
    position: absolute;
    border-radius: 50%;
    background: var(--color-primary);
    opacity: 0.1;
    pointer-events: none;
    filter: blur(40px);
}

.blob--1 {
    width: 280px;
    height: 280px;
    top: -60px;
    right: -80px;
}

.blob--2 {
    width: 200px;
    height: 200px;
    bottom: 20%;
    left: -60px;
    opacity: 0.08;
}

/* === SPONSORED LABEL === */
.sponsored-label {
    text-align: center;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-text-secondary);
    background: var(--color-badge-bg);
    padding: 0.5rem 1rem;
    margin: 0;
}

/* === HEADER === */
.site-header {
    background: var(--color-surface);
    border-bottom: 1px solid var(--color-border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.25rem;
    max-width: 72rem;
    margin: 0 auto;
    position: relative;
}

.site-header__aside {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.site-header__nav {
    display: block;
}

.site-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-primary);
    text-decoration: none;
}

.site-logo:hover {
    color: var(--color-accent);
}

.site-nav {
    display: none;
    flex-wrap: nowrap;
    gap: 1.25rem;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.site-nav a {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--color-text);
    text-decoration: none;
    white-space: nowrap;
}

.site-nav a:hover {
    color: var(--color-primary);
}

.site-header__cta {
    font-size: 0.875rem;
    padding: 0.625rem 1.125rem;
    min-height: 44px;
    white-space: nowrap;
    flex-shrink: 0;
}

.nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-text);
    border-radius: 2px;
    transition: var(--transition);
}

.site-nav--open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-surface);
    padding: 1rem 1.25rem 1.5rem;
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-card);
    z-index: 10;
}

.site-nav--open a {
    display: block;
    padding: 0.625rem 0;
}

@media (min-width: 768px) {
    .site-header__nav {
        display: block;
    }

    .site-nav {
        display: flex;
    }

    .nav-toggle {
        display: none;
    }

    .site-header__cta {
        font-size: 0.9375rem;
        padding: 0.625rem 1.25rem;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .site-nav {
        gap: 0.75rem;
    }

    .site-nav a {
        font-size: 0.875rem;
    }

    .site-header__cta {
        font-size: 0.8125rem;
        padding: 0.5rem 1rem;
    }
}

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    padding: 0.875rem 1.75rem;
    border-radius: 999px;
    border: 2px solid transparent;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
    min-height: 44px;
}

.btn--primary {
    background: var(--color-accent);
    color: #FFFFFF;
    border-color: var(--color-accent);
    box-shadow: 0 2px 12px rgba(196, 132, 92, 0.3);
}

.btn--primary:hover {
    background: var(--color-accent-hover);
    transform: translateY(-2px);
    color: #FFFFFF;
}

.btn--secondary {
    background: transparent;
    color: var(--color-primary);
    border-color: var(--color-primary);
}

.btn--secondary:hover {
    background: rgba(47, 111, 109, 0.08);
    transform: translateY(-2px);
    color: var(--color-primary);
}

/* === HERO === */
.hero {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero__image {
    position: absolute;
    inset: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(247, 245, 242, 0.92) 0%, rgba(247, 245, 242, 0.75) 50%, rgba(247, 245, 242, 0.4) 100%);
}

.hero__content {
    position: relative;
    z-index: 1;
    max-width: 36rem;
    padding: 3rem 0;
}

.hero__lead {
    font-size: 1.25rem;
    color: var(--color-text-secondary);
    margin-bottom: 1.5rem;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

/* === CARDS === */
.card {
    background: var(--color-surface);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-card);
    padding: 1.75rem;
    border: 1px solid var(--color-border);
}

.card--featured {
    border: 2px solid var(--color-primary);
}

.card-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
.card-grid--3 {
        grid-template-columns: repeat(3, 1fr);
    }

    .card-grid--3 .card {
        gap: 0.75rem;
    }

    .card-grid--2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.card--with-icon {
    display: flex;
    gap: 0.875rem;
    align-items: flex-start;
}

/* === BADGE === */
.badge {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-text-secondary);
    background: var(--color-badge-bg);
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    margin-bottom: 0.75rem;
}

/* === PRICING === */
.price {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 600;
    color: var(--color-primary);
    margin: 0.5rem 0;
}

.price-note {
    font-size: 0.9375rem;
    color: var(--color-text-secondary);
}

/* === FEATURE LIST === */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--color-border);
}

.feature-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.feature-list__icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: var(--color-primary);
}

/* === BLOCKQUOTE === */
blockquote {
    margin: 2rem 0;
    padding: 1.25rem 1.5rem;
    border-left: 3px solid var(--color-primary);
    background: var(--color-surface);
    border-radius: 0 var(--radius-input) var(--radius-input) 0;
    font-family: var(--font-heading);
    font-style: italic;
    color: var(--color-text-secondary);
}

/* === FAQ === */
.faq-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.faq-item {
    border-bottom: 1px solid var(--color-border);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 0;
    background: none;
    border: none;
    font-family: var(--font-heading);
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--color-text);
    text-align: left;
    cursor: pointer;
}

.faq-question:hover {
    color: var(--color-primary);
}

.faq-answer {
    padding: 0 0 1.25rem;
    color: var(--color-text-secondary);
}

.faq-answer[hidden] {
    display: none;
}

.faq-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.faq-item--open .faq-icon {
    transform: rotate(45deg);
}

/* === FORM === */
.form-section {
    background: var(--color-surface);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-card);
    padding: 2rem;
    border: 1px solid var(--color-border);
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--color-text);
}

.form-field {
    width: 100%;
    height: 52px;
    padding: 0 1rem;
    font-family: var(--font-body);
    font-size: 1rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-input);
    background: var(--color-surface);
    color: var(--color-text);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-field:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(47, 111, 109, 0.15);
}

.form-field--error {
    border-color: #c44;
}

.form-error {
    font-size: 0.875rem;
    color: #a33;
    margin-top: 0.35rem;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.9375rem;
    line-height: 1.5;
}

.form-checkbox input {
    width: 20px;
    height: 20px;
    margin-top: 0.15rem;
    flex-shrink: 0;
    accent-color: var(--color-primary);
}

.form-checkbox--error {
    color: #a33;
}

.form-alert {
    background: #fdf0ee;
    border: 1px solid #e8c4bc;
    color: #7a3a2e;
    padding: 0.875rem 1rem;
    border-radius: var(--radius-input);
    margin-bottom: 1.25rem;
    font-size: 0.9375rem;
}

.quote-disclaimer {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    text-align: center;
    margin-top: -1rem;
    margin-bottom: 0;
}

.form-disclaimer {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--color-border);
}

/* === CONTENT IMAGE === */
.content-image {
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.content-image img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

/* === TWO COLUMN === */
.two-col {
    display: grid;
    gap: 2.5rem;
    align-items: center;
}

@media (min-width: 768px) {
    .two-col {
        grid-template-columns: 1fr 1fr;
    }
}

/* === FOOTER === */
.site-footer {
    background: var(--color-text);
    color: rgba(255, 255, 255, 0.85);
    padding: 3rem 0 2rem;
}

.site-footer a {
    color: rgba(255, 255, 255, 0.9);
}

.site-footer a:hover {
    color: #FFFFFF;
}

.footer-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

.footer-brand {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: #FFFFFF;
    margin-bottom: 0.75rem;
}

.footer-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav li {
    margin-bottom: 0.5rem;
}

.footer-nav a {
    font-size: 0.9375rem;
}

.footer-bottom {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-disclaimer {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.55);
    margin-top: 1rem;
    line-height: 1.5;
}

/* === POLICY PAGES === */
.page-header {
    padding: 3rem 0 2rem;
    border-bottom: 1px solid var(--color-border);
    margin-bottom: 2rem;
}

.page-content {
    padding-bottom: 4rem;
}

.page-content h2 {
    margin-top: 2rem;
}

.page-content h3 {
    margin-top: 1.5rem;
}

.page-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    font-size: 0.9375rem;
}

.page-content th,
.page-content table td {
    border: 1px solid var(--color-border);
    padding: 0.75rem 1rem;
    text-align: left;
}

.page-content th {
    background: var(--color-badge-bg);
    font-weight: 600;
}

/* === THANK YOU === */
.thank-you {
    text-align: center;
    padding: 4rem 0;
    max-width: 36rem;
    margin: 0 auto;
}

.thank-you__icon {
    width: 64px;
    height: 64px;
    color: var(--color-primary);
    margin: 0 auto 1.5rem;
}

/* === FADE IN ANIMATION === */
.fade-in {
    opacity: 0;
    transform: translateY(12px);
    animation: fadeInUp 0.4s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in--delay-1 { animation-delay: 0.1s; }
.fade-in--delay-2 { animation-delay: 0.2s; }
.fade-in--delay-3 { animation-delay: 0.3s; }

/* === CONTACT INFO === */
.contact-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.contact-item svg {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    color: var(--color-primary);
    margin-top: 0.15rem;
}

/* === UTILITIES === */
.text-center {
    text-align: center;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.max-w-sm {
    max-width: 32rem;
}

.max-w-md {
    max-width: 40rem;
}

.max-w-lg {
    max-width: 48rem;
}

.mb-lg {
    margin-bottom: 2.5rem;
}

.mb-md {
    margin-bottom: 2rem;
}

.mt-lg {
    margin-top: 2rem;
}

.w-full {
    width: 100%;
}
