/* ==========================================
   NutriBalance — Scandinavian Minimalism
   Colors: Mint, Sage, Dusty Pink, White
   ========================================== */

/* --- Reset & Base --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --mint: #A8D5BA;
    --mint-light: #E8F0E8;
    --sage: #B2C9AB;
    --sage-dark: #6B8F71;
    --pink: #D4A5A5;
    --pink-light: #F0E8E8;
    --white: #FFFFFF;
    --cream: #FAFAF7;
    --warm-gray: #F5F5F0;
    --text: #2D3436;
    --text-light: #636E72;
    --text-muted: #A0A8AB;
    --gold: #E8B86D;
    --wine: #722F37;
    --wine-dark: #5C262E;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 9999px;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.06);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.08);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text);
    background-color: var(--white);
    line-height: 1.7;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    text-wrap: pretty;
}

p, li, span, h1, h2, h3, h4 {
    text-wrap: pretty;
}

img, svg {
    display: block;
    max-width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* --- Typography --- */
h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 500;
    line-height: 1.2;
}

.section-tag {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--sage-dark);
    margin-bottom: 0.75rem;
}

.section-tag--center {
    text-align: center;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--text);
    margin-bottom: 1rem;
}

.section-title--center {
    text-align: center;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 3rem;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 2rem;
    border-radius: var(--radius-full);
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    white-space: nowrap;
}

.btn--primary {
    background-color: var(--sage-dark);
    color: var(--white);
    border-color: var(--sage-dark);
}

