ADVERTISEMENT

What happens to our skin as we age?

Understanding the process of skin aging

Published Jan 13, 2026 01:15 am

At A Glance

  • Age is a crude measure of life expectancy—and an even cruder measure of skin health

Here’s something I find myself telling patients almost daily: Your skin is not just a wrapping.  It’s a window. A window into how well you’ve been sleeping, whether you’ve been drinking enough water, how much stress you’re carrying, and yes—how your body is aging on the inside.  Of all the organs we have, the skin is the most accessible, the most visible, and often the most honest.

By 2050, one in five people globally will be over 65. That’s not a distant statistic—it’s your titas, your parents, maybe even you reading this over your morning coffee.  And with this shift comes a growing field we call geriatric dermatology, which sounds clinical but really just means: how do we care for aging skin with the nuance it deserves?

Intrinsic vs. extrinsic: The two faces of skin aging

When we talk about skin aging, we’re really talking about two separate processes happening simultaneously.  The first is intrinsic aging—the biological clock ticking inside every cell. This happens to everyone, regardless of lifestyle. It’s genetic, inevitable, and honestly?  Beautifully human. The second is extrinsic aging—and this is where your choices come in. Sun exposure, pollution, smoking, late nights, and that third glass of wine at Friday dinner? They all leave fingerprints on your skin. UV light alone accounts for so much of what we call “photo aging.” Think the leathery texture, the deep creases, and the uneven pigmentation we associate with getting older. The fascinating thing is that while we can’t stop intrinsic aging, we have tremendous control over the extrinsic factors. This is why two people of the same age can look decades apart.

What’s changing under the surface

Let me paint you a picture of what happens as skin matures. In the epidermis—that outermost layer—cells become larger but less efficient. Melanin production becomes erratic, which is why you might notice dark spots appearing seemingly out of nowhere.  The skin barrier weakens, leading to that persistent dryness, even any moisturizer is not enough. Go deeper into the dermis, and collagen is declining steadily—about one percent per year after your 20s.  Elastin fibers fragment. Sweat glands become less active, which affects your skin’s ability to regulate temperature. Wound healing slows. That small cut that used to disappear in days? Now it lingers for weeks. And in the hypodermis, the fatty layer that gives youthful faces their plumpness? It thins out, contributing to that hollowed look under the eyes or the loss of volume in the cheeks.

Here’s what you need to remember

Age is a crude measure of life expectancy—and an even cruder measure of skin health. I’ve seen 60-year-olds with resilient, glowing skin and 35-year-olds whose skin tells a story of neglect. The central question isn’t how do we stop aging—because we can’t, and frankly, we shouldn’t want to erase the evidence of a life fully lived. The better question is: how do we age with intention? How do we support our skin so it remains healthy, functional, and yes, beautiful in ways that honor where we are in life? It starts with the basics that everyone knows, but few consistently practice: Daily sun protection (non-negotiable), adequate hydration, quality sleep, and managing stress. Beyond that, there are now remarkable treatments—from regenerative therapies to targeted actives—that can support cellular function and slow extrinsic damage.

The Fountain of Youth was never a place

The ancient Greeks searched for it. The Fountain of Youth has captured human imagination for millennia. But, here’s what modern science is teaching us: The fountain was never a destination.  It’s a practice. It’s in how you care for yourself daily, the boundaries you set, the small rituals that compound over years. Your skin will age. Mine will too. Though there’s something powerful in understanding how it ages—because knowledge transforms anxiety into agency. And that, I think, is the real secret to aging well.

Related Tags

Health and Wellness
ADVERTISEMENT
.most-popular .layout-ratio{ padding-bottom: 79.13%; } @media (min-width: 768px) and (max-width: 1024px) { .widget-title { font-size: 15px !important; } }

{{ articles_filter_1561_widget.title }}

.most-popular .layout-ratio{ padding-bottom: 79.13%; } @media (min-width: 768px) and (max-width: 1024px) { .widget-title { font-size: 15px !important; } }

{{ articles_filter_1562_widget.title }}

.most-popular .layout-ratio{ padding-bottom: 79.13%; } @media (min-width: 768px) and (max-width: 1024px) { .widget-title { font-size: 15px !important; } }

{{ articles_filter_1563_widget.title }}

{{ articles_filter_1564_widget.title }}

