@font-face {
    font-family: 'Literata';
    src: url('/wild_assets/root_fonts/literata.woff2') format('woff2');
    font-weight: 400 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Manrope';
    src: url('/wild_assets/root_fonts/manrope.woff2') format('woff2');
    font-weight: 300 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Caveat';
    src: url('/wild_assets/root_fonts/caveat.woff2') format('woff2');
    font-weight: 400 700;
    font-style: normal;
    font-display: swap;
}

:root {
    --hue-sand: 45, 30%;
    --hue-moss: 150, 40%;
    --hue-clay: 25, 60%;
    --color-bg: hsl(var(--hue-sand), 95%);
    --color-accent: hsl(var(--hue-moss), 35%);
    --color-tertiary: hsl(var(--hue-clay), 50%);
    --color-text-dark: hsl(120, 15%, 15%);
    --color-text-light: hsl(45, 20%, 90%);
    --container-width: clamp(1088px, 82vw, 1248px);
    --border-radius-stone: 16px;
    --font-serif: 'Literata', 'Georgia', 'Times New Roman', serif;
    --font-sans: 'Manrope', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
    --font-hand: 'Caveat', 'Comic Sans MS', 'Bradley Hand', cursive;
}

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

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

body {
    font-family: var(--font-sans);
    background-color: var(--color-bg);
    color: var(--color-text-dark);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 600;
    line-height: 1.2;
    color: var(--color-text-dark);
}

a {
    color: var(--color-accent);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--color-tertiary);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button, 
input, 
textarea {
    font-family: var(--font-sans);
    font-size: 1rem;
}

ul, ol {
    list-style: none;
}

main {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    padding: 2rem 0 0;
}

@media (max-width: 768px) {
    main {
        gap: 2.5rem;
        padding: 1rem 0;
    }
}

@media (max-width: 480px) {
    main {
        gap: 1.5rem;
        padding: 0.5rem 0;
    }
    
    * {
        animation: none !important;
        transform: none !important;
        transition: none !important;
    }
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (max-width: 320px) {
    .container {
        padding: 0 0.5rem;
    }
    
    p, span, a, li {
        word-break: break-word;
    }
}

.leaf_header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #faf7f0;
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    border-bottom: 1px solid rgba(45, 62, 45, 0.1);
}

.stone_header-row {
    display: flex;
    justify-content: center;
}

.stone_header-row--title {
   text-align: center;
    padding: 1rem 0 0.5rem 0;
}

.stone_header-row--logo {
   text-align: center;
    padding: 0 0 1rem 0;
}

.branch_header-container {
    width: 100%;
    max-width: var(--container-width);
    padding: 0 1rem;
    margin: 0 auto;
}

.moss_header-logo {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 600;
    color: #2d3e2d;
    text-decoration: none;
    letter-spacing: -0.02em;
    display: inline-block;
    transition: color 0.2s ease;
}

.moss_header-logo:hover {
    color: #c96e3a;
}

.fern_header-logo-image {
    width: 50px;
    height: 50px;
    object-fit: contain;
    display: block;
    text-align: center;
}

@media (max-width: 768px) {
    .moss_header-logo {
        font-size: 1.6rem;
    }
    
    .fern_header-logo-image {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .moss_header-logo {
        font-size: 1.3rem;
    }
    
    .fern_header-logo-image {
        width: 40px;
        height: 40px;
    }
    
    .stone_header-row--title {
        padding: 0.75rem 0 0.4rem 0;
    }
    
    .stone_header-row--logo {
        padding: 0 0 0.75rem 0;
    }
}

@media (max-width: 320px) {
    .moss_header-logo {
        font-size: 1.1rem;
    }
    
    .fern_header-logo-image {
        width: 35px;
        height: 35px;
    }
}

.drift_modal-age {
    position: fixed;
    bottom: 20px;
    right: 20px;
    max-width: 340px;
    width: calc(100% - 40px);
    background-color: var(--color-bg);
    border: 2px solid var(--color-accent);
    border-radius: var(--border-radius-stone);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    font-family: var(--font-sans);
}

.drift_modal-age[inert] {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.moss_modal-content {
    padding: 1.5rem 1.5rem 1.8rem;
    position: relative;
}

.modal_leaf-icon {
    position: absolute;
    top: -15px;
    left: 20px;
    font-size: 2.5rem;
    color: var(--color-accent);
    background-color: var(--color-bg);
    padding: 0 0.5rem;
    transform: rotate(-5deg);
}

.fern_modal-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--color-accent);
    margin: 0 0 0.75rem 0;
    padding-top: 0.5rem;
}