.btn--primary:hover {
    background-color: #5A7D60;
    border-color: #5A7D60;
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn--outline {
    background-color: transparent;
    color: var(--sage-dark);
    border-color: var(--sage-dark);
}

.btn--outline:hover {
    background-color: var(--sage-dark);
    color: var(--white);
}

.btn--full {
    width: 100%;
}

.btn--wine {
    background-color: var(--wine);
    color: var(--white);
    border-color: var(--wine);
}

.btn--wine:hover {
    background-color: var(--wine-dark);
    border-color: var(--wine-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn--small {
    padding: 0.5rem 1.2rem;
    font-size: 0.8rem;
}

/* --- Navigation --- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(178, 201, 171, 0.15);
    transition: var(--transition);
}

.nav--scrolled {
    box-shadow: var(--shadow-sm);
}

.nav__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav__logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--sage-dark);
    letter-spacing: -0.02em;
}

.nav__menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav__link {
    font-size: 0.88rem;
    font-weight: 400;
    color: var(--text-light);
    position: relative;
}

.nav__link:hover {
    color: var(--sage-dark);
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--sage-dark);
    transition: var(--transition);
}

.nav__link:hover::after {
    width: 100%;
}

.nav__link--cta {
    padding: 0.5rem 1.3rem;
    background: var(--wine);
    color: var(--white) !important;
    border-radius: var(--radius-full);
    font-weight: 600;
}

.nav__link--cta::after {
    display: none;
}

.nav__link--cta:hover {
    background: var(--wine-dark);
    transform: translateY(-1px);
}

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav__toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: var(--transition);
}

/* --- Hero Section --- */
.hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, var(--white) 0%, var(--mint-light) 50%, var(--warm-gray) 100%);
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.hero__tag {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    color: var(--text-light);
    margin-bottom: 0.75rem;
}

.hero__name {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 500;
    color: var(--text);
    margin-bottom: 1rem;
    letter-spacing: 0.02em;
}

.hero__title {
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.hero__title em {
    font-style: italic;
    color: var(--sage-dark);
    display: block;
}

.hero__subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero__actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero__stats {
    display: flex;
    gap: 2.5rem;
}

.hero__stat {
    display: flex;
    flex-direction: column;
}

.hero__stat-label {
    font-size: 0.82rem;
    color: var(--text-muted);
    order: -1;
}

.hero__stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--sage-dark);
}

.hero__image {
    display: flex;
    justify-content: center;
}

.hero__image-placeholder {
    max-width: 380px;
    filter: drop-shadow(0 20px 40px rgba(107, 143, 113, 0.15));
}

.hero__photo {
    max-width: 320px;
    width: 100%;
    max-height: 420px;
    border-radius: 200px;
    object-fit: cover;
    object-position: top;
    filter: drop-shadow(0 20px 40px rgba(107, 143, 113, 0.15));
}

/* --- About Section --- */
.about {
    padding: 100px 0 60px;
    background: var(--white);
}

.about__image-placeholder {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

/* 1. Hero-зона */
.about__hero {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.about__hero-image {
    max-width: 420px;
}

.about__photo {
    width: 100%;
    border-radius: var(--radius-lg);
    object-fit: cover;
}

.about__life-photo {
    width: 100%;
    border-radius: var(--radius-lg);
    object-fit: cover;
}

/* 2. Доверие в цифрах */
.about__trust {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.trust-card {
    text-align: center;
    padding: 2rem 1rem;
    background: var(--cream);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.trust-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.trust-card__icon {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
}

.trust-card__number {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--sage-dark);
    line-height: 1.2;
}

.trust-card__label {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.trust-card__sub {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* 3. Моя история */
.about__story {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.about__text {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.about__text--highlight {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.3rem;
    font-style: italic;
    color: var(--sage-dark);
    line-height: 1.6;
    margin: 1.5rem 0;
}

.about__block-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text);
    margin-top: 0;
    margin-bottom: 0.75rem;
}

/* 4. Научный манифест */
.about__manifesto {
    max-width: 800px;
    margin: 3rem auto;
    padding: 2.5rem;
    background: var(--mint-light);
    border-radius: var(--radius-lg);
}

.about__manifesto-accent {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.4rem;
    font-style: italic;
    font-weight: 500;
    color: var(--sage-dark);
    margin: 1.5rem auto;
    line-height: 1.5;
    max-width: 800px;
}

/* 5. Жизнь как она есть */
.about__life {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about__life-image {
    max-width: 380px;
}

/* 6. CTA */
.about__cta {
    max-width: 800px;
    margin: 2rem auto 0;
    padding: 0 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
}

.about__limit {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: var(--pink-light);
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--wine);
}

.about__limit--bold {
    background: var(--wine);
    color: var(--white);
    font-weight: 600;
}

.about__limit--bold svg {
    stroke: var(--white);
}

/* --- Services Section --- */
.services {
    padding: 100px 0;
    background: var(--cream);
}

.services__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    position: relative;
    transition: var(--transition);
    border: 1px solid rgba(178, 201, 171, 0.15);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.service-card--featured {
    border: 2px solid var(--mint);
    background: linear-gradient(180deg, var(--mint-light) 0%, var(--white) 30%);
}

.service-card__badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--wine);
    color: var(--white);
    padding: 0.3rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.service-card__icon {
    margin-bottom: 1.5rem;
}

.service-card__title {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
}

.service-card__description {
    font-size: 0.92rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-card__features {
    margin-bottom: 2rem;
    flex-grow: 1;
}

.service-card__features li {
    font-size: 0.88rem;
    color: var(--text-light);
    padding: 0.35rem 0;
    padding-left: 1.2rem;
    position: relative;
}

.service-card__features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--mint);
    transform: translateY(-50%);
}

/* --- Shop Section --- */
.shop {
    padding: 100px 0;
    background: var(--white);
}

.shop__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.shop__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(178, 201, 171, 0.15);
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.product-card__image {
    aspect-ratio: 3/4;
    overflow: hidden;
}

.product-card__image svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-card__info {
    padding: 1.5rem;
}

.product-card__category {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--sage-dark);
}

.product-card__title {
    font-size: 1.3rem;
    margin: 0.5rem 0;
}

.product-card__description {
    font-size: 0.88rem;
    color: var(--text-light);
    margin-bottom: 1.25rem;
    line-height: 1.6;
}

.product-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-card__price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--sage-dark);
}

.shop__cta {
    text-align: center;
    margin-top: 3rem;
}

/* --- Testimonials Section --- */
.testimonials {
    padding: 100px 0;
    background: var(--cream);
}

.testimonials__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.testimonials__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.testimonials__grid .testimonial-card {
    flex: 0 1 calc(33.333% - 1.34rem);
    min-width: 280px;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 1px solid rgba(178, 201, 171, 0.1);
    transition: var(--transition);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
}

.testimonial-card__stars {
    display: flex;
    gap: 2px;
    margin-bottom: 1.25rem;
}

.testimonial-card__text {
    font-size: 0.95rem;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.testimonial-card__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--mint-light);
    color: var(--sage-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1rem;
}

.testimonial-card__name {
    font-weight: 600;
    font-size: 0.9rem;
}

.testimonial-card__program {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* --- Lead Magnet Section --- */
.lead-magnet {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--mint-light) 0%, var(--pink-light) 100%);
}