.mb-article-details { position: relative; } .mb-article-details .article-body-preview, .mb-article-details .article-body-summary{ font-size: 17px; line-height: 30px; font-family: "Libre Caslon Text", serif; color: #000; } .mb-article-details .article-body-preview iframe , .mb-article-details .article-body-summary iframe{ width: 100%; margin: auto; } .read-more-background { background: linear-gradient(180deg, color(display-p3 1.000 1.000 1.000 / 0) 13.75%, color(display-p3 1.000 1.000 1.000 / 0.8) 30.79%, color(display-p3 1.000 1.000 1.000) 72.5%); position: absolute; height: 200px; width: 100%; bottom: 0; display: flex; justify-content: center; align-items: center; padding: 0; } .read-more-background a{ color: #000; } .read-more-btn { padding: 17px 45px; font-family: Inter; font-weight: 700; font-size: 18px; line-height: 16px; text-align: center; vertical-align: middle; border: 1px solid black; background-color: white; } .hidden { display: none; }
function initializeAllSwipers() { // Get all hidden inputs with cms_article_id document.querySelectorAll('[id^="cms_article_id_"]').forEach(function (input) { const cmsArticleId = input.value; const articleSelector = '#article-' + cmsArticleId + ' .body_images'; const swiperElement = document.querySelector(articleSelector); if (swiperElement && !swiperElement.classList.contains('swiper-initialized')) { new Swiper(articleSelector, { loop: true, pagination: false, navigation: { nextEl: '#article-' + cmsArticleId + ' .swiper-button-next', prevEl: '#article-' + cmsArticleId + ' .swiper-button-prev', }, }); } }); } setTimeout(initializeAllSwipers, 3000); const intersectionObserver = new IntersectionObserver( (entries) => { entries.forEach((entry) => { if (entry.isIntersecting) { const newUrl = entry.target.getAttribute("data-url"); if (newUrl) { history.pushState(null, null, newUrl); let article = entry.target; // Extract metadata const author = article.querySelector('.author-section').textContent.replace('By', '').trim(); const section = article.querySelector('.section-info ').textContent.replace(' ', ' '); const title = article.querySelector('.article-title h1').textContent; // Parse URL for Chartbeat path format const parsedUrl = new URL(newUrl, window.location.origin); const cleanUrl = parsedUrl.host + parsedUrl.pathname; // Update Chartbeat configuration if (typeof window._sf_async_config !== 'undefined') { window._sf_async_config.path = cleanUrl; window._sf_async_config.sections = section; window._sf_async_config.authors = author; } // Track virtual page view with Chartbeat if (typeof pSUPERFLY !== 'undefined' && typeof pSUPERFLY.virtualPage === 'function') { try { pSUPERFLY.virtualPage({ path: cleanUrl, title: title, sections: section, authors: author }); } catch (error) { console.error('ping error', error); } } // Optional: Update document title if (title && title !== document.title) { document.title = title; } } } }); }, { threshold: 0.1 } ); function showArticleBody(button) { const article = button.closest("article"); const summary = article.querySelector(".article-body-summary"); const body = article.querySelector(".article-body-preview"); const readMoreSection = article.querySelector(".read-more-background"); // Hide summary and read-more section summary.style.display = "none"; readMoreSection.style.display = "none"; // Show the full article body body.classList.remove("hidden"); } document.addEventListener("DOMContentLoaded", () => { let loadCount = 0; // Track how many times articles are loaded const offset = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]; // Offset values const currentUrl = window.location.pathname.substring(1); let isLoading = false; // Prevent multiple calls if (!currentUrl) { console.log("Current URL is invalid."); return; } const sentinel = document.getElementById("load-more-sentinel"); if (!sentinel) { console.log("Sentinel element not found."); return; } function isSentinelVisible() { const rect = sentinel.getBoundingClientRect(); return ( rect.top < window.innerHeight && rect.bottom >= 0 ); } function onScroll() { if (isLoading) return; if (isSentinelVisible()) { if (loadCount >= offset.length) { console.log("Maximum load attempts reached."); window.removeEventListener("scroll", onScroll); return; } isLoading = true; const currentOffset = offset[loadCount]; window.loadMoreItems().then(() => { let article = document.querySelector('#widget_1690 > div:nth-last-of-type(2) article'); intersectionObserver.observe(article) loadCount++; }).catch(error => { console.error("Error loading more items:", error); }).finally(() => { isLoading = false; }); } } window.addEventListener("scroll", onScroll); });

Sign up by email to receive news.