.branch_modal-text {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: var(--color-text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.stone_modal-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.clay_btn {
    padding: 0.6rem 1.2rem;
    border: none;
    border-radius: 30px;
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.1s ease;
}

.clay_btn--confirm {
    background-color: var(--color-accent);
    color: var(--color-text-light);
}

.clay_btn--confirm:hover {
    background-color: hsl(var(--hue-moss), 30%);
}

.clay_btn--exit {
    background-color: transparent;
    color: var(--color-tertiary);
    border: 1px solid var(--color-tertiary);
}

.clay_btn--exit:hover {
    background-color: var(--color-tertiary);
    color: var(--color-text-light);
}

@media (max-width: 480px) {
    .drift_modal-age {
        bottom: 10px;
        right: 10px;
        width: calc(100% - 20px);
        max-width: none;
    }
    
    .moss_modal-content {
        padding: 1.2rem 1rem 1.5rem;
    }
    
    .fern_modal-title {
        font-size: 1.3rem;
    }
    
    .stone_modal-actions {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .clay_btn {
        width: 100%;
        padding: 0.8rem;
    }
    
    .drift_modal-age, .drift_modal-age * {
        animation: none !important;
        transform: none !important;
        transition: none !important;
    }
}

@media (max-width: 320px) {
    .fern_modal-title {
        font-size: 1.1rem;
    }
    
    .branch_modal-text {
        font-size: 0.85rem;
    }
}

.drift_modal-cookie {
    position: fixed;
    bottom: 20px;
    left: 20px;
    max-width: 340px;
    width: calc(100% - 40px);
    background-color: var(--color-bg);
    border: 2px solid var(--color-tertiary);
    border-radius: var(--border-radius-stone);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    z-index: 999;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    font-family: var(--font-sans);
}

.drift_modal-cookie[inert] {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.modal_dew-icon {
    position: absolute;
    top: -15px;
    left: 20px;
    font-size: 2.5rem;
    color: var(--color-tertiary);
    background-color: var(--color-bg);
    padding: 0 0.5rem;
    transform: rotate(5deg);
}

.pebble_link {
    color: var(--color-accent);
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-decoration-color: var(--color-tertiary);
    text-underline-offset: 4px;
    font-weight: 500;
}

.pebble_link:hover {
    color: var(--color-tertiary);
}

@media (max-width: 480px) {
    .drift_modal-cookie {
        bottom: 10px;
        left: 10px;
        width: calc(100% - 20px);
        max-width: none;
    }
    
    .drift_modal-cookie, .drift_modal-cookie * {
        animation: none !important;
        transform: none !important;
        transition: none !important;
    }
}

@media (max-width: 320px) {
    .pebble_link {
        word-break: break-all;
    }
}

.forest_welcome {
    position: relative;
    width: 100%;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 3rem;
}

.meadow_background-picture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.meadow_background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    display: block;
}

.forest_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.65) 0%, rgba(30, 50, 30, 0.7) 100%);
    z-index: 2;
}

.drift_animation-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, transparent 30%, rgba(255, 255, 255, 0.05) 80%);
    opacity: 0.4;
    z-index: 3;
    pointer-events: none;
    animation: drift_mist 12s infinite alternate ease-in-out;
}

@keyframes drift_mist {
    0% {
        transform: scale(1) translateX(0);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.05) translateX(-2%);
        opacity: 0.5;
    }
    100% {
        transform: scale(1) translateX(2%);
        opacity: 0.3;
    }
}

.branch_welcome-container {
    position: relative;
    z-index: 4;
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 2rem 1rem;
    display: flex;
    justify-content: center;
}

.moss_welcome-content {
    max-width: 900px;
    text-align: center;
    color: var(--color-text-light);
}

.fern_welcome-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 6vw, 3.8rem);
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.clay_accent {
    color: hsl(var(--hue-clay), 70%);
    font-family: var(--font-hand);
    display: inline-block;
    position: relative;
}