.lead-magnet__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 4rem;
    align-items: center;
}

.lead-magnet__title {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    margin-bottom: 1rem;
}

.lead-magnet__text {
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 500px;
    line-height: 1.8;
}

.lead-magnet__form {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.lead-magnet__input {
    flex: 1;
    min-width: 250px;
    padding: 0.85rem 1.25rem;
    border: 2px solid rgba(178, 201, 171, 0.3);
    border-radius: var(--radius-full);
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    background: var(--white);
    transition: var(--transition);
    outline: none;
}

.lead-magnet__input:focus {
    border-color: var(--sage-dark);
}

.lead-magnet__visual {
    max-width: 250px;
}

/* --- Blog Section --- */
.blog {
    padding: 100px 0;
    background: var(--white);
}

.blog__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.blog__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.blog-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--white);
    border: 1px solid rgba(178, 201, 171, 0.12);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.blog-card__image {
    aspect-ratio: 16/10;
    overflow: hidden;
}

.blog-card__image svg {
    width: 100%;
    height: 100%;
}

.blog-card__content {
    padding: 1.5rem;
}

.blog-card__date {
    font-size: 0.78rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.blog-card__title {
    font-size: 1.25rem;
    margin: 0.5rem 0;
    line-height: 1.3;
}

.blog-card__excerpt {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.blog-card__link {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--sage-dark);
}

.blog-card__link:hover {
    color: #5A7D60;
}

/* --- Contact Section --- */
.contact {
    padding: 100px 0;
    background: var(--cream);
}

.contact__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
}

.contact__text {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.contact__channels {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact__channel {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: var(--white);
    border-radius: var(--radius-md);
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--sage-dark);
    border: 1px solid rgba(178, 201, 171, 0.2);
}

.contact__channel:hover {
    border-color: var(--sage-dark);
    transform: translateX(4px);
}

.contact__social {
    margin-top: 1.5rem;
}

.contact__social-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.contact__social-links {
    display: flex;
    gap: 0.75rem;
}

.contact__social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sage-dark);
    border: 1px solid rgba(178, 201, 171, 0.2);
}

.contact__social-link:hover {
    background: var(--sage-dark);
    color: var(--white);
    border-color: var(--sage-dark);
}

.contact__form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 0.4rem;
    color: var(--text);
}

.form-input {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1.5px solid rgba(178, 201, 171, 0.3);
    border-radius: var(--radius-sm);
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    transition: var(--transition);
    outline: none;
    background: var(--white);
    color: var(--text);
}

.form-input:focus {
    border-color: var(--sage-dark);
    box-shadow: 0 0 0 3px rgba(107, 143, 113, 0.1);
}

.form-input--textarea {
    resize: vertical;
    min-height: 100px;
}

select.form-input {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 4l4 4 4-4' fill='none' stroke='%23636E72' stroke-width='1.5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    font-size: 16px;
}

@media (max-width: 768px) {
    select.form-input {
        appearance: auto;
        -webkit-appearance: menulist;
        background-image: none;
        padding-right: 1rem;
    }
}

/* --- Footer --- */
.footer {
    background: var(--text);
    color: rgba(255, 255, 255, 0.7);
    padding: 60px 0 30px;
}

.footer__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.footer__top {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer__logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.5rem;
    display: inline-block;
}

.footer__tagline {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer__nav {
    display: flex;
    gap: 4rem;
}

.footer__heading {
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--white);
    margin-bottom: 1rem;
}

.footer__links li {
    margin-bottom: 0.5rem;
}

.footer__links a {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer__links a:hover {
    color: var(--mint);
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.82rem;
}

.footer__legal {
    display: flex;
    gap: 1.5rem;
}

.footer__legal a {
    color: rgba(255, 255, 255, 0.5);
}

.footer__legal a:hover {
    color: var(--mint);
}

/* --- Price Tag in Service Cards --- */
.service-card__price-tag {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--sage-dark);
    margin-bottom: 0.75rem;
}

.services__note {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 2rem;
}

/* --- How It Works / Steps --- */
/* --- Method Section --- */
.method {
    padding: 100px 0;
    background: var(--white);
}

.method__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.method__subtitle {
    text-align: center;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.3rem;
    font-style: italic;
    color: var(--sage-dark);
    margin-top: -0.5rem;
    margin-bottom: 3rem;
}