.stone_welcome-text {
    font-family: var(--font-sans);
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto 2.5rem auto;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

.pebble_benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0 3rem 0;
}

.leaf_benefit-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    padding: 1.8rem 1.2rem;
    transition: transform 0.2s ease;
}

.leaf_benefit-card:hover {
    transform: translateY(-5px);
}

.benefit_icon {
    font-size: 2.8rem;
    color: hsl(var(--hue-clay), 70%);
    margin-bottom: 0.8rem;
    display: inline-block;
}

.twig_card-title {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: white;
    margin-bottom: 0.5rem;
}

.bark_card-text {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

.clay_button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 2rem;
    background-color: hsl(var(--hue-clay), 50%);
    color: white;
    border-radius: 40px;
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.1s ease;
    text-decoration: none;
}

.clay_button:hover {
    background-color: hsl(var(--hue-clay), 40%);
}

.button_arrow {
    font-size: 1.2rem;
    transition: transform 0.2s ease;
}

.clay_button:hover .button_arrow {
    transform: translateY(3px);
}

@media (max-width: 768px) {
    .forest_welcome {
        min-height: 70vh;
    }
    
    .pebble_benefits-grid {
        gap: 1rem;
    }
    
    .leaf_benefit-card {
        padding: 1.5rem 1rem;
    }
}

@media (max-width: 480px) {
    .forest_welcome {
        min-height: 60vh;
    }
    
    .drift_animation-layer {
        animation: none !important;
        transform: none !important;
        opacity: 0.3;
    }
    
    .leaf_benefit-card:hover {
        transform: none;
    }
    
    .clay_button:hover .button_arrow {
        transform: none;
    }
    
    .benefit_icon {
        font-size: 2.2rem;
    }
    
    .twig_card-title {
        font-size: 1.2rem;
    }
    
    .bark_card-text {
        font-size: 0.9rem;
    }
}

@media (max-width: 360px) {
    .pebble_benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .moss_welcome-content {
        padding: 0 0.5rem;
    }
    
    .fern_welcome-title {
        font-size: 1.8rem;
    }
    
    .stone_welcome-text {
        font-size: 0.95rem;
    }
}

@media (max-width: 320px) {
    .clay_button {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .benefit_icon {
        font-size: 1.8rem;
    }
    
    .fern_welcome-title {
        font-size: 1.5rem;
    }
    
    .stone_welcome-text {
        font-size: 0.85rem;
    }
    
    .twig_card-title {
        font-size: 1.1rem;
    }
}

.forest_bonus-showcase {
    background-color: var(--color-bg);
    padding: 0rem 0 5rem;
    width: 100%;
}

.fern_section-title {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: var(--color-text-dark);
    text-align: center;
    margin-bottom: 0.5rem;
}

.stone_section-subtitle {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    color: hsl(var(--hue-moss), 25%);
    text-align: center;
    margin-bottom: 2.5rem;
}

.meadow_headers-row {
    display: grid;
    grid-template-columns: 80px 1fr 140px 100px 140px;
    gap: 1rem;
    padding: 0.75rem 1.5rem;
    background-color: hsl(var(--hue-moss), 15%);
    border-radius: 40px;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.pebble_header {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--color-text-light);
}

.moss_cards-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.leaf_bonus-card {
    display: grid;
    grid-template-columns: 80px 1fr 140px 100px 140px;
    gap: 1rem;
    align-items: start;
    background-color: white;
    border-radius: 20px;
    padding: 1.2rem 1.5rem;
    box-shadow: 0 4px 12px rgba(45, 62, 45, 0.08);
    border: 1px solid rgba(150, 120, 80, 0.1);
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.leaf_bonus-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(45, 62, 45, 0.12);
}

.twig_exclusive-badge {
    position: absolute;
    top: -10px;
    left: 30px;
    background-color: hsl(var(--hue-clay), 50%);
    color: white;
    font-family: var(--font-hand);
    font-size: 0.8rem;
    font-weight: bold;
    padding: 0.2rem 1rem;
    border-radius: 30px;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.pebble_header-mobile {
    display: none;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 600;
    color: hsl(var(--hue-moss), 30%);
    text-transform: uppercase;
    margin-bottom: 0.3rem;
}

.bark_card-row {
    display: flex;
    flex-direction: column;
}

.acorn_place-number {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 700;
    color: hsl(var(--hue-clay), 45%);
    line-height: 1;
}

.clay_site-name {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-text-dark);
    margin-bottom: 0.5rem;
}

.root_bonus-block {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.branch_offer-text {
    border-left: 3px solid hsl(var(--hue-clay), 30%);
    padding-left: 0.75rem;
}

.moss_highlight {
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 0.95rem;
    color: hsl(var(--hue-moss), 35%);
    margin-bottom: 0.2rem;
}

.stone_terms {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    color: #666;
    line-height: 1.4;
}

.root_rating-block {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.drift_stars {
    display: flex;
    gap: 0.2rem;
    color: hsl(45, 80%, 55%);
    font-size: 1rem;
}

.fern_rating-text {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    color: #555;
}

.root_score-block {
    display: flex;
    align-items: baseline;
    gap: 0.2rem;
}

.acorn_score-number {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 700;
    color: hsl(var(--hue-moss), 35%);
    line-height: 1;
}

.fern_score-text {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    color: #777;
}

.root_visit-block {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    align-items: flex-start;
}

.clay_button--small {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    background-color: hsl(var(--hue-moss), 35%);
    color: white;
    border-radius: 30px;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.2s ease;
}

.clay_button--small:hover {
    background-color: hsl(var(--hue-moss), 30%);
}

.moss_deposit-info {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    color: #777;
}

@media (max-width: 1100px) {
    .meadow_headers-row {
        grid-template-columns: 70px 1fr 120px 80px 120px;
        gap: 0.75rem;
        padding: 0.75rem 1rem;
    }
    
    .leaf_bonus-card {
        grid-template-columns: 70px 1fr 120px 80px 120px;
        gap: 0.75rem;
        padding: 1rem;
    }
    
    .acorn_place-number {
        font-size: 1.5rem;
    }
    
    .clay_site-name {
        font-size: 1rem;
    }
}

@media (max-width: 900px) {
    .meadow_headers-row {
        display: none;
    }
    
    .leaf_bonus-card {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem 1rem;
        margin-top: 0.5rem;
    }
    
    .pebble_header-mobile {
        display: block;
    }
    
    .bark_card-row {
        width: 100%;
        border-bottom: 1px dashed #eee;
        padding-bottom: 0.8rem;
    }
    
    .bark_card-row:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
    
    .root_rating-block, 
    .root_score-block,
    .root_visit-block {
        flex-direction: row;
        align-items: center;
        gap: 1rem;
    }
    
    .acorn_score-number {
        font-size: 1.5rem;
    }
    
    .twig_exclusive-badge {
        left: 20px;
    }
}

@media (max-width: 480px) {
    .fern_section-title {
        font-size: 1.8rem;
    }
    
    .stone_section-subtitle {
        font-size: 0.95rem;
    }
    
    .leaf_bonus-card {
        padding: 1.2rem 0.8rem;
    }
    
    .root_rating-block, 
    .root_score-block,
    .root_visit-block {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.3rem;
    }
    
    .drift_stars {
        font-size: 0.9rem;
    }
    
    .moss_deposit-info {
        font-size: 0.7rem;
    }
    
    .leaf_bonus-card:hover {
        transform: none;
    }
}

@media (max-width: 320px) {
    .fern_section-title {
        font-size: 1.5rem;
    }
    
    .stone_section-subtitle {
        font-size: 0.85rem;
    }
    
    .clay_site-name {
        font-size: 0.95rem;
    }
    
    .moss_highlight {
        font-size: 0.85rem;
    }
    
    .stone_terms {
        font-size: 0.7rem;
    }
    
    .acorn_score-number {
        font-size: 1.3rem;
    }
}

.forest_responsible {
    position: relative;
    width: 100%;
    padding: 5rem 0 6rem;
    background: linear-gradient(145deg, hsl(150, 25%, 92%) 0%, hsl(140, 20%, 88%) 100%);
    overflow: hidden;
    isolation: isolate;
}

.meadow_animation-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(160, 200, 160, 0.15) 0%, transparent 30%),
                radial-gradient(circle at 80% 70%, rgba(120, 150, 120, 0.2) 0%, transparent 35%),
                repeating-linear-gradient(45deg, transparent, transparent 40px, rgba(100, 130, 100, 0.03) 40px, rgba(100, 130, 100, 0.03) 80px);
    z-index: 1;
    animation: sway_grass 18s infinite alternate ease-in-out;
    pointer-events: none;
}

@keyframes sway_grass {
    0% {
        background-position: 0% 0%, 0% 0%, 0% 0%;
        opacity: 0.6;
    }
    50% {
        background-position: 2% 3%, 3% 2%, 5px 5px;
        opacity: 0.9;
    }
    100% {
        background-position: 5% 5%, 5% 4%, 10px 10px;
        opacity: 0.6;
    }
}

.moss_responsible-content {
    position: relative;
    z-index: 2;
    background-color: rgba(250, 247, 240, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 40px;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(45, 62, 45, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.fern_section-title--light {
    color: hsl(150, 30%, 25%);
    text-align: center;
    margin-bottom: 2.5rem;
    font-size: 2.5rem;
}

.pebble_responsible-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 2.5rem;
    align-items: start;
}

.leaf_text-block, .bark_links-block {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.block-icon {
    font-size: 2.8rem;
    color: hsl(150, 35%, 40%);
    margin-bottom: 0.5rem;
}

.stone_main-text {
    font-family: var(--font-sans);
    font-size: 1rem;
    line-height: 1.7;
    color: hsl(120, 10%, 20%);
    margin-bottom: 0.8rem;
}

.twig_block-title {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    color: hsl(150, 35%, 30%);
    margin-bottom: 1rem;
}

.root_partner-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-family: var(--font-sans);
    font-size: 1.2rem;
    font-weight: 600;
    color: hsl(25, 55%, 40%);
    text-decoration: none;
    padding: 0.3rem 0;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease, color 0.2s ease;
}

.root_partner-link:hover {
    color: hsl(25, 60%, 30%);
    border-bottom-color: hsl(25, 50%, 60%);
}

.partner-icon {
    font-size: 1.8rem;
    color: hsl(150, 35%, 40%);
    flex-shrink: 0;
}

.acorn_link-desc {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    color: hsl(120, 8%, 30%);
    margin-left: 2.6rem;
    margin-top: -0.5rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.moss_extra-note {
    margin-top: 1.5rem;
    padding: 1rem;
    background-color: hsl(150, 20%, 85%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: hsl(150, 35%, 25%);
}

.moss_extra-note i {
    font-size: 2rem;
    color: hsl(25, 55%, 45%);
}

@media (max-width: 900px) {
    .pebble_responsible-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .moss_responsible-content {
        padding: 2rem;
    }
    
    .fern_section-title--light {
        font-size: 2rem;
    }
}

@media (max-width: 600px) {
    .forest_responsible {
        padding: 3rem 0;
    }
    
    .moss_responsible-content {
        padding: 1.5rem;
        border-radius: 30px;
    }
    
    .fern_section-title--light {
        font-size: 1.8rem;
    }
    
    .stone_main-text {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .twig_block-title {
        font-size: 1.4rem;
    }
    
    .root_partner-link {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .fern_section-title--light {
        font-size: 1.5rem;
    }
    
    .stone_main-text {
        font-size: 0.9rem;
    }
    
    .moss_extra-note {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .meadow_animation-layer {
        animation: none !important;
    }
    
    .moss_responsible-content {
        backdrop-filter: none;
        background-color: rgba(250, 247, 240, 0.9);
    }
}

@media (max-width: 320px) {
    .fern_section-title--light {
        font-size: 1.3rem;
    }
    
    .block-icon {
        font-size: 2.2rem;
    }
    
    .stone_main-text {
        font-size: 0.85rem;
    }
    
    .root_partner-link {
        font-size: 1rem;
    }
    
    .acorn_link-desc {
        font-size: 0.8rem;
        margin-left: 1rem;
    }
}

.forest_faq {
    position: relative;
    width: 100%;
    padding: 5rem 0 6rem;
    background: linear-gradient(125deg, hsl(100, 25%, 85%) 0%, hsl(120, 20%, 80%) 100%);
    overflow: hidden;
    isolation: isolate;
}

.meadow_faq-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(180, 210, 160, 0.3) 0%, transparent 25%),
        radial-gradient(circle at 90% 70%, rgba(130, 170, 120, 0.25) 0%, transparent 35%),
        repeating-linear-gradient(60deg, transparent, transparent 30px, rgba(100, 140, 90, 0.05) 30px, rgba(100, 140, 90, 0.05) 60px);
    z-index: 1;
    animation: drifting_leaves 20s infinite alternate ease-in-out;
    pointer-events: none;
}

@keyframes drifting_leaves {
    0% {
        background-position: 0% 0%, 0% 0%, 0% 0%;
        opacity: 0.4;
    }
    50% {
        background-position: 5% 3%, 3% 5%, 10px 15px;
        opacity: 0.7;
    }
    100% {
        background-position: 8% 7%, 7% 8%, 20px 25px;
        opacity: 0.4;
    }
}

.moss_faq-content {
    position: relative;
    z-index: 2;
    background-color: rgba(250, 247, 240, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 50px;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(60, 80, 60, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.fern_faq-title {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: hsl(140, 35%, 25%);
    text-align: center;
    margin-bottom: 2.5rem;
}

.pebble_faq-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.leaf_faq-item {
    padding: 1.2rem 1.5rem;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 24px;
    border-left: 5px solid hsl(150, 35%, 45%);
    transition: background-color 0.2s ease;
}

.leaf_faq-item:hover {
    background-color: rgba(255, 255, 255, 0.8);
}

.stone_question {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.5rem;
}

.question-icon {
    font-size: 1.6rem;
    color: hsl(25, 55%, 45%);
    flex-shrink: 0;
}

.stone_question h3 {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 600;
    color: hsl(140, 35%, 25%);
    margin: 0;
}

.bark_answer {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    line-height: 1.6;
    color: hsl(120, 8%, 25%);
    padding-left: 2.4rem;
}

@media (max-width: 768px) {
    .moss_faq-content {
        padding: 2rem;
    }
    
    .fern_faq-title {
        font-size: 2rem;
    }
    
    .leaf_faq-item {
        padding: 1rem;
    }
    
    .stone_question h3 {
        font-size: 1.1rem;
    }
    
    .bark_answer {
        font-size: 0.9rem;
        padding-left: 0;
    }
    
    .stone_question {
        align-items: flex-start;
    }
}

@media (max-width: 600px) {
    .forest_faq {
        padding: 3rem 0;
    }
    
    .moss_faq-content {
        padding: 1.5rem;
        border-radius: 30px;
    }
    
    .fern_faq-title {
        font-size: 1.8rem;
    }
    
    .stone_question h3 {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .fern_faq-title {
        font-size: 1.5rem;
    }
    
    .stone_question {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.3rem;
    }
    
    .question-icon {
        font-size: 1.4rem;
    }
    
    .bark_answer {
        font-size: 0.85rem;
    }
    
    .meadow_faq-animation {
        animation: none !important;
    }
    
    .moss_faq-content {
        backdrop-filter: none;
        background-color: rgba(250, 247, 240, 0.9);
    }
    
    .leaf_faq-item:hover {
        background-color: rgba(255, 255, 255, 0.5);
    }
}

@media (max-width: 320px) {
    .fern_faq-title {
        font-size: 1.3rem;
    }
    
    .stone_question h3 {
        font-size: 0.95rem;
    }
    
    .bark_answer {
        font-size: 0.8rem;
    }
    
    .leaf_faq-item {
        padding: 0.8rem;
    }
}

.forest_responsible-two {
    width: 100%;
    padding: 4rem 0 1rem;
    background-color: hsl(100, 20%, 92%);
    border-top: 3px solid hsl(25, 55%, 50%);
    border-bottom: 3px solid hsl(150, 30%, 40%);
}

.meadow_partners-row {
    margin-bottom: 3.5rem;
}

.pebble_partners-title {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: hsl(150, 35%, 30%);
    text-align: center;
    margin-bottom: 2rem;
}

.stone_partners-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1.5rem 2rem;
    margin: 0 auto;
}

.moss_partner-link {
    display: block;
    transition: transform 0.2s ease, opacity 0.2s ease;
    text-decoration: none;
}

.moss_partner-link:hover {
    transform: scale(1.03);
    opacity: 0.9;
}

.fern_partner-logo {
    width: 100%;
    max-width: 260px;
    height: 70px;
    object-fit: contain;
    display: block;
    border-radius: 8px;
    background-color: #469406;
    padding: 0.3rem;
}

.twig_responsible-row {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 2.5rem;
    align-items: center;
    margin-bottom: 2.5rem;
}

.root_age-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #ff8a5c, #e63e3e);
    border-radius: 40px;
    padding: 2.5rem 1rem;
    box-shadow: 0 15px 30px rgba(230, 62, 62, 0.3);
    text-align: center;
}

.bark_age-icon {
    font-family: var(--font-serif);
    font-size: 12rem;
    font-weight: 900;
    line-height: 1;
    color: white;
    text-shadow: 4px 4px 0 rgba(0, 0, 0, 0.2);
    letter-spacing: -5px;
}

.acorn_age-text {
    font-family: var(--font-sans);
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    margin-top: 0.5rem;
    text-transform: uppercase;
}

.leaf_text-block-two {
    background-color: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 30px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.clay_text-title {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: hsl(150, 35%, 30%);
    margin-bottom: 1rem;
}

.stone_main-text-two {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    line-height: 1.7;
    color: hsl(120, 10%, 25%);
    margin-bottom: 1.5rem;
}

.moss_extra-resources {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem;
    background-color: hsl(25, 50%, 90%);
    border-radius: 50px;
    font-family: var(--font-sans);
    font-size: 1rem;
    color: hsl(25, 55%, 35%);
    border: 1px solid hsl(25, 50%, 70%);
}

.moss_extra-resources i {
    font-size: 1.8rem;
    color: hsl(25, 60%, 45%);
}

.fern_disclaimer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1rem;
    background-color: hsl(150, 20%, 80%);
    border-radius: 60px;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    color: hsl(150, 35%, 25%);
    margin-top: 2rem;
}

.fern_disclaimer i {
    font-size: 1.4rem;
    color: hsl(25, 55%, 45%);
}

@media (max-width: 900px) {
    .twig_responsible-row {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .root_age-block {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .bark_age-icon {
        font-size: 10rem;
    }
}

@media (max-width: 700px) {
    .stone_partners-grid {
        gap: 1rem;
    }
    
    .fern_partner-logo {
        max-width: 220px;
        height: 60px;
    }
    
    .clay_text-title {
        font-size: 1.6rem;
    }
    
    .stone_main-text-two {
        font-size: 1rem;
    }
}

@media (max-width: 600px) {
    .pebble_partners-title {
        font-size: 1.5rem;
    }
    
    .fern_partner-logo {
        max-width: 200px;
        height: 55px;
    }
    
    .bark_age-icon {
        font-size: 8rem;
    }
    
    .acorn_age-text {
        font-size: 1.2rem;
    }
    
    .moss_extra-resources {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .forest_responsible-two {
        padding: 2.5rem 0;
    }
    
    .stone_partners-grid {
        flex-direction: column;
        align-items: stretch;
    }
    
    .moss_partner-link {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }
    
    .fern_partner-logo {
        max-width: 100%;
        height: 60px;
    }
    
    .bark_age-icon {
        font-size: 6rem;
    }
    
    .acorn_age-text {
        font-size: 1rem;
    }
    
    .leaf_text-block-two {
        padding: 1.5rem;
    }
    
    .clay_text-title {
        font-size: 1.4rem;
    }
    
    .stone_main-text-two {
        font-size: 0.95rem;
    }
    
    .fern_disclaimer {
        flex-direction: column;
        text-align: center;
        font-size: 0.85rem;
    }
    
    .moss_partner-link:hover {
        transform: none;
    }
}

@media (max-width: 320px) {
    .pebble_partners-title {
        font-size: 1.3rem;
    }
    
    .fern_partner-logo {
        height: 50px;
    }
    
    .bark_age-icon {
        font-size: 5rem;
    }
    
    .clay_text-title {
        font-size: 1.2rem;
    }
    
    .stone_main-text-two {
        font-size: 0.85rem;
    }
    
    .moss_extra-resources {
        font-size: 0.9rem;
    }
}

.forest_footer {
    background-color: hsl(120, 15%, 18%);
    color: hsl(45, 20%, 85%);
    padding: 3.5rem 0 2rem;
    border-top: 5px solid hsl(25, 55%, 45%);
    width: 100%;
}

.branch_footer-container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1rem;
}

.moss_footer-grid {
    display: grid;
    grid-template-areas: 
        "brand links contact"
        "copyright copyright copyright";
    grid-template-columns: 1.2fr 2fr 1.2fr;
    gap: 0.5rem 2rem;
    align-items: start;
}

.leaf_footer-block--brand {
    grid-area: brand;
}

.leaf_footer-block--links {
    grid-area: links;
}

.leaf_footer-block--contact {
    grid-area: contact;
}

.leaf_footer-block--copyright {
    grid-area: copyright;
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid hsl(120, 10%, 30%);
}

.stone_footer-logo {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 600;
    color: hsl(25, 60%, 70%);
    text-decoration: none;
    display: inline-block;
    margin-bottom: 0.5rem;
    line-height: 1.2;
    transition: color 0.2s ease;
}

.stone_footer-logo:hover {
    color: hsl(25, 70%, 80%);
}

.bark_footer-tagline {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    color: hsl(45, 15%, 70%);
    margin-top: 0.5rem;
}

.twig_footer-title {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: hsl(45, 25%, 80%);
    margin-bottom: 1.2rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.twig_footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: hsl(25, 55%, 50%);
}

.root_links-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem 1.2rem;
}

.acorn_footer-link {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: hsl(45, 15%, 75%);
    text-decoration: none;
    padding: 0.2rem 0;
    border-bottom: 1px solid transparent;
    transition: color 0.2s ease, border-color 0.2s ease;
    white-space: nowrap;
}

.acorn_footer-link:hover {
    color: hsl(25, 60%, 70%);
    border-bottom-color: hsl(25, 50%, 50%);
}

.acorn_footer-link--home {
    font-weight: 600;
    color: hsl(25, 65%, 75%);
}

.fern_contact-details {
    font-family: var(--font-sans);
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pebble_address-line {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    font-size: 0.95rem;
    color: hsl(45, 15%, 75%);
    line-height: 1.5;
}

.pebble_address-line i {
    font-size: 1.2rem;
    color: hsl(25, 55%, 55%);
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.moss_email-link {
    color: hsl(25, 60%, 70%);
    text-decoration: none;
    word-break: break-word;
}

.moss_email-link:hover {
    text-decoration: underline;
    color: hsl(25, 70%, 80%);
}

.clay_copyright {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    color: hsl(45, 10%, 65%);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    margin-bottom: 0.3rem;
}

.clay_copyright--small {
    font-size: 0.8rem;
    color: hsl(45, 8%, 55%);
}

.clay_copyright i {
    font-size: 1rem;
    color: hsl(25, 50%, 60%);
}

@media (max-width: 900px) {
    .moss_footer-grid {
        grid-template-areas: 
            "brand brand"
            "links contact"
            "copyright copyright";
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .stone_footer-logo {
        font-size: 1.6rem;
    }
}

@media (max-width: 650px) {
    .moss_footer-grid {
        grid-template-areas: 
            "brand"
            "links"
            "contact"
            "copyright";
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .root_links-grid {
        justify-content: flex-start;
    }
    
    .acorn_footer-link {
        white-space: normal;
        word-break: break-word;
    }
    
    .twig_footer-title::after {
        left: 0;
        width: 40px;
    }
}

@media (max-width: 480px) {
    .forest_footer {
        padding: 2.5rem 0 1.5rem;
    }
    
    .stone_footer-logo {
        font-size: 1.4rem;
    }
    
    .bark_footer-tagline {
        font-size: 0.85rem;
    }
    
    .twig_footer-title {
        font-size: 1.1rem;
    }
    
    .root_links-grid {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .acorn_footer-link {
        font-size: 0.9rem;
        white-space: normal;
    }
    
    .pebble_address-line {
        font-size: 0.9rem;
        word-break: break-word;
    }
    
    .clay_copyright {
        flex-direction: column;
        gap: 0.1rem;
        font-size: 0.85rem;
    }
    
    .fern_contact-details {
        gap: 0.8rem;
    }
    
    .moss_footer-grid {
        gap: 1.5rem;
    }
}

@media (max-width: 320px) {
    .stone_footer-logo {
        font-size: 1.2rem;
    }
    
    .pebble_address-line {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.2rem;
    }
    
    .moss_email-link {
        word-break: break-all;
    }
}