.method__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.method-card {
    padding: 2rem;
    background: var(--cream);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.method-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.method-card__icon {
    margin-bottom: 1rem;
}

.method-card__title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.75rem;
}

.method-card__text {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
}

.method__duration {
    max-width: 700px;
    margin: 3rem auto 0;
    text-align: center;
    padding: 1.5rem 2rem;
    background: var(--mint-light);
    border-radius: var(--radius-md);
}

.method__duration-text {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
}

.method__duration-text strong {
    color: var(--sage-dark);
    font-weight: 600;
}

@media (max-width: 768px) {
    .method__grid {
        grid-template-columns: 1fr;
    }
}

/* --- FAQ Section --- */
.faq {
    padding: 80px 0;
    background: var(--cream);
}

.faq__container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.faq__list {
    margin-top: 2.5rem;
}

.faq__item {
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

.faq__question {
    padding: 1.25rem 0;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq__question::-webkit-details-marker {
    display: none;
}

.faq__question::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--sage-dark);
    transition: var(--transition);
    flex-shrink: 0;
    margin-left: 1rem;
}

details[open] .faq__question::after {
    content: '−';
}

.faq__answer {
    padding: 0 0 1.25rem;
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.how-it-works {
    padding: 80px 0;
    background: var(--white);
}

.how-it-works__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.step {
    text-align: center;
    padding: 2rem;
}

.step__number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 600;
    color: var(--mint);
    display: block;
    margin-bottom: 1rem;
}

.step__title {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
}

.step__text {
    font-size: 0.92rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* --- About Philosophy Accent --- */
.about__text--accent {
    font-style: italic;
    font-size: 1.1rem;
    color: var(--sage-dark);
    border-left: 3px solid var(--mint);
    padding-left: 1rem;
    margin: 1.5rem 0;
}

/* --- Contact CTA Links --- */
.contact__cta-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

/* --- Responsive: Steps --- */
@media (max-width: 768px) {
    .steps {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 2rem auto 0;
    }
}

/* --- Scroll Reveal Animation --- */
/* Elements start visible; JS adds .revealed for a subtle entrance */
.revealed {
    animation: fadeInUp 0.5s ease forwards;
}

@keyframes fadeInUp {
    from { opacity: 0.7; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .about__container {
        gap: 3rem;
    }

    .contact__container {
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .nav__toggle {
        display: flex;
    }

    .nav__menu {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 2rem 1.5rem;
        gap: 1.25rem;
        transform: translateY(-120%);
        transition: var(--transition);
        box-shadow: var(--shadow-lg);
    }

    .nav__menu--active {
        transform: translateY(0);
    }

    .hero {
        min-height: auto;
        padding: 120px 0 60px;
    }

    .hero__container {
        text-align: center;
    }

    .hero__subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero__actions {
        justify-content: center;
    }

    .hero__stats {
        justify-content: center;
    }

    .about__hero {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about__hero-image {
        max-width: 300px;
        margin: 0 auto;
        order: -1;
    }

    .about__trust {
        grid-template-columns: repeat(2, 1fr);
    }

    .about__life {
        grid-template-columns: 1fr;
    }

    .about__life-image {
        max-width: 300px;
        margin: 0 auto;
    }

    .services__grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .shop__grid {
        grid-template-columns: 1fr;
        max-width: 350px;
        margin: 0 auto;
    }

    .testimonials__grid .testimonial-card {
        flex: 0 1 100%;
        min-width: 0;
    }

    .lead-magnet__container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .lead-magnet__text {
        margin-left: auto;
        margin-right: auto;
    }

    .lead-magnet__form {
        justify-content: center;
    }

    .lead-magnet__visual {
        margin: 0 auto;
        max-width: 200px;
    }

    .blog__grid {
        grid-template-columns: 1fr;
    }

    .contact__container {
        grid-template-columns: 1fr;
    }

    .footer__top {
        flex-direction: column;
    }

    .footer__bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero__title {
        font-size: 2rem;
    }

    .hero__actions {
        flex-direction: column;
        align-items: center;
    }

    .hero__stats {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .lead-magnet__form {
        flex-direction: column;
    }

    .lead-magnet__input {
        min-width: auto;
    }

    .contact__form {
        padding: 1.5rem;
    }

    .footer__nav {
        flex-direction: column;
        gap: 2rem;
    }
}
