:root {
    --primary: #155e63;
    --primary-dark: #083f44;
    --primary-deep: #062f33;
    --primary-light: #eaf5f4;
    --accent: #d9ad54;
    --accent-dark: #bd8c2e;
    --surface: #ffffff;
    --background: #f4f8f7;
    --text: #15272b;
    --muted: #657679;
    --border: #dbe7e5;
    --container: 1220px;
    --shadow: 0 20px 55px rgba(8, 63, 68, .1);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    background: var(--surface);
    font-family: Inter, Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.6;
}

body.menu-open {
    overflow: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
}

button,
input,
select,
textarea {
    font: inherit;
}

.site-container {
    width: min(var(--container), calc(100% - 40px));
    margin-inline: auto;
}

.skip-link {
    position: fixed;
    z-index: 9999;
    top: -100px;
    left: 20px;
    padding: 10px 15px;
    background: white;
    color: var(--primary-dark);
}

.skip-link:focus {
    top: 15px;
}

.site-topbar {
    background: var(--primary-deep);
    color: rgba(255, 255, 255, .78);
    font-size: 12px;
}

.topbar-inner {
    min-height: 37px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.topbar-address {
    display: flex;
    align-items: center;
    gap: 8px;
}

.topbar-icon {
    color: var(--accent);
    font-size: 8px;
}

.topbar-phone {
    color: white;
    font-weight: 750;
    text-decoration: none;
}

.site-header {
    position: sticky;
    z-index: 900;
    top: 0;
    background: rgba(255, 255, 255, .98);
    border-bottom: 1px solid transparent;
    transition: .25s ease;
}

.site-header.is-scrolled {
    border-color: var(--border);
    box-shadow: 0 10px 30px rgba(8, 63, 68, .08);
}

.header-inner {
    min-height: 84px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.site-brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.site-brand img {
    width: auto;
    max-width: 230px;
    max-height: 62px;
}

.brand-mark {
    width: 49px;
    height: 49px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    border-radius: 14px;
    background: var(--primary);
    color: white;
    font-size: 18px;
    font-weight: 900;
}

.brand-copy strong,
.brand-copy small {
    display: block;
}

.brand-copy strong {
    color: var(--primary-dark);
    font-size: 20px;
    line-height: 1.1;
}

.brand-copy small {
    margin-top: 5px;
    color: var(--muted);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.main-navigation {
    display: flex;
    align-items: center;
    gap: 5px;
}

.main-navigation > a {
    position: relative;
    padding: 12px 11px;
    color: #355256;
    font-size: 13px;
    font-weight: 750;
    text-decoration: none;
}

.main-navigation > a:not(.navigation-cta)::after {
    position: absolute;
    right: 11px;
    bottom: 6px;
    left: 11px;
    height: 2px;
    background: var(--accent);
    content: "";
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .2s ease;
}

.main-navigation > a:hover,
.main-navigation > a.active {
    color: var(--primary);
}

.main-navigation > a:hover::after,
.main-navigation > a.active::after {
    transform: scaleX(1);
}

.main-navigation .navigation-cta {
    margin-left: 7px;
    padding: 12px 17px;
    border-radius: 9px;
    background: var(--primary);
    color: white;
}

.main-navigation .navigation-cta:hover {
    background: var(--primary-dark);
    color: white;
}

.mobile-menu-toggle {
    width: 46px;
    height: 46px;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    border: 1px solid var(--border);
    border-radius: 11px;
    background: white;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 21px;
    height: 2px;
    background: var(--primary-dark);
    transition: .2s ease;
}

.mobile-menu-toggle.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle.is-active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.is-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu-overlay {
    display: none;
}

.hero-section {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(
            120deg,
            var(--primary-deep),
            var(--primary)
        );
    color: white;
}

.hero-grid {
    min-height: 680px;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    align-items: center;
    gap: 65px;
    padding-top: 65px;
    padding-bottom: 65px;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.section-eyebrow {
    display: inline-block;
    margin-bottom: 17px;
    color: var(--accent);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 2.2px;
}

.section-eyebrow-dark {
    color: var(--primary);
}

.hero-content h1 {
    max-width: 680px;
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(44px, 5.2vw, 72px);
    font-weight: 500;
    line-height: 1.06;
    letter-spacing: -2px;
}

.hero-content > p {
    max-width: 660px;
    margin: 25px 0 0;
    color: rgba(255, 255, 255, .76);
    font-size: 17px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
    margin-top: 32px;
}

.site-button {
    min-height: 51px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 12px 20px;
    border: 1px solid transparent;
    border-radius: 9px;
    font-size: 13px;
    font-weight: 850;
    text-decoration: none;
    transition: .2s ease;
}

.button-gold {
    background: var(--accent);
    color: var(--primary-deep);
}

.button-gold:hover {
    background: #e8c477;
    transform: translateY(-2px);
}

.button-outline-light {
    border-color: rgba(255, 255, 255, .35);
    color: white;
}

.button-outline-light:hover {
    background: white;
    color: var(--primary-dark);
}

.hero-assurance {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    margin-top: 48px;
    border-top: 1px solid rgba(255, 255, 255, .15);
}

.hero-assurance > div {
    padding: 22px 16px 0 0;
}

.hero-assurance strong,
.hero-assurance span {
    display: block;
}

.hero-assurance strong {
    color: white;
    font-size: 13px;
}

.hero-assurance span {
    margin-top: 5px;
    color: rgba(255, 255, 255, .52);
    font-size: 11px;
}

.hero-visual {
    position: relative;
    min-height: 535px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 50% 50% 22px 22px;
    background-position: center;
    background-size: cover;
    box-shadow: 0 35px 80px rgba(0, 0, 0, .25);
}

.hero-placeholder {
    display: grid;
    place-items: center;
    background:
        radial-gradient(
            circle at 50% 40%,
            rgba(217, 173, 84, .3),
            transparent 22%
        ),
        linear-gradient(
            145deg,
            #358a8e,
            #0c4b50
        );
}

.science-core {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    width: 115px;
    height: 115px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .35);
    border-radius: 50%;
    background: rgba(255, 255, 255, .12);
    color: white;
    font-size: 30px;
    font-weight: 900;
    transform: translate(-50%, -50%);
    backdrop-filter: blur(12px);
}

.science-orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.orbit-one {
    width: 275px;
    height: 275px;
}

.orbit-two {
    width: 420px;
    height: 420px;
}

.hero-visual-card {
    position: absolute;
    z-index: 3;
    right: 22px;
    bottom: 22px;
    left: 22px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 13px;
    background: rgba(5, 48, 52, .78);
    backdrop-filter: blur(12px);
}

.hero-visual-card span,
.hero-visual-card strong {
    display: block;
}

.hero-visual-card span {
    color: var(--accent);
    font-size: 10px;
    font-weight: 850;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.hero-visual-card strong {
    margin-top: 5px;
    font-size: 14px;
}

.hero-decoration {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 50%;
}

.hero-decoration-one {
    top: -250px;
    right: -120px;
    width: 580px;
    height: 580px;
}

.hero-decoration-two {
    bottom: -300px;
    left: -220px;
    width: 650px;
    height: 650px;
}

.trust-strip {
    background: var(--accent);
    color: var(--primary-deep);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.trust-grid > div {
    min-height: 96px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 28px;
    border-right: 1px solid rgba(8, 63, 68, .18);
}

.trust-grid > div:last-child {
    border-right: 0;
}

.trust-grid span {
    font-family: Georgia, serif;
    font-size: 25px;
    opacity: .55;
}

.trust-grid p {
    margin: 0;
    font-size: 13px;
    font-weight: 800;
}

.section-space {
    padding: 100px 0;
}

.introduction-section {
    background: white;
}

.introduction-grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 90px;
    align-items: start;
}

.section-heading h2,
.centered-heading h2,
.section-title-row h2,
.innovation-content h2,
.contact-cta h2 {
    margin: 0;
    color: var(--primary-dark);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(34px, 4vw, 52px);
    font-weight: 500;
    line-height: 1.12;
}

.introduction-copy p {
    margin: 0 0 25px;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.8;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--primary);
    font-size: 13px;
    font-weight: 850;
    text-decoration: none;
}

.text-link:hover {
    color: var(--accent-dark);
}

.solutions-section {
    background: var(--background);
}

.centered-heading {
    max-width: 720px;
    margin: 0 auto 48px;
    text-align: center;
}

.centered-heading > p {
    margin: 18px 0 0;
    color: var(--muted);
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.solution-card {
    position: relative;
    min-height: 390px;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    padding: 35px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 17px;
    transition: .25s ease;
}

.solution-card:hover {
    border-color: rgba(21, 94, 99, .3);
    box-shadow: var(--shadow);
    transform: translateY(-7px);
}

.solution-number {
    position: absolute;
    top: 28px;
    right: 28px;
    color: #b4c1c0;
    font-family: Georgia, serif;
    font-size: 17px;
}

.solution-icon {
    width: 60px;
    height: 60px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 26px;
}

.solution-card h3 {
    margin: 29px 0 12px;
    color: var(--primary-dark);
    font-size: 22px;
}

.solution-card p {
    margin: 0 0 25px;
    color: var(--muted);
    line-height: 1.75;
}

.solution-card a {
    margin-top: auto;
    color: var(--primary);
    font-size: 13px;
    font-weight: 850;
    text-decoration: none;
}

.section-title-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 43px;
}

.content-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 23px;
}

.content-card {
    overflow: hidden;
    background: white;
    border: 1px solid var(--border);
    border-radius: 17px;
    transition: .25s ease;
}

.content-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-5px);
}

.content-card-image {
    height: 230px;
    background:
        linear-gradient(
            135deg,
            var(--primary-light),
            #c8e1df
        );
    background-position: center;
    background-size: cover;
}

.content-card-body {
    padding: 25px;
}

.content-card-body > span {
    color: var(--accent-dark);
    font-size: 10px;
    font-weight: 850;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.content-card h3 {
    margin: 8px 0 11px;
    color: var(--primary-dark);
    font-size: 21px;
}

.content-card p {
    margin: 0 0 20px;
    color: var(--muted);
    font-size: 14px;
}

.content-card a {
    color: var(--primary);
    font-size: 12px;
    font-weight: 850;
    text-decoration: none;
}

.conditions-section {
    background: white;
}

.conditions-grid {
    display: grid;
    gap: 13px;
}

.condition-card {
    display: grid;
    grid-template-columns: 72px 1fr auto;
    align-items: center;
    gap: 24px;
    min-height: 145px;
    padding: 24px 30px;
    border: 1px solid var(--border);
    border-radius: 15px;
    text-decoration: none;
    transition: .2s ease;
}

.condition-card:hover {
    border-color: var(--primary);
    background: var(--primary-light);
    transform: translateX(5px);
}

.condition-index {
    color: var(--accent-dark);
    font-family: Georgia, serif;
    font-size: 25px;
}

.condition-card h3 {
    margin: 0 0 7px;
    color: var(--primary-dark);
    font-size: 21px;
}

.condition-card p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

.condition-arrow {
    color: var(--primary);
    font-size: 24px;
}

.innovation-section {
    overflow: hidden;
    padding: 105px 0;
    background: var(--primary-deep);
    color: white;
}

.innovation-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    align-items: center;
    gap: 90px;
}

.innovation-visual {
    position: relative;
    min-height: 470px;
    display: grid;
    place-items: center;
}

.innovation-circle {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 50%;
}

.circle-one {
    width: 390px;
    height: 390px;
}

.circle-two {
    width: 270px;
    height: 270px;
}

.innovation-center {
    position: relative;
    z-index: 2;
    width: 175px;
    height: 175px;
    display: grid;
    place-items: center;
    align-content: center;
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
}

.innovation-center span {
    color: var(--accent);
    font-size: 38px;
    font-weight: 900;
}

.innovation-center strong {
    margin-top: 5px;
    font-size: 12px;
}

.innovation-content h2,
.contact-cta h2 {
    color: white;
}

.innovation-content > p {
    margin: 23px 0;
    color: rgba(255, 255, 255, .7);
    line-height: 1.8;
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 13px 24px;
    margin: 0 0 30px;
    padding: 0;
    list-style: none;
}

.feature-list li {
    position: relative;
    padding-left: 22px;
    color: rgba(255, 255, 255, .82);
    font-size: 13px;
}

.feature-list li::before {
    position: absolute;
    top: 0;
    left: 0;
    color: var(--accent);
    content: "✓";
    font-weight: 900;
}

.contact-cta {
    padding: 80px 0;
    background:
        linear-gradient(
            110deg,
            var(--primary),
            var(--primary-dark)
        );
    color: white;
}

.contact-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.contact-cta-inner > div {
    max-width: 750px;
}

.contact-cta p {
    margin: 18px 0 0;
    color: rgba(255, 255, 255, .7);
}

.site-footer {
    background: #052d31;
    color: rgba(255, 255, 255, .68);
}

.footer-main {
    padding: 75px 0 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr .8fr .9fr 1.1fr;
    gap: 60px;
}

.footer-brand .brand-mark {
    background: var(--accent);
    color: var(--primary-deep);
}

.footer-brand .brand-copy strong {
    color: white;
}

.footer-brand .brand-copy small {
    color: rgba(255, 255, 255, .55);
}

.footer-brand-column > p {
    max-width: 390px;
    margin: 22px 0 0;
    font-size: 13px;
    line-height: 1.8;
}

.footer-column h3 {
    margin: 0 0 20px;
    color: white;
    font-size: 14px;
}

.footer-column > a,
.footer-contact > p {
    display: block;
    margin: 0 0 12px;
    color: rgba(255, 255, 255, .64);
    font-size: 12px;
    text-decoration: none;
}

.footer-column > a:hover {
    color: var(--accent);
}

.footer-contact > p {
    line-height: 1.7;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.social-links a {
    padding: 7px 10px;
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 7px;
    color: white;
    font-size: 10px;
    text-decoration: none;
}

.footer-disclaimer {
    padding: 18px 0;
    border-top: 1px solid rgba(255, 255, 255, .1);
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.footer-disclaimer p {
    margin: 0;
    font-size: 10px;
    line-height: 1.7;
}

.footer-bottom {
    padding: 20px 0;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.footer-bottom p {
    margin: 0;
    font-size: 10px;
}

.footer-bottom a {
    margin-left: 18px;
    color: rgba(255, 255, 255, .64);
    font-size: 10px;
    text-decoration: none;
}

.back-to-top {
    position: fixed;
    z-index: 800;
    right: 22px;
    bottom: 22px;
    width: 45px;
    height: 45px;
    visibility: hidden;
    border: 0;
    border-radius: 50%;
    background: var(--accent);
    color: var(--primary-dark);
    cursor: pointer;
    opacity: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .18);
    transition: .2s ease;
}

.back-to-top.is-visible {
    visibility: visible;
    opacity: 1;
}

@media (max-width: 1050px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .main-navigation {
        position: fixed;
        z-index: 1001;
        top: 0;
        right: 0;
        bottom: 0;
        width: min(365px, 88%);
        display: flex;
        align-items: stretch;
        flex-direction: column;
        gap: 2px;
        padding: 90px 24px 35px;
        background: white;
        box-shadow: -20px 0 55px rgba(0, 0, 0, .18);
        transform: translateX(105%);
        transition: transform .25s ease;
    }

    .main-navigation.is-open {
        transform: translateX(0);
    }

    .main-navigation > a {
        padding: 14px;
        border-radius: 8px;
        font-size: 14px;
    }

    .main-navigation > a:not(.navigation-cta)::after {
        display: none;
    }

    .main-navigation > a:hover,
    .main-navigation > a.active {
        background: var(--primary-light);
    }

    .main-navigation .navigation-cta {
        margin: 10px 0 0;
        text-align: center;
    }

    .mobile-menu-toggle {
        position: relative;
        z-index: 1002;
    }

    .mobile-menu-overlay {
        position: fixed;
        z-index: 999;
        inset: 0;
        display: block;
        visibility: hidden;
        background: rgba(3, 32, 35, .6);
        opacity: 0;
        transition: .25s ease;
    }

    .mobile-menu-overlay.is-visible {
        visibility: visible;
        opacity: 1;
    }

    .hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 35px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 820px) {
    .hero-grid,
    .introduction-grid,
    .innovation-grid {
        grid-template-columns: 1fr;
    }

    .hero-grid {
        padding-top: 75px;
    }

    .hero-visual {
        min-height: 470px;
    }

    .hero-assurance,
    .solution-grid,
    .content-card-grid {
        grid-template-columns: 1fr;
    }

    .trust-grid {
        grid-template-columns: 1fr;
    }

    .trust-grid > div {
        min-height: 72px;
        border-right: 0;
        border-bottom: 1px solid rgba(8, 63, 68, .18);
    }

    .trust-grid > div:last-child {
        border-bottom: 0;
    }

    .introduction-grid,
    .innovation-grid {
        gap: 45px;
    }

    .section-title-row,
    .contact-cta-inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .innovation-visual {
        min-height: 390px;
    }
}

@media (max-width: 620px) {
    .site-container {
        width: min(100% - 30px, var(--container));
    }

    .site-topbar {
        display: none;
    }

    .header-inner {
        min-height: 73px;
    }

    .brand-mark {
        width: 43px;
        height: 43px;
    }

    .brand-copy strong {
        font-size: 18px;
    }

    .hero-grid {
        min-height: auto;
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .hero-content h1 {
        font-size: 43px;
        letter-spacing: -1px;
    }

    .hero-content > p {
        font-size: 15px;
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .site-button {
        width: 100%;
    }

    .hero-assurance {
        gap: 12px;
    }

    .hero-assurance > div {
        padding-right: 5px;
    }

    .hero-visual {
        min-height: 390px;
    }

    .orbit-two {
        width: 340px;
        height: 340px;
    }

    .section-space {
        padding: 75px 0;
    }

    .solution-card {
        min-height: 350px;
        padding: 29px 24px;
    }

    .condition-card {
        grid-template-columns: 42px 1fr;
        gap: 15px;
        padding: 22px 18px;
    }

    .condition-arrow {
        display: none;
    }

    .feature-list {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .footer-bottom-inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .footer-bottom a {
        margin: 0 18px 0 0;
    }
}

.hero-section.hero-photo {
    min-height: 700px;
    display: flex;
    align-items: center;
    background-color: var(--primary-deep);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.hero-photo-inner {
    min-height: 700px;
    display: flex;
    align-items: center;
    padding-top: 75px;
    padding-bottom: 75px;
}

.hero-photo .hero-content {
    width: min(650px, 56%);
}

.hero-photo .hero-content h1 {
    text-shadow: 0 4px 25px rgba(0, 0, 0, .16);
}

.hero-photo .hero-content > p {
    max-width: 610px;
    color: rgba(255, 255, 255, .82);
}

.hero-photo .hero-assurance {
    max-width: 630px;
}

.hero-no-photo {
    background-image:
        radial-gradient(
            circle at 78% 45%,
            rgba(217, 173, 84, .25),
            transparent 22%
        ),
        linear-gradient(
            120deg,
            var(--primary-deep),
            var(--primary)
        );
}

@media (max-width: 900px) {
    .hero-section.hero-photo {
        min-height: 650px;
        background-position: 62% center;
    }

    .hero-photo-inner {
        min-height: 650px;
    }

    .hero-photo .hero-content {
        width: min(650px, 75%);
    }
}

@media (max-width: 620px) {
    .hero-section.hero-photo {
        min-height: 680px;
        background-position: 68% center;
        background-image:
            linear-gradient(
                90deg,
                rgba(3, 39, 43, .94) 0%,
                rgba(3, 39, 43, .82) 58%,
                rgba(3, 39, 43, .43) 100%
            ),
            var(--mobile-hero-image);
    }

    .hero-photo-inner {
        min-height: 680px;
        padding-top: 65px;
        padding-bottom: 65px;
    }

    .hero-photo .hero-content {
        width: 100%;
    }

    .hero-photo .hero-assurance {
        grid-template-columns: 1fr;
        gap: 0;
        margin-top: 32px;
    }

    .hero-photo .hero-assurance > div {
        padding-top: 13px;
    }
}

.inner-hero {
    position: relative;
    overflow: hidden;
    padding: 115px 0 105px;
    background:
        linear-gradient(
            115deg,
            var(--primary-deep),
            var(--primary)
        );
    color: white;
}

.inner-hero-decoration {
    position: absolute;
    top: -220px;
    right: -100px;
    width: 530px;
    height: 530px;
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 50%;
}

.inner-hero-decoration::after {
    position: absolute;
    inset: 70px;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 50%;
    content: "";
}

.inner-hero-content {
    position: relative;
    z-index: 2;
}

.inner-hero-content h1 {
    max-width: 800px;
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(43px, 5vw, 68px);
    font-weight: 500;
    line-height: 1.08;
    letter-spacing: -1.5px;
}

.inner-hero-content > p {
    max-width: 720px;
    margin: 23px 0 0;
    color: rgba(255, 255, 255, .74);
    font-size: 17px;
    line-height: 1.8;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-top: 30px;
    color: rgba(255, 255, 255, .58);
    font-size: 11px;
}

.breadcrumb a {
    color: var(--accent);
    font-weight: 800;
    text-decoration: none;
}

.about-introduction {
    background: white;
}

.about-introduction-grid {
    display: grid;
    grid-template-columns: .92fr 1.08fr;
    align-items: center;
    gap: 85px;
}

.about-visual {
    position: relative;
    min-height: 620px;
    overflow: hidden;
    border-radius: 180px 180px 20px 20px;
    background:
        radial-gradient(
            circle at 50% 42%,
            rgba(217, 173, 84, .35),
            transparent 20%
        ),
        linear-gradient(
            145deg,
            #5fa7aa,
            var(--primary-dark)
        );
    box-shadow: var(--shadow);
}

.about-science-circle {
    position: absolute;
    top: 48%;
    left: 50%;
    border: 1px solid rgba(255, 255, 255, .19);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.circle-large {
    width: 390px;
    height: 390px;
}

.circle-small {
    width: 260px;
    height: 260px;
}

.about-science-mark {
    position: absolute;
    top: 48%;
    left: 50%;
    width: 130px;
    height: 130px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: 50%;
    background: rgba(255, 255, 255, .11);
    color: white;
    font-size: 32px;
    font-weight: 900;
    transform: translate(-50%, -50%);
    backdrop-filter: blur(10px);
}

.about-visual-overlay {
    position: absolute;
    z-index: 3;
    right: 24px;
    bottom: 24px;
    left: 24px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 13px;
    background: rgba(5, 45, 49, .75);
    color: white;
    backdrop-filter: blur(12px);
}

.about-visual-overlay span,
.about-visual-overlay strong {
    display: block;
}

.about-visual-overlay span {
    color: var(--accent);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.about-visual-overlay strong {
    margin-top: 6px;
    font-size: 15px;
}

.about-content h2,
.values-heading h2 {
    margin: 0;
    color: var(--primary-dark);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(35px, 4vw, 51px);
    font-weight: 500;
    line-height: 1.14;
}

.about-content > p {
    margin: 19px 0 0;
    color: var(--muted);
    line-height: 1.8;
}

.about-content .about-lead {
    color: var(--primary-dark);
    font-size: 18px;
    font-weight: 750;
}

.about-location {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-top: 30px;
    padding: 18px;
    border-left: 4px solid var(--accent);
    background: var(--primary-light);
}

.about-location-icon {
    margin-top: 3px;
    color: var(--accent-dark);
    font-size: 9px;
}

.about-location strong {
    color: var(--primary-dark);
    font-size: 13px;
}

.about-location p {
    margin: 5px 0 0;
    color: var(--muted);
    font-size: 12px;
}

.purpose-section {
    padding: 100px 0;
    background: var(--primary-deep);
    color: white;
}

.purpose-section .centered-heading h2 {
    color: white;
}

.purpose-section .centered-heading > p {
    color: rgba(255, 255, 255, .62);
}

.purpose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.purpose-card {
    position: relative;
    min-height: 365px;
    padding: 33px;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 17px;
    background: rgba(255, 255, 255, .045);
}

.purpose-card-featured {
    border-color: rgba(217, 173, 84, .55);
    background:
        linear-gradient(
            150deg,
            rgba(217, 173, 84, .18),
            rgba(255, 255, 255, .04)
        );
}

.purpose-card-number {
    position: absolute;
    top: 27px;
    right: 27px;
    color: rgba(255, 255, 255, .36);
    font-family: Georgia, serif;
    font-size: 20px;
}

.purpose-card-icon {
    width: 59px;
    height: 59px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: var(--accent);
    color: var(--primary-deep);
    font-size: 25px;
}

.purpose-card h3 {
    margin: 27px 0 13px;
    color: white;
    font-size: 22px;
}

.purpose-card p {
    margin: 0;
    color: rgba(255, 255, 255, .65);
    line-height: 1.8;
}

.values-section {
    background: var(--background);
}

.values-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 90px;
    align-items: start;
}

.values-heading {
    position: sticky;
    top: 125px;
}

.values-heading > p {
    margin: 20px 0 28px;
    color: var(--muted);
    line-height: 1.8;
}

.about-primary-button {
    background: var(--primary);
    color: white;
}

.about-primary-button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.values-list {
    display: grid;
    gap: 15px;
}

.value-item {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 20px;
    padding: 25px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: white;
    transition: .2s ease;
}

.value-item:hover {
    border-color: rgba(21, 94, 99, .35);
    box-shadow: 0 15px 40px rgba(8, 63, 68, .07);
    transform: translateX(5px);
}

.value-item > span {
    color: var(--accent-dark);
    font-family: Georgia, serif;
    font-size: 22px;
}

.value-item h3 {
    margin: 0 0 8px;
    color: var(--primary-dark);
    font-size: 18px;
}

.value-item p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.75;
}

.about-statement {
    padding: 95px 0;
    background: white;
}

.about-statement-inner {
    max-width: 950px;
    text-align: center;
}

.statement-mark {
    display: block;
    height: 55px;
    color: var(--accent);
    font-family: Georgia, serif;
    font-size: 75px;
    line-height: 1;
}

.about-statement blockquote {
    margin: 10px 0 22px;
    color: var(--primary-dark);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(27px, 3.2vw, 42px);
    line-height: 1.35;
}

.about-statement p {
    margin: 0;
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

@media (max-width: 900px) {
    .about-introduction-grid,
    .values-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .purpose-grid {
        grid-template-columns: 1fr;
    }

    .values-heading {
        position: static;
    }
}

@media (max-width: 620px) {
    .inner-hero {
        padding: 80px 0 75px;
    }

    .inner-hero-content h1 {
        font-size: 42px;
    }

    .inner-hero-content > p {
        font-size: 15px;
    }

    .about-visual {
        min-height: 470px;
        border-radius: 120px 120px 18px 18px;
    }

    .circle-large {
        width: 320px;
        height: 320px;
    }

    .purpose-section {
        padding: 75px 0;
    }

    .purpose-card {
        min-height: auto;
    }

    .value-item {
        grid-template-columns: 42px 1fr;
        padding: 21px 17px;
    }

    .about-statement {
        padding: 75px 0;
    }
}

.about-visual-photo {
    background-image:
        linear-gradient(
            180deg,
            rgba(5, 45, 49, 0) 50%,
            rgba(5, 45, 49, .35) 100%
        ),
        url('../images/about-youngdermis.webp');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.solution-card.has-image {
    min-height: 500px;
    overflow: hidden;
    padding: 0;
}

.solution-card-image {
    position: relative;
    height: 220px;
    flex-shrink: 0;
    overflow: hidden;
    background: var(--primary-light);
}

.solution-card-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .5s ease;
}

.solution-card.has-image:hover .solution-card-image img {
    transform: scale(1.055);
}

.solution-card-image .solution-number {
    z-index: 2;
    top: 16px;
    right: 16px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(5, 45, 49, .82);
    color: white;
    font-size: 11px;
    backdrop-filter: blur(8px);
}

.solution-card-image .solution-icon {
    position: absolute;
    z-index: 3;
    bottom: -27px;
    left: 26px;
    width: 55px;
    height: 55px;
    border: 5px solid white;
    border-radius: 16px;
    background: var(--accent);
    color: var(--primary-deep);
    box-shadow: 0 10px 25px rgba(8, 63, 68, .16);
    font-size: 20px;
}

.solution-card-content {
    display: flex;
    flex: 1;
    align-items: flex-start;
    flex-direction: column;
    padding: 42px 28px 29px;
}

.solution-card.has-image h3 {
    margin: 0 0 12px;
}

.solution-card.has-image p {
    margin: 0 0 24px;
}

.solution-card.has-image a {
    margin-top: auto;
}

@media (max-width: 620px) {
    .solution-card.has-image {
        min-height: 480px;
    }

    .solution-card-image {
        height: 215px;
    }

    .solution-card-content {
        padding: 41px 23px 25px;
    }
}

/* =========================================================
   ABOUT PAGE PHOTO HERO
========================================================= */

.about-photo-hero {
    position: relative;
    min-height: 535px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 90px 0;
    background-color: var(--primary-deep);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    isolation: isolate;
}

.about-photo-hero::before {
    position: absolute;
    z-index: -1;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(3, 38, 42, .96) 0%,
            rgba(3, 38, 42, .88) 30%,
            rgba(3, 38, 42, .63) 52%,
            rgba(3, 38, 42, .15) 76%,
            rgba(3, 38, 42, .02) 100%
        );
    content: "";
}

.about-photo-hero::after {
    position: absolute;
    z-index: -1;
    bottom: -220px;
    left: -160px;
    width: 470px;
    height: 470px;
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 50%;
    content: "";
}


.about-photo-hero .section-eyebrow {
    margin-bottom: 18px;
}

.about-photo-hero h1 {
    max-width: 690px;
    color: white;
    text-shadow: 0 5px 30px rgba(0, 0, 0, .2);
}

.about-photo-hero .inner-hero-content > p {
    max-width: 650px;
    color: rgba(255, 255, 255, .82);
}

.about-photo-hero .breadcrumb {
    color: rgba(255, 255, 255, .68);
}

.about-photo-hero .breadcrumb a {
    color: var(--accent);
}

@media (max-width: 900px) {
    .about-photo-hero {
        min-height: 510px;
        background-position: 62% center;
    }

    .about-photo-hero::before {
        background:
            linear-gradient(
                90deg,
                rgba(3, 38, 42, .96) 0%,
                rgba(3, 38, 42, .84) 54%,
                rgba(3, 38, 42, .42) 100%
            );
    }

    .about-photo-hero h1 {
        max-width: 620px;
    }

    .about-photo-hero .inner-hero-content > p {
        max-width: 570px;
    }
}

@media (max-width: 620px) {
    .about-photo-hero {
        min-height: 570px;
        padding: 75px 0;
        background-position: 67% center;
    }

    .about-photo-hero::before {
        background:
            linear-gradient(.
                90deg,
                rgba(3, 38, 42, .97) 0%,
                rgba(3, 38, 42, .9) 58%,
                rgba(3, 38, 42, .68) 100%
            );
    }

    .about-photo-hero h1 {
        max-width: 100%;
        font-size: 42px;
        line-height: 1.1;
    }

    .about-photo-hero .inner-hero-content > p {
        max-width: 100%;
        font-size: 15px;
        line-height: 1.75;
    }
}

/* Fix About Hero Content Alignment */

.about-photo-hero .inner-hero-content {
    position: relative;
    z-index: 2;
    width: min(var(--container), calc(100% - 40px));
    margin-right: auto;
    margin-left: auto;
}

.about-photo-hero h1 {
    max-width: 720px;
    font-size: clamp(45px, 5vw, 66px);
}

.about-photo-hero .inner-hero-content > p {
    max-width: 650px;
}

@media (max-width: 620px) {
    .about-photo-hero .inner-hero-content {
        width: calc(100% - 30px);
    }

    .about-photo-hero h1 {
        max-width: 100%;
        font-size: 41px;
    }
}

/* =========================================================
   ABOUT PURPOSE SECTION — ICON-FREE PREMIUM DESIGN
========================================================= */

.purpose-pattern-section {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    background:
        radial-gradient(
            circle at 18% 25%,
            rgba(217, 173, 84, .07) 0 2px,
            transparent 3px
        ) 0 0 / 44px 44px,
        radial-gradient(
            circle at 82% 75%,
            rgba(255, 255, 255, .045) 0 2px,
            transparent 3px
        ) 20px 20px / 52px 52px,
        linear-gradient(
            135deg,
            #062f33,
            #083f44
        );
}

.purpose-pattern-section .site-container {
    position: relative;
    z-index: 3;
}

.purpose-pattern-section::before {
    position: absolute;
    z-index: -1;
    top: -280px;
    right: -200px;
    width: 620px;
    height: 620px;
    border: 1px solid rgba(255, 255, 255, .055);
    border-radius: 50%;
    content: "";
}

.purpose-pattern-section::after {
    position: absolute;
    z-index: -1;
    bottom: -320px;
    left: -230px;
    width: 680px;
    height: 680px;
    border: 1px solid rgba(217, 173, 84, .07);
    border-radius: 50%;
    content: "";
}

.purpose-pattern-circle {
    position: absolute;
    z-index: -1;
    border: 1px solid rgba(255, 255, 255, .045);
    border-radius: 50%;
    pointer-events: none;
}

.pattern-circle-one {
    top: -135px;
    right: -55px;
    width: 340px;
    height: 340px;
}

.pattern-circle-two {
    bottom: -150px;
    left: -45px;
    width: 390px;
    height: 390px;
    border-color: rgba(217, 173, 84, .06);
}

.purpose-card-clean {
    position: relative;
    min-height: 345px;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    overflow: hidden;
    padding: 34px;
    background:
        linear-gradient(
            150deg,
            rgba(255, 255, 255, .065),
            rgba(255, 255, 255, .025)
        );
    backdrop-filter: blur(5px);
}

.purpose-card-clean::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 3px;
    background:
        linear-gradient(
            90deg,
            var(--accent),
            rgba(217, 173, 84, 0)
        );
    content: "";
    opacity: .55;
}

.purpose-card-clean .purpose-card-number {
    position: static;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 43px;
    min-height: 29px;
    padding: 5px 10px;
    border: 1px solid rgba(217, 173, 84, .25);
    border-radius: 999px;
    background: rgba(217, 173, 84, .08);
    color: var(--accent);
    font-family: Inter, Arial, sans-serif;
    font-size: 11px;
    font-weight: 850;
    letter-spacing: 1px;
}

.purpose-card-clean h3 {
    margin: 55px 0 14px;
    color: white;
    font-size: 23px;
}

.purpose-card-clean p {
    margin: 0;
    color: rgba(255, 255, 255, .69);
    line-height: 1.85;
}

.purpose-card-clean:hover {
    border-color: rgba(217, 173, 84, .4);
    background:
        linear-gradient(
            150deg,
            rgba(217, 173, 84, .12),
            rgba(255, 255, 255, .035)
        );
    box-shadow: 0 25px 55px rgba(0, 0, 0, .15);
    transform: translateY(-6px);
    transition: .25s ease;
}

.purpose-card-clean.purpose-card-featured {
    border-color: rgba(217, 173, 84, .5);
    background:
        linear-gradient(
            150deg,
            rgba(217, 173, 84, .14),
            rgba(255, 255, 255, .035)
        );
}

@media (max-width: 900px) {
    .purpose-card-clean {
        min-height: 300px;
    }

    .purpose-card-clean h3 {
        margin-top: 38px;
    }
}

@media (max-width: 620px) {
    .purpose-card-clean {
        min-height: auto;
        padding: 29px 24px;
    }

    .purpose-card-clean h3 {
        margin-top: 34px;
    }
}

/* =========================================================
   PRODUCTS PAGE
========================================================= */

.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip: rect(1px, 1px, 1px, 1px) !important;
    white-space: nowrap !important;
}

.products-photo-hero {
    position: relative;
    min-height: 535px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 90px 0;
    background-color: var(--primary-deep);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    isolation: isolate;
}

.products-photo-hero::before {
    position: absolute;
    z-index: -1;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(3, 38, 42, .97) 0%,
            rgba(3, 38, 42, .88) 32%,
            rgba(3, 38, 42, .58) 54%,
            rgba(3, 38, 42, .1) 79%,
            transparent 100%
        );
    content: "";
}

.products-hero-content {
    position: relative;
    z-index: 2;
}

.products-hero-content h1 {
    max-width: 710px;
    margin: 0;
    color: white;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(46px, 5vw, 67px);
    font-weight: 500;
    line-height: 1.08;
    letter-spacing: -1.5px;
}

.products-hero-content > p {
    max-width: 650px;
    margin: 23px 0 0;
    color: rgba(255, 255, 255, .82);
    font-size: 17px;
    line-height: 1.8;
}

.products-hero-content .breadcrumb {
    color: rgba(255, 255, 255, .66);
}

.products-introduction {
    padding: 95px 0;
    background: white;
}

.products-introduction-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 85px;
    align-items: start;
}

.products-introduction h2,
.products-catalog-heading h2,
.product-inquiry-inner h2 {
    margin: 0;
    color: var(--primary-dark);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(35px, 4vw, 51px);
    font-weight: 500;
    line-height: 1.14;
}

.products-introduction-grid > div:last-child p {
    margin: 0 0 17px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.8;
}

.product-focus-section {
    background: var(--accent);
    color: var(--primary-deep);
}

.product-focus-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.product-focus-grid article {
    min-height: 170px;
    padding: 32px;
    border-right: 1px solid rgba(6, 47, 51, .17);
}

.product-focus-grid article:last-child {
    border-right: 0;
}

.product-focus-grid span {
    font-family: Georgia, serif;
    font-size: 20px;
    opacity: .55;
}

.product-focus-grid h3 {
    margin: 14px 0 8px;
    font-size: 18px;
}

.product-focus-grid p {
    margin: 0;
    font-size: 13px;
    line-height: 1.7;
}

.products-catalog-section {
    padding: 100px 0;
    background: var(--background);
}

.products-catalog-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 30px;
}

.products-catalog-heading > p {
    max-width: 410px;
    margin: 0;
    color: var(--muted);
}

.product-search-form {
    margin-bottom: 22px;
}

.product-search-field {
    max-width: 680px;
    display: flex;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: white;
    box-shadow: 0 12px 35px rgba(8, 63, 68, .05);
}

.product-search-field input {
    min-width: 0;
    min-height: 54px;
    flex: 1;
    padding: 13px 17px;
    border: 0;
    outline: none;
    color: var(--text);
    background: transparent;
}

.product-search-field button {
    min-width: 115px;
    border: 0;
    background: var(--primary);
    color: white;
    cursor: pointer;
    font-weight: 800;
}

.product-search-field button:hover {
    background: var(--primary-dark);
}

.product-category-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-bottom: 38px;
}

.product-category-filter a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: white;
    color: var(--primary-dark);
    font-size: 12px;
    font-weight: 750;
    text-decoration: none;
}

.product-category-filter a span {
    min-width: 22px;
    height: 22px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--primary-light);
    font-size: 9px;
}

.product-category-filter a:hover,
.product-category-filter a.active {
    border-color: var(--primary);
    background: var(--primary);
    color: white;
}

.product-category-filter a.active span {
    background: rgba(255, 255, 255, .15);
}

.product-results-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.product-results-bar p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
}

.product-results-bar a {
    color: var(--primary);
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
}

.product-page-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 23px;
}

.product-page-card {
    overflow: hidden;
    background: white;
    border: 1px solid var(--border);
    border-radius: 17px;
    box-shadow: 0 12px 35px rgba(8, 63, 68, .045);
    transition: .25s ease;
}

.product-page-card:hover {
    border-color: rgba(21, 94, 99, .32);
    box-shadow: var(--shadow);
    transform: translateY(-6px);
}

.product-card-media {
    position: relative;
    height: 275px;
    display: block;
    overflow: hidden;
    background:
        linear-gradient(
            135deg,
            #edf6f5,
            #d4e9e7
        );
}

.product-card-media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .5s ease;
}

.product-page-card:hover .product-card-media img {
    transform: scale(1.055);
}

.product-image-placeholder {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    background:
        radial-gradient(
            circle at center,
            rgba(217, 173, 84, .25),
            transparent 25%
        ),
        linear-gradient(
            135deg,
            #edf6f5,
            #bfdedb
        );
}

.product-image-placeholder span {
    width: 82px;
    height: 82px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(21, 94, 99, .25);
    border-radius: 50%;
    color: var(--primary);
    font-size: 22px;
    font-weight: 900;
}

.featured-product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 7px 11px;
    border-radius: 999px;
    background: var(--accent);
    color: var(--primary-deep);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .7px;
    text-transform: uppercase;
}

.product-card-information {
    padding: 25px;
}

.product-category-name {
    color: var(--accent-dark);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.product-card-information h3 {
    margin: 8px 0 5px;
    color: var(--primary-dark);
    font-size: 23px;
    line-height: 1.25;
}

.product-card-information h3 a {
    text-decoration: none;
}

.product-generic-name {
    margin: 0 0 13px;
    color: var(--muted);
    font-size: 12px;
    font-style: italic;
}

.product-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 15px;
}

.product-meta span {
    padding: 5px 8px;
    border-radius: 6px;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 9px;
    font-weight: 800;
}

.product-description {
    margin: 0 0 21px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.75;
}

.product-details-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-size: 12px;
    font-weight: 850;
    text-decoration: none;
}

.product-empty-state {
    padding: 70px 25px;
    border: 1px dashed rgba(21, 94, 99, .3);
    border-radius: 17px;
    background: white;
    text-align: center;
}

.product-empty-mark {
    width: 72px;
    height: 72px;
    display: grid;
    place-items: center;
    margin: 0 auto 22px;
    border-radius: 50%;
    background: var(--primary-light);
    color: var(--primary);
    font-weight: 900;
}

.product-empty-state h3 {
    margin: 0;
    color: var(--primary-dark);
    font-size: 24px;
}

.product-empty-state p {
    max-width: 560px;
    margin: 12px auto 24px;
    color: var(--muted);
}

.product-primary-button {
    background: var(--primary);
    color: white;
}

.product-primary-button:hover {
    background: var(--primary-dark);
}

.product-inquiry-cta {
    padding: 80px 0;
    background:
        linear-gradient(
            110deg,
            var(--primary),
            var(--primary-dark)
        );
    color: white;
}

.product-inquiry-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.product-inquiry-inner > div {
    max-width: 760px;
}

.product-inquiry-inner h2 {
    color: white;
}

.product-inquiry-inner p {
    margin: 17px 0 0;
    color: rgba(255, 255, 255, .7);
}

@media (max-width: 950px) {
    .products-introduction-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .product-page-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 820px) {
    .products-photo-hero {
        background-position: 63% center;
    }

    .products-photo-hero::before {
        background:
            linear-gradient(
                90deg,
                rgba(3, 38, 42, .97) 0%,
                rgba(3, 38, 42, .84) 55%,
                rgba(3, 38, 42, .4) 100%
            );
    }

    .product-focus-grid {
        grid-template-columns: 1fr;
    }

    .product-focus-grid article {
        min-height: auto;
        border-right: 0;
        border-bottom: 1px solid rgba(6, 47, 51, .17);
    }

    .product-focus-grid article:last-child {
        border-bottom: 0;
    }

    .products-catalog-heading,
    .product-inquiry-inner {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 620px) {
    .products-photo-hero {
        min-height: 570px;
        padding: 75px 0;
        background-position: 68% center;
    }

    .products-photo-hero::before {
        background:
            linear-gradient(
                90deg,
                rgba(3, 38, 42, .98) 0%,
                rgba(3, 38, 42, .92) 62%,
                rgba(3, 38, 42, .67) 100%
            );
    }

    .products-hero-content h1 {
        font-size: 42px;
    }

    .products-hero-content > p {
        font-size: 15px;
    }

    .products-introduction,
    .products-catalog-section {
        padding: 75px 0;
    }

    .product-search-field {
        flex-direction: column;
        border-radius: 11px;
    }

    .product-search-field button {
        min-height: 48px;
    }

    .product-page-grid {
        grid-template-columns: 1fr;
    }

    .product-card-media {
        height: 250px;
    }

    .product-results-bar {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }
}

/* =========================================================
   PRODUCT DETAILS PAGE
========================================================= */

.product-not-found-hero {
    min-height: 520px;
    display: flex;
    align-items: center;
    padding: 90px 0;
    background:
        radial-gradient(
            circle at 80% 40%,
            rgba(217, 173, 84, .2),
            transparent 23%
        ),
        linear-gradient(
            120deg,
            var(--primary-deep),
            var(--primary)
        );
    color: white;
}

.product-not-found-hero h1 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(45px, 5vw, 68px);
    font-weight: 500;
}

.product-not-found-hero p {
    max-width: 650px;
    margin: 20px 0 28px;
    color: rgba(255, 255, 255, .75);
}

.product-detail-hero {
    position: relative;
    overflow: hidden;
    padding: 45px 0 90px;
    background:
        linear-gradient(
            120deg,
            var(--primary-deep),
            var(--primary)
        );
    color: white;
}

.product-detail-pattern {
    position: absolute;
    top: -280px;
    right: -150px;
    width: 680px;
    height: 680px;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 50%;
}

.product-detail-pattern::before,
.product-detail-pattern::after {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, .065);
    border-radius: 50%;
    content: "";
}

.product-detail-pattern::before {
    inset: 80px;
}

.product-detail-pattern::after {
    inset: 170px;
}

.product-detail-hero-inner {
    position: relative;
    z-index: 2;
}

.product-detail-breadcrumb {
    margin: 0 0 50px;
}

.product-detail-hero-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    align-items: center;
    gap: 80px;
}

.product-detail-category {
    display: inline-flex;
    margin-bottom: 17px;
    color: var(--accent);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1.6px;
    text-transform: uppercase;
}

.product-detail-content h1 {
    margin: 0;
    color: white;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(48px, 5vw, 72px);
    font-weight: 500;
    line-height: 1.06;
}

.product-detail-generic {
    margin: 13px 0 0;
    color: rgba(255, 255, 255, .7);
    font-size: 19px;
    font-style: italic;
}

.product-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 27px;
}

.product-detail-meta > span {
    min-width: 135px;
    padding: 13px 16px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 10px;
    background: rgba(255, 255, 255, .07);
}

.product-detail-meta small,
.product-detail-meta strong {
    display: block;
}

.product-detail-meta small {
    color: rgba(255, 255, 255, .5);
    font-size: 9px;
    letter-spacing: .8px;
    text-transform: uppercase;
}

.product-detail-meta strong {
    margin-top: 4px;
    color: white;
    font-size: 13px;
}

.product-detail-summary {
    max-width: 650px;
    margin: 26px 0 0;
    color: rgba(255, 255, 255, .78);
    font-size: 16px;
    line-height: 1.8;
}

.product-detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 11px;
    margin-top: 31px;
}

.product-detail-image {
    position: relative;
    min-height: 520px;
    display: grid;
    place-items: center;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .17);
    border-radius: 180px 180px 20px 20px;
    background: white;
    box-shadow: 0 35px 80px rgba(0, 0, 0, .23);
}

.product-detail-image img {
    width: 100%;
    height: 100%;
    min-height: 520px;
    display: block;
    object-fit: cover;
}

.product-detail-placeholder {
    width: 100%;
    height: 100%;
    min-height: 520px;
    display: grid;
    place-items: center;
    align-content: center;
    padding: 30px;
    background:
        radial-gradient(
            circle at center,
            rgba(217, 173, 84, .28),
            transparent 24%
        ),
        linear-gradient(
            145deg,
            #edf6f5,
            #bddbd8
        );
    color: var(--primary);
    text-align: center;
}

.product-detail-placeholder span {
    width: 100px;
    height: 100px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(21, 94, 99, .25);
    border-radius: 50%;
    font-size: 29px;
    font-weight: 900;
}

.product-detail-placeholder strong {
    margin-top: 18px;
    color: var(--primary-dark);
}

.product-detail-featured {
    position: absolute;
    top: 22px;
    right: 22px;
    padding: 8px 12px;
    border-radius: 999px;
    background: var(--accent);
    color: var(--primary-deep);
    font-size: 9px;
    font-weight: 900;
    text-transform: uppercase;
}

.product-information-section {
    padding: 100px 0;
    background: white;
}

.product-information-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(290px, .6fr);
    gap: 75px;
    align-items: start;
}

.product-overview h2 {
    margin: 0 0 25px;
    color: var(--primary-dark);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(35px, 4vw, 50px);
    font-weight: 500;
    line-height: 1.15;
}

.product-rich-content {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.9;
}

.product-rich-content p {
    margin: 0 0 18px;
}

.product-information-sidebar {
    position: sticky;
    top: 120px;
    padding: 28px;
    border: 1px solid var(--border);
    border-top: 4px solid var(--accent);
    border-radius: 14px;
    background: var(--background);
}

.product-information-sidebar h3 {
    margin: 0 0 20px;
    color: var(--primary-dark);
    font-size: 19px;
}

.product-information-sidebar dl {
    margin: 0;
}

.product-information-sidebar dl > div {
    padding: 13px 0;
    border-bottom: 1px solid var(--border);
}

.product-information-sidebar dt {
    color: var(--muted);
    font-size: 9px;
    font-weight: 850;
    letter-spacing: .8px;
    text-transform: uppercase;
}

.product-information-sidebar dd {
    margin: 4px 0 0;
    color: var(--primary-dark);
    font-size: 13px;
    font-weight: 750;
}

.product-sidebar-contact {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 21px;
    color: var(--primary);
    font-size: 12px;
    font-weight: 850;
    text-decoration: none;
}

.product-safety-section {
    padding: 85px 0;
    background: var(--background);
}

.product-safety-card {
    padding: 43px;
    border: 1px solid #ead6ac;
    border-left: 5px solid var(--accent);
    border-radius: 15px;
    background: white;
}

.product-safety-label {
    color: var(--accent-dark);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1.3px;
}

.product-safety-card h2 {
    margin: 11px 0 20px;
    color: var(--primary-dark);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 34px;
    font-weight: 500;
}

.product-safety-content {
    color: var(--muted);
    line-height: 1.85;
}

.product-safety-card > a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
    color: var(--primary);
    font-size: 12px;
    font-weight: 850;
    text-decoration: none;
}

.product-medical-notice {
    padding: 28px 0;
    background: var(--primary-light);
}

.product-medical-notice-inner {
    display: grid;
    grid-template-columns: 210px 1fr;
    gap: 30px;
    align-items: start;
}

.product-medical-notice strong {
    color: var(--primary-dark);
    font-size: 13px;
}

.product-medical-notice p {
    margin: 0;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.75;
}

.related-products-section {
    padding: 100px 0;
    background: white;
}

.related-product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 23px;
}

.related-product-card {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: white;
    transition: .25s ease;
}

.related-product-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-5px);
}

.related-product-image {
    height: 230px;
    display: grid;
    place-items: center;
    overflow: hidden;
    background:
        linear-gradient(
            145deg,
            #edf6f5,
            #c7e1df
        );
    color: var(--primary);
    font-size: 25px;
    font-weight: 900;
    text-decoration: none;
}

.related-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease;
}

.related-product-card:hover img {
    transform: scale(1.05);
}

.related-product-content {
    padding: 23px;
}

.related-product-content small {
    color: var(--accent-dark);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.related-product-content h3 {
    margin: 7px 0;
    color: var(--primary-dark);
    font-size: 20px;
}

.related-product-content h3 a {
    text-decoration: none;
}

.related-product-content p {
    margin: 0 0 17px;
    color: var(--muted);
    font-size: 12px;
    font-style: italic;
}

.related-product-link {
    color: var(--primary);
    font-size: 11px;
    font-weight: 850;
    text-decoration: none;
}

.product-detail-cta {
    padding: 80px 0;
    background:
        linear-gradient(
            110deg,
            var(--primary),
            var(--primary-dark)
        );
    color: white;
}

.product-detail-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 55px;
}

.product-detail-cta h2 {
    margin: 0;
    color: white;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(34px, 4vw, 49px);
    font-weight: 500;
}

.product-detail-cta p {
    margin: 16px 0 0;
    color: rgba(255, 255, 255, .7);
}

@media (max-width: 900px) {
    .product-detail-hero-grid,
    .product-information-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .product-information-sidebar {
        position: static;
    }

    .related-product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 720px) {
    .product-detail-hero {
        padding-bottom: 70px;
    }

    .product-detail-breadcrumb {
        margin-bottom: 35px;
    }

    .product-detail-content h1 {
        font-size: 45px;
    }

    .product-detail-image,
    .product-detail-image img,
    .product-detail-placeholder {
        min-height: 430px;
    }

    .product-detail-image {
        border-radius: 120px 120px 18px 18px;
    }

    .product-information-section,
    .related-products-section {
        padding: 75px 0;
    }

    .product-medical-notice-inner {
        grid-template-columns: 1fr;
        gap: 9px;
    }

    .related-product-grid {
        grid-template-columns: 1fr;
    }

    .product-detail-cta-inner {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 520px) {
    .product-detail-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .product-detail-actions .site-button {
        width: 100%;
    }

    .product-safety-card {
        padding: 29px 22px;
    }

    .product-safety-card h2 {
        font-size: 29px;
    }
}

/* =========================================================
   YOUNGDERMIS — CONDITIONS LISTING + DETAILS
   Add this entire block at the END of assets/css/style.css
   ========================================================= */

.conditions-hero,
.condition-detail-hero {
    --condition-teal: #04383b;
    --condition-teal-soft: #0d5155;
    --condition-gold: #e4ae47;
    --condition-cream: #f7f5ee;
    position: relative;
    overflow: hidden;
    color: #fff;
    background: var(--condition-teal);
}

.conditions-hero {
    min-height: 520px;
    display: grid;
    align-items: center;
    padding: 100px 0;
    isolation: isolate;
}

.conditions-hero.has-image::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    background-image:
        linear-gradient(90deg, rgba(2, 47, 50, .98) 0%, rgba(2, 47, 50, .91) 46%, rgba(2, 47, 50, .38) 75%, rgba(2, 47, 50, .18) 100%),
        var(--conditions-hero-image);
    background-position: center, center;
    background-size: cover;
}

.conditions-hero::after {
    content: "";
    position: absolute;
    width: 390px;
    height: 390px;
    left: -120px;
    bottom: -245px;
    z-index: -1;
    border: 1px solid rgba(228, 174, 71, .24);
    border-radius: 50%;
}

.conditions-hero-shape {
    position: absolute;
    top: -100px;
    right: 8%;
    width: 260px;
    height: 260px;
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: 50%;
    pointer-events: none;
}

.conditions-hero .container,
.condition-library .container,
.conditions-help .container,
.condition-detail-hero .container,
.condition-detail-content .container,
.condition-back-link .container,
.condition-not-found .container {
    width: min(1180px, calc(100% - 40px));
    margin-inline: auto;
}

.conditions-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
    gap: clamp(48px, 8vw, 110px);
    align-items: end;
}

.conditions-hero-copy {
    max-width: 760px;
}

.conditions-hero-copy h1,
.condition-detail-copy h1 {
    margin: 16px 0 22px;
    color: #fff;
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 400;
    letter-spacing: -.045em;
    line-height: .98;
}

.conditions-hero-copy h1 {
    font-size: clamp(3.1rem, 6vw, 5.8rem);
}

.conditions-hero-copy > p {
    max-width: 690px;
    margin: 0;
    color: rgba(255, 255, 255, .82);
    font-size: 1.08rem;
    line-height: 1.85;
}

.eyebrow {
    display: inline-block;
    color: #17656a;
    font-size: .76rem;
    font-weight: 800;
    letter-spacing: .18em;
    line-height: 1.4;
    text-transform: uppercase;
}

.eyebrow-gold {
    color: var(--condition-gold, #e4ae47);
}

.conditions-hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 25px;
    margin-top: 32px;
}

.btn-gold {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    padding: 13px 24px;
    border: 1px solid #e4ae47;
    border-radius: 8px;
    color: #052f32;
    background: #e4ae47;
    font-weight: 800;
    text-decoration: none;
    transition: transform .2s ease, background-color .2s ease;
}

.btn-gold:hover {
    color: #052f32;
    background: #f0c468;
    transform: translateY(-2px);
}

.text-link-light {
    color: #fff;
    font-weight: 800;
    text-decoration: none;
}

.text-link-light:hover {
    color: #e4ae47;
}

.conditions-hero-note {
    position: relative;
    max-width: 390px;
    padding: 34px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 18px;
    background: rgba(8, 72, 76, .72);
    backdrop-filter: blur(10px);
}

.conditions-note-number {
    position: absolute;
    top: 22px;
    right: 25px;
    color: rgba(255, 255, 255, .42);
    font-family: Georgia, serif;
    font-size: 1.15rem;
}

.conditions-hero-note h2 {
    max-width: 250px;
    margin: 44px 0 14px;
    color: #fff;
    font-size: 1.55rem;
}

.conditions-hero-note p {
    margin: 0;
    color: rgba(255, 255, 255, .75);
    line-height: 1.75;
}

.condition-library {
    padding: 90px 0 110px;
    background: #f6f8f6;
}

.condition-search-panel {
    display: grid;
    grid-template-columns: 1fr minmax(300px, 480px);
    gap: 40px;
    align-items: end;
    margin-bottom: 28px;
}

.condition-search-panel h2,
.conditions-help h2,
.condition-article h2 {
    margin: 10px 0 0;
    color: #07383b;
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 400;
    letter-spacing: -.03em;
}

.condition-search-panel h2 {
    font-size: clamp(2.2rem, 4vw, 3.7rem);
}

.condition-search {
    display: flex;
    min-height: 58px;
    align-items: center;
    gap: 12px;
    padding: 0 20px;
    border: 1px solid #cbdada;
    border-radius: 10px;
    color: #376568;
    background: #fff;
    box-shadow: 0 12px 35px rgba(6, 54, 57, .07);
}

.condition-search:focus-within {
    border-color: #0c666b;
    box-shadow: 0 0 0 4px rgba(12, 102, 107, .10);
}

.condition-search input {
    width: 100%;
    border: 0;
    outline: 0;
    color: #153f42;
    background: transparent;
    font: inherit;
}

.condition-search input::placeholder {
    color: #799093;
}

.condition-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
    padding-top: 22px;
    border-top: 1px solid #d9e2e1;
    color: #60777a;
}

.condition-toolbar p {
    margin: 0;
}

.condition-clear {
    padding: 0;
    border: 0;
    color: #0b6469;
    background: none;
    font: inherit;
    font-weight: 800;
    cursor: pointer;
}

.condition-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.condition-card {
    overflow: hidden;
    border: 1px solid #d7e2e1;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 8px 28px rgba(4, 56, 59, .05);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.condition-card:hover {
    border-color: rgba(228, 174, 71, .7);
    box-shadow: 0 18px 45px rgba(4, 56, 59, .11);
    transform: translateY(-6px);
}

.condition-card[hidden] {
    display: none !important;
}

.condition-card-media {
    position: relative;
    display: block;
    min-height: 220px;
    overflow: hidden;
    background:
        radial-gradient(circle at 78% 24%, rgba(228, 174, 71, .24), transparent 24%),
        linear-gradient(135deg, #dfeceb, #a9c8c5);
}

.condition-card-media img {
    display: block;
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform .5s ease;
}

.condition-card:hover .condition-card-media img {
    transform: scale(1.045);
}

.condition-card-placeholder {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: rgba(4, 56, 59, .72);
    font-family: Georgia, serif;
    font-size: 5.5rem;
}

.condition-card-placeholder::before {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    border: 1px solid rgba(4, 56, 59, .16);
    border-radius: 50%;
}

.condition-card-index {
    position: absolute;
    top: 17px;
    right: 17px;
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border-radius: 50%;
    color: #052f32;
    background: #e4ae47;
    font-size: .83rem;
    font-weight: 900;
}

.condition-card-body {
    display: flex;
    min-height: 265px;
    flex-direction: column;
    padding: 28px;
}

.condition-card-body h3 {
    margin: 0 0 13px;
    color: #07383b;
    font-size: 1.45rem;
}

.condition-card-body h3 a {
    color: inherit;
    text-decoration: none;
}

.condition-card-body p {
    margin: 0 0 24px;
    color: #65797b;
    line-height: 1.72;
}

.condition-card-link {
    margin-top: auto;
    color: #0a6065;
    font-weight: 900;
    text-decoration: none;
}

.condition-card-link span {
    display: inline-block;
    margin-left: 4px;
    transition: transform .2s ease;
}

.condition-card-link:hover span {
    transform: translateX(4px);
}

.condition-empty {
    padding: 65px 25px;
    border: 1px dashed #b7cdcb;
    border-radius: 16px;
    text-align: center;
    background: #fff;
}

.condition-empty h3 {
    margin: 0 0 8px;
    color: #07383b;
}

.condition-empty p {
    margin: 0;
    color: #6b7f81;
}

.conditions-help {
    padding: 90px 0;
    color: #fff;
    background: #07383b;
}

.conditions-help-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(45px, 9vw, 120px);
    align-items: center;
}

.conditions-help h2 {
    color: #fff;
    font-size: clamp(2.3rem, 4.5vw, 4.25rem);
    line-height: 1.05;
}

.conditions-help p {
    margin: 0 0 25px;
    color: rgba(255, 255, 255, .76);
    line-height: 1.8;
}

/* Condition detail page */
.condition-detail-hero {
    padding: 80px 0;
}

.condition-detail-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(330px, .95fr);
    gap: clamp(45px, 8vw, 100px);
    align-items: center;
}

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-bottom: 58px;
    color: rgba(255, 255, 255, .6);
    font-size: .86rem;
}

.breadcrumbs a {
    color: rgba(255, 255, 255, .82);
    text-decoration: none;
}

.breadcrumbs a:hover {
    color: #e4ae47;
}

.condition-detail-copy h1 {
    font-size: clamp(3.25rem, 6vw, 5.8rem);
}

.condition-detail-copy > p {
    max-width: 650px;
    margin: 0;
    color: rgba(255, 255, 255, .78);
    font-size: 1.08rem;
    line-height: 1.8;
}

.condition-detail-media {
    overflow: hidden;
    min-height: 470px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 20px;
    background: #dce9e7;
}

.condition-detail-media img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 470px;
    object-fit: cover;
}

.condition-detail-placeholder {
    position: relative;
    display: grid;
    min-height: 470px;
    place-items: center;
    overflow: hidden;
    background:
        radial-gradient(circle at 25% 25%, rgba(228, 174, 71, .32), transparent 20%),
        linear-gradient(140deg, #c8dcda, #86adaa);
}

.condition-detail-placeholder::before,
.condition-detail-placeholder::after {
    content: "";
    position: absolute;
    width: 330px;
    height: 330px;
    border: 1px solid rgba(7, 56, 59, .15);
    border-radius: 50%;
}

.condition-detail-placeholder::after {
    width: 230px;
    height: 230px;
}

.condition-detail-placeholder span {
    position: relative;
    z-index: 1;
    color: rgba(7, 56, 59, .75);
    font-family: Georgia, serif;
    font-size: 9rem;
}

.condition-detail-content {
    padding: 95px 0 110px;
    background: #fff;
}

.condition-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: clamp(50px, 8vw, 105px);
    align-items: start;
}

.condition-article > section {
    padding: 0 0 58px;
    margin-bottom: 58px;
    border-bottom: 1px solid #dfe7e6;
    scroll-margin-top: 120px;
}

.condition-article h2 {
    margin: 9px 0 22px;
    font-size: clamp(2rem, 3.5vw, 3.15rem);
}

.condition-article p,
.condition-fact-list {
    color: #5e7375;
    font-size: 1.04rem;
    line-height: 1.85;
}

.condition-fact-list {
    display: grid;
    gap: 14px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.condition-fact-list li {
    position: relative;
    padding: 14px 18px 14px 49px;
    border-radius: 9px;
    background: #f3f7f6;
}

.condition-fact-list li::before {
    content: "";
    position: absolute;
    top: 23px;
    left: 20px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #e4ae47;
    box-shadow: 0 0 0 5px rgba(228, 174, 71, .18);
}

.medical-notice {
    padding: 25px 28px;
    border-left: 4px solid #e4ae47;
    border-radius: 0 10px 10px 0;
    background: #f8f4e9;
}

.medical-notice strong {
    color: #07383b;
}

.medical-notice p {
    margin: 7px 0 0;
    font-size: .96rem;
}

.condition-sidebar {
    position: sticky;
    top: 120px;
    display: grid;
    gap: 20px;
}

.condition-sidebar-card,
.condition-sidebar-cta {
    padding: 28px;
    border-radius: 14px;
}

.condition-sidebar-card {
    border: 1px solid #d8e3e2;
    background: #f6f8f7;
}

.condition-sidebar-card nav {
    display: grid;
    margin-top: 16px;
}

.condition-sidebar-card nav a {
    padding: 12px 0;
    border-bottom: 1px solid #dce5e4;
    color: #315d60;
    font-weight: 700;
    text-decoration: none;
}

.condition-sidebar-card nav a:last-child {
    border-bottom: 0;
}

.condition-sidebar-card nav a:hover {
    color: #b17610;
}

.condition-sidebar-cta {
    color: #fff;
    background: #07383b;
}

.condition-sidebar-cta h2 {
    margin: 0 0 10px;
    color: #fff;
    font-size: 1.5rem;
}

.condition-sidebar-cta p {
    margin: 0 0 22px;
    color: rgba(255, 255, 255, .72);
    line-height: 1.7;
}

.condition-back-link {
    padding: 24px 0;
    border-top: 1px solid #dce6e5;
    background: #f6f8f7;
}

.condition-back-link a {
    color: #0a6065;
    font-weight: 900;
    text-decoration: none;
}

.condition-not-found {
    min-height: 60vh;
    display: grid;
    place-items: center;
    padding: 100px 0;
    text-align: center;
    background: #f6f8f7;
}

.condition-not-found h1 {
    margin: 10px 0;
    color: #07383b;
    font-family: Georgia, serif;
    font-size: clamp(2.6rem, 6vw, 5rem);
    font-weight: 400;
}

.condition-not-found p {
    margin: 0 0 25px;
    color: #63797b;
}

.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

@media (max-width: 980px) {
    .conditions-hero-grid,
    .condition-detail-hero-grid,
    .condition-detail-layout {
        grid-template-columns: 1fr;
    }

    .conditions-hero-note {
        max-width: 620px;
    }

    .condition-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .condition-detail-media {
        min-height: 390px;
    }

    .condition-detail-media img,
    .condition-detail-placeholder {
        min-height: 390px;
        max-height: 520px;
    }

    .condition-sidebar {
        position: static;
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 700px) {
    .conditions-hero {
        min-height: auto;
        padding: 75px 0;
    }

    .conditions-hero.has-image::before {
        background-image:
            linear-gradient(rgba(2, 47, 50, .91), rgba(2, 47, 50, .96)),
            var(--conditions-hero-image);
        background-position: center;
    }

    .conditions-hero-grid {
        gap: 38px;
    }

    .conditions-hero-copy h1 {
        font-size: clamp(2.7rem, 13vw, 4.2rem);
    }

    .conditions-hero-note {
        padding: 26px;
    }

    .condition-library,
    .condition-detail-content {
        padding: 70px 0;
    }

    .condition-search-panel,
    .conditions-help-grid,
    .condition-sidebar {
        grid-template-columns: 1fr;
    }

    .condition-search-panel {
        gap: 25px;
    }

    .condition-grid {
        grid-template-columns: 1fr;
    }

    .condition-card-body {
        min-height: auto;
    }

    .conditions-help {
        padding: 70px 0;
    }

    .condition-detail-hero {
        padding: 55px 0;
    }

    .breadcrumbs {
        margin-bottom: 38px;
    }

    .condition-detail-media,
    .condition-detail-media img,
    .condition-detail-placeholder {
        min-height: 330px;
    }
}
/* =========================================================
   YOUNGDERMIS — RESOURCES LISTING + DETAILS
   Paste this block at the END of assets/css/style.css
   ========================================================= */

.resources-hero,
.resource-detail-hero {
    --resource-teal: #04383b;
    --resource-teal-soft: #0b5559;
    --resource-gold: #e4ae47;
    position: relative;
    overflow: hidden;
    color: #fff;
    background: var(--resource-teal);
}

.resources-hero .container,
.resource-library .container,
.resource-trust-section .container,
.resource-detail-hero .container,
.resource-detail-content .container,
.related-resources .container,
.resource-back-link .container,
.resource-not-found .container {
    width: min(1180px, calc(100% - 40px));
    margin-inline: auto;
}

.resources-hero {
    min-height: 540px;
    display: grid;
    align-items: center;
    padding: 100px 0;
    isolation: isolate;
}

.resources-hero.has-image::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    background-image:
        linear-gradient(90deg, rgba(2, 47, 50, .98), rgba(2, 47, 50, .90) 48%, rgba(2, 47, 50, .30)),
        var(--resources-hero-image);
    background-position: center;
    background-size: cover;
}

.resources-hero::after {
    content: "";
    position: absolute;
    bottom: -250px;
    left: -120px;
    z-index: -1;
    width: 430px;
    height: 430px;
    border: 1px solid rgba(228, 174, 71, .24);
    border-radius: 50%;
}

.resources-hero-orbit {
    position: absolute;
    top: -115px;
    right: 4%;
    width: 300px;
    height: 300px;
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: 50%;
    pointer-events: none;
}

.resources-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(300px, .65fr);
    gap: clamp(50px, 8vw, 110px);
    align-items: end;
}

.resources-hero-copy h1,
.resource-detail-copy h1 {
    margin: 16px 0 23px;
    color: #fff;
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 400;
    letter-spacing: -.045em;
    line-height: 1;
}

.resources-hero-copy h1 {
    font-size: clamp(3rem, 5.6vw, 5.5rem);
}

.resources-hero-copy > p {
    max-width: 700px;
    margin: 0;
    color: rgba(255, 255, 255, .80);
    font-size: 1.08rem;
    line-height: 1.82;
}

.resources-hero-actions,
.resource-detail-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 25px;
    margin-top: 32px;
}

.resource-light-link,
.resource-external-link {
    color: #fff;
    font-weight: 800;
    text-decoration: none;
}

.resource-light-link:hover,
.resource-external-link:hover {
    color: #e4ae47;
}

.resources-hero-card {
    position: relative;
    padding: 34px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 18px;
    background: rgba(9, 74, 78, .72);
    backdrop-filter: blur(10px);
}

.resources-card-number {
    position: absolute;
    top: 22px;
    right: 24px;
    color: rgba(255, 255, 255, .38);
    font-family: Georgia, serif;
    font-size: 1.15rem;
}

.resources-card-label {
    color: #e4ae47;
    font-size: .74rem;
    font-weight: 900;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.resources-hero-card h2 {
    margin: 44px 0 14px;
    color: #fff;
    font-size: 1.55rem;
    line-height: 1.25;
}

.resources-hero-card p {
    margin: 0;
    color: rgba(255, 255, 255, .72);
    line-height: 1.75;
}

.resource-library {
    padding: 95px 0 110px;
    background: #f5f8f7;
}

.resource-library-heading {
    display: grid;
    grid-template-columns: 1fr minmax(300px, 470px);
    gap: 40px;
    align-items: end;
}

.resource-library-heading h2,
.resource-trust-section h2,
.resource-article h2,
.related-resources-heading h2 {
    margin: 10px 0 0;
    color: #07383b;
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 400;
    letter-spacing: -.03em;
}

.resource-library-heading h2 {
    font-size: clamp(2.2rem, 4vw, 3.7rem);
}

.resource-search {
    display: flex;
    min-height: 58px;
    align-items: center;
    gap: 12px;
    padding: 0 20px;
    border: 1px solid #c9d9d8;
    border-radius: 10px;
    color: #376568;
    background: #fff;
    box-shadow: 0 12px 35px rgba(6, 54, 57, .07);
}

.resource-search:focus-within {
    border-color: #0c666b;
    box-shadow: 0 0 0 4px rgba(12, 102, 107, .10);
}

.resource-search input {
    width: 100%;
    border: 0;
    outline: 0;
    color: #153f42;
    background: transparent;
    font: inherit;
}

.resource-search input::placeholder {
    color: #7b9193;
}

.resource-filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 34px 0 22px;
}

.resource-filter {
    min-height: 43px;
    padding: 9px 17px;
    border: 1px solid #c8d8d7;
    border-radius: 999px;
    color: #315d60;
    background: #fff;
    font: inherit;
    font-size: .9rem;
    font-weight: 800;
    cursor: pointer;
    transition: color .2s ease, background-color .2s ease, border-color .2s ease;
}

.resource-filter:hover,
.resource-filter.is-active {
    border-color: #0a5f64;
    color: #fff;
    background: #0a5f64;
}

.resource-results-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
    padding-top: 21px;
    border-top: 1px solid #d8e3e2;
    color: #627a7c;
}

.resource-results-bar p {
    margin: 0;
}

.resource-reset {
    padding: 0;
    border: 0;
    color: #0b6469;
    background: transparent;
    font: inherit;
    font-weight: 900;
    cursor: pointer;
}

.resource-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.resource-card {
    overflow: hidden;
    border: 1px solid #d5e2e0;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 8px 28px rgba(4, 56, 59, .05);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.resource-card:hover {
    border-color: rgba(228, 174, 71, .75);
    box-shadow: 0 18px 44px rgba(4, 56, 59, .11);
    transform: translateY(-6px);
}

.resource-card[hidden] {
    display: none !important;
}

.resource-card-media {
    position: relative;
    display: block;
    min-height: 215px;
    overflow: hidden;
    background:
        radial-gradient(circle at 76% 24%, rgba(228, 174, 71, .28), transparent 24%),
        linear-gradient(135deg, #dfeceb, #a8c7c4);
}

.resource-card-media img {
    display: block;
    width: 100%;
    height: 215px;
    object-fit: cover;
    transition: transform .5s ease;
}

.resource-card:hover .resource-card-media img {
    transform: scale(1.045);
}

.resource-card-placeholder {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: rgba(4, 56, 59, .72);
    font-family: Georgia, serif;
    font-size: 5.5rem;
}

.resource-card-placeholder::before {
    content: "";
    position: absolute;
    width: 145px;
    height: 145px;
    border: 1px solid rgba(4, 56, 59, .15);
    border-radius: 50%;
}

.resource-card-index {
    position: absolute;
    top: 16px;
    right: 16px;
    display: grid;
    width: 43px;
    height: 43px;
    place-items: center;
    border-radius: 50%;
    color: #052f32;
    background: #e4ae47;
    font-size: .82rem;
    font-weight: 900;
}

.resource-card-body {
    display: flex;
    min-height: 305px;
    flex-direction: column;
    padding: 27px;
}

.resource-type-badge {
    display: inline-flex;
    width: fit-content;
    padding: 6px 10px;
    border-radius: 999px;
    color: #0b6065;
    background: #e8f2f1;
    font-size: .7rem;
    font-weight: 900;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.resource-card-body h3 {
    margin: 18px 0 12px;
    color: #07383b;
    font-size: 1.42rem;
    line-height: 1.25;
}

.resource-card-body h3 a,
.related-resource-card h3 a {
    color: inherit;
    text-decoration: none;
}

.resource-card-body p {
    margin: 0 0 23px;
    color: #667b7d;
    line-height: 1.72;
}

.resource-card-link {
    margin-top: auto;
    color: #0a6065;
    font-weight: 900;
    text-decoration: none;
}

.resource-card-link span {
    display: inline-block;
    transition: transform .2s ease;
}

.resource-card-link:hover span {
    transform: translateX(4px);
}

.resource-empty {
    padding: 65px 25px;
    border: 1px dashed #b6ccca;
    border-radius: 16px;
    text-align: center;
    background: #fff;
}

.resource-empty h3 {
    margin: 0 0 8px;
    color: #07383b;
}

.resource-empty p {
    margin: 0;
    color: #697f81;
}

.resource-trust-section {
    padding: 90px 0;
    color: #fff;
    background: #07383b;
}

.resource-trust-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(45px, 9vw, 120px);
    align-items: center;
}

.resource-trust-section h2 {
    color: #fff;
    font-size: clamp(2.3rem, 4.5vw, 4.2rem);
    line-height: 1.05;
}

.resource-trust-section p {
    margin: 0 0 25px;
    color: rgba(255, 255, 255, .76);
    line-height: 1.82;
}

/* Resource details */
.resource-detail-hero {
    padding: 80px 0;
}

.resource-detail-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(340px, .92fr);
    gap: clamp(48px, 8vw, 100px);
    align-items: center;
}

.resource-breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-bottom: 55px;
    color: rgba(255, 255, 255, .58);
    font-size: .86rem;
}

.resource-breadcrumbs a {
    color: rgba(255, 255, 255, .82);
    text-decoration: none;
}

.resource-breadcrumbs a:hover {
    color: #e4ae47;
}

.resource-type-badge-light {
    color: #f2c363;
    background: rgba(228, 174, 71, .14);
}

.resource-detail-copy h1 {
    font-size: clamp(3rem, 5.5vw, 5.3rem);
}

.resource-detail-copy > p {
    max-width: 660px;
    margin: 0;
    color: rgba(255, 255, 255, .78);
    font-size: 1.08rem;
    line-height: 1.82;
}

.resource-detail-media {
    overflow: hidden;
    min-height: 465px;
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 20px;
    background: #dce9e7;
}

.resource-detail-media img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 465px;
    object-fit: cover;
}

.resource-detail-placeholder {
    position: relative;
    display: grid;
    min-height: 465px;
    place-items: center;
    overflow: hidden;
    background:
        radial-gradient(circle at 24% 24%, rgba(228, 174, 71, .34), transparent 21%),
        linear-gradient(140deg, #c8dcda, #86adaa);
}

.resource-detail-placeholder::before,
.resource-detail-placeholder::after {
    content: "";
    position: absolute;
    width: 330px;
    height: 330px;
    border: 1px solid rgba(7, 56, 59, .15);
    border-radius: 50%;
}

.resource-detail-placeholder::after {
    width: 230px;
    height: 230px;
}

.resource-detail-placeholder span {
    position: relative;
    z-index: 1;
    color: rgba(7, 56, 59, .74);
    font-family: Georgia, serif;
    font-size: 9rem;
}

.resource-detail-content {
    padding: 95px 0 110px;
    background: #fff;
}

.resource-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: clamp(50px, 8vw, 105px);
    align-items: start;
}

.resource-article h2 {
    margin: 10px 0 25px;
    font-size: clamp(2.2rem, 4vw, 3.5rem);
}

.resource-prose {
    color: #5f7476;
    font-size: 1.06rem;
    line-height: 1.9;
}

.resource-medical-notice {
    margin-top: 45px;
    padding: 25px 28px;
    border-left: 4px solid #e4ae47;
    border-radius: 0 10px 10px 0;
    background: #f8f4e9;
}

.resource-medical-notice strong {
    color: #07383b;
}

.resource-medical-notice p {
    margin: 7px 0 0;
    color: #647779;
    line-height: 1.75;
}

.resource-detail-sidebar {
    position: sticky;
    top: 120px;
    display: grid;
    gap: 20px;
}

.resource-detail-panel,
.resource-contact-panel {
    padding: 28px;
    border-radius: 14px;
}

.resource-detail-panel {
    border: 1px solid #d8e3e2;
    background: #f5f8f7;
}

.resource-detail-panel dl {
    margin: 18px 0 25px;
}

.resource-detail-panel dl > div {
    padding: 14px 0;
    border-bottom: 1px solid #dce6e5;
}

.resource-detail-panel dt {
    margin-bottom: 4px;
    color: #789092;
    font-size: .75rem;
    font-weight: 900;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.resource-detail-panel dd {
    margin: 0;
    color: #153f42;
    font-weight: 800;
}

.resource-full-button {
    width: 100%;
    margin-top: 10px;
}

.resource-outline-button {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    border: 1px solid #17656a;
    border-radius: 8px;
    color: #0b6065;
    background: transparent;
    font-weight: 900;
    text-decoration: none;
}

.resource-outline-button:hover {
    color: #fff;
    background: #0b6065;
}

.resource-contact-panel {
    color: #fff;
    background: #07383b;
}

.resource-contact-panel h2 {
    margin: 0 0 10px;
    color: #fff;
    font-size: 1.5rem;
}

.resource-contact-panel p {
    margin: 0 0 18px;
    color: rgba(255, 255, 255, .72);
    line-height: 1.7;
}

.resource-contact-panel a {
    color: #e4ae47;
    font-weight: 900;
    text-decoration: none;
}

.related-resources {
    padding: 90px 0;
    background: #f5f8f7;
}

.related-resources-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 35px;
}

.related-resources-heading h2 {
    font-size: clamp(2.1rem, 4vw, 3.4rem);
}

.related-resources-heading > a {
    color: #0a6065;
    font-weight: 900;
    text-decoration: none;
}

.related-resource-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.related-resource-card {
    display: flex;
    min-height: 270px;
    flex-direction: column;
    padding: 28px;
    border: 1px solid #d7e2e1;
    border-radius: 14px;
    background: #fff;
}

.related-resource-card h3 {
    margin: 18px 0 11px;
    color: #07383b;
    font-size: 1.35rem;
}

.related-resource-card p {
    margin: 0 0 20px;
    color: #687d7f;
    line-height: 1.7;
}

.resource-back-link {
    padding: 24px 0;
    border-top: 1px solid #dce6e5;
    background: #fff;
}

.resource-back-link a {
    color: #0a6065;
    font-weight: 900;
    text-decoration: none;
}

.resource-not-found {
    min-height: 60vh;
    display: grid;
    place-items: center;
    padding: 100px 0;
    text-align: center;
    background: #f5f8f7;
}

.resource-not-found h1 {
    margin: 10px 0;
    color: #07383b;
    font-family: Georgia, serif;
    font-size: clamp(2.6rem, 6vw, 5rem);
    font-weight: 400;
}

.resource-not-found p {
    margin: 0 0 25px;
    color: #657a7c;
}

@media (max-width: 980px) {
    .resources-hero-grid,
    .resource-detail-hero-grid,
    .resource-detail-layout {
        grid-template-columns: 1fr;
    }

    .resources-hero-card {
        max-width: 630px;
    }

    .resource-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .resource-detail-media,
    .resource-detail-media img,
    .resource-detail-placeholder {
        min-height: 390px;
        max-height: 520px;
    }

    .resource-detail-sidebar {
        position: static;
        grid-template-columns: 1fr 1fr;
    }

    .related-resource-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {
    .resources-hero {
        min-height: auto;
        padding: 75px 0;
    }

    .resources-hero.has-image::before {
        background-image:
            linear-gradient(rgba(2, 47, 50, .91), rgba(2, 47, 50, .96)),
            var(--resources-hero-image);
    }

    .resources-hero-copy h1 {
        font-size: clamp(2.65rem, 12vw, 4.1rem);
    }

    .resources-hero-grid {
        gap: 38px;
    }

    .resources-hero-card {
        padding: 26px;
    }

    .resource-library,
    .resource-detail-content,
    .related-resources {
        padding: 70px 0;
    }

    .resource-library-heading,
    .resource-trust-grid,
    .resource-detail-sidebar,
    .related-resource-grid {
        grid-template-columns: 1fr;
    }

    .resource-library-heading {
        gap: 25px;
    }

    .resource-grid {
        grid-template-columns: 1fr;
    }

    .resource-card-body {
        min-height: auto;
    }

    .resource-trust-section {
        padding: 70px 0;
    }

    .resource-detail-hero {
        padding: 55px 0;
    }

    .resource-breadcrumbs {
        margin-bottom: 38px;
    }

    .resource-detail-media,
    .resource-detail-media img,
    .resource-detail-placeholder {
        min-height: 325px;
    }

    .related-resources-heading {
        align-items: start;
        flex-direction: column;
    }
}/* =========================================================
   YOUNGDERMIS — INSIGHTS LISTING + ARTICLE DETAILS
   Paste this block at the END of assets/css/style.css
   ========================================================= */

.insights-hero,
.article-detail-header {
    --insight-teal: #04383b;
    --insight-gold: #e4ae47;
    position: relative;
    overflow: hidden;
    color: #fff;
    background: var(--insight-teal);
}

.insights-page-content .container,
.article-page-content .container,
.article-not-found .container {
    width: min(1180px, calc(100% - 40px));
    margin-inline: auto;
}

.insights-hero {
    min-height: 540px;
    display: grid;
    align-items: center;
    padding: 100px 0;
    isolation: isolate;
}

.insights-hero.has-image::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    background-image:
        linear-gradient(90deg, rgba(2, 47, 50, .98), rgba(2, 47, 50, .90) 49%, rgba(2, 47, 50, .27)),
        var(--insights-hero-image);
    background-position: center;
    background-size: cover;
}

.insights-hero::after {
    content: "";
    position: absolute;
    bottom: -240px;
    left: -130px;
    z-index: -1;
    width: 420px;
    height: 420px;
    border: 1px solid rgba(228, 174, 71, .24);
    border-radius: 50%;
}

.insights-hero-ring {
    position: absolute;
    top: -130px;
    right: 5%;
    width: 310px;
    height: 310px;
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: 50%;
}

.insights-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(300px, .65fr);
    gap: clamp(50px, 8vw, 110px);
    align-items: end;
}

.insights-hero-copy h1,
.article-detail-header h1 {
    margin: 16px 0 23px;
    color: #fff;
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 400;
    letter-spacing: -.045em;
    line-height: 1;
}

.insights-hero-copy h1 {
    font-size: clamp(3rem, 5.6vw, 5.5rem);
}

.insights-hero-copy > p {
    max-width: 700px;
    margin: 0 0 30px;
    color: rgba(255, 255, 255, .80);
    font-size: 1.08rem;
    line-height: 1.82;
}

.insights-hero-note {
    padding: 34px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 18px;
    background: rgba(9, 74, 78, .72);
    backdrop-filter: blur(10px);
}

.insights-hero-note > span {
    color: #e4ae47;
    font-size: .74rem;
    font-weight: 900;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.insights-hero-note h2 {
    margin: 40px 0 14px;
    color: #fff;
    font-size: 1.55rem;
    line-height: 1.25;
}

.insights-hero-note p {
    margin: 0;
    color: rgba(255, 255, 255, .72);
    line-height: 1.75;
}

.featured-insight {
    padding: 100px 0;
    background: #fff;
}

.featured-insight-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
    gap: clamp(45px, 7vw, 90px);
    align-items: center;
}

.featured-insight-media {
    position: relative;
    display: block;
    min-height: 470px;
    overflow: hidden;
    border-radius: 18px;
    background:
        radial-gradient(circle at 23% 25%, rgba(228, 174, 71, .33), transparent 21%),
        linear-gradient(140deg, #c9ddda, #88aeab);
}

.featured-insight-media img {
    display: block;
    width: 100%;
    height: 470px;
    object-fit: cover;
    transition: transform .55s ease;
}

.featured-insight-media:hover img {
    transform: scale(1.035);
}

.featured-insight-placeholder {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: rgba(7, 56, 59, .72);
    font-family: Georgia, serif;
    font-size: 10rem;
}

.featured-insight-placeholder::before,
.featured-insight-placeholder::after {
    content: "";
    position: absolute;
    width: 330px;
    height: 330px;
    border: 1px solid rgba(7, 56, 59, .14);
    border-radius: 50%;
}

.featured-insight-placeholder::after {
    width: 230px;
    height: 230px;
}

.insight-badge {
    display: inline-flex;
    width: fit-content;
    padding: 7px 11px;
    border-radius: 999px;
    color: #8c5a06;
    background: #faedcf;
    font-size: .71rem;
    font-weight: 900;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.featured-insight-copy h2 {
    margin: 20px 0 18px;
    color: #07383b;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.4rem, 4.4vw, 4.25rem);
    font-weight: 400;
    letter-spacing: -.04em;
    line-height: 1.08;
}

.featured-insight-copy h2 a {
    color: inherit;
    text-decoration: none;
}

.featured-insight-copy > p {
    margin: 0;
    color: #627779;
    font-size: 1.05rem;
    line-height: 1.82;
}

.insight-meta,
.article-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 22px;
    margin: 24px 0;
    color: #708587;
    font-size: .84rem;
    font-weight: 750;
}

.insight-meta span + span::before,
.article-detail-meta span + span::before {
    content: "•";
    margin-right: 22px;
    color: #e4ae47;
}

.insight-read-link {
    color: #0a6065;
    font-weight: 900;
    text-decoration: none;
}

.insight-read-link span {
    display: inline-block;
    transition: transform .2s ease;
}

.insight-read-link:hover span {
    transform: translateX(4px);
}

.insight-library {
    padding: 95px 0 110px;
    background: #f5f8f7;
}

.insight-library-heading {
    display: grid;
    grid-template-columns: 1fr minmax(300px, 470px);
    gap: 40px;
    align-items: end;
}

.insight-library-heading h2,
.insight-editorial-note h2,
.related-insights-heading h2 {
    margin: 10px 0 0;
    color: #07383b;
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 400;
    letter-spacing: -.03em;
}

.insight-library-heading h2 {
    font-size: clamp(2.2rem, 4vw, 3.7rem);
}

.insight-search {
    display: flex;
    min-height: 58px;
    align-items: center;
    gap: 12px;
    padding: 0 20px;
    border: 1px solid #c9d9d8;
    border-radius: 10px;
    color: #376568;
    background: #fff;
    box-shadow: 0 12px 35px rgba(6, 54, 57, .07);
}

.insight-search:focus-within {
    border-color: #0c666b;
    box-shadow: 0 0 0 4px rgba(12, 102, 107, .10);
}

.insight-search input {
    width: 100%;
    border: 0;
    outline: 0;
    color: #153f42;
    background: transparent;
    font: inherit;
}

.insight-filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 34px 0 22px;
}

.insight-filter {
    min-height: 43px;
    padding: 9px 18px;
    border: 1px solid #c8d8d7;
    border-radius: 999px;
    color: #315d60;
    background: #fff;
    font: inherit;
    font-size: .9rem;
    font-weight: 850;
    cursor: pointer;
}

.insight-filter:hover,
.insight-filter.is-active {
    border-color: #0a5f64;
    color: #fff;
    background: #0a5f64;
}

.insight-results-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
    padding-top: 21px;
    border-top: 1px solid #d8e3e2;
    color: #627a7c;
}

.insight-results-bar p {
    margin: 0;
}

.insight-reset {
    padding: 0;
    border: 0;
    color: #0b6469;
    background: transparent;
    font: inherit;
    font-weight: 900;
    cursor: pointer;
}

.insight-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.insight-card {
    overflow: hidden;
    border: 1px solid #d5e2e0;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 8px 28px rgba(4, 56, 59, .05);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.insight-card:hover {
    border-color: rgba(228, 174, 71, .75);
    box-shadow: 0 18px 44px rgba(4, 56, 59, .11);
    transform: translateY(-6px);
}

.insight-card[hidden] {
    display: none !important;
}

.insight-card-media {
    position: relative;
    display: block;
    min-height: 215px;
    overflow: hidden;
    background:
        radial-gradient(circle at 76% 24%, rgba(228, 174, 71, .28), transparent 24%),
        linear-gradient(135deg, #dfeceb, #a8c7c4);
}

.insight-card-media img {
    display: block;
    width: 100%;
    height: 215px;
    object-fit: cover;
    transition: transform .5s ease;
}

.insight-card:hover .insight-card-media img {
    transform: scale(1.045);
}

.insight-card-placeholder {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: rgba(4, 56, 59, .72);
    font-family: Georgia, serif;
    font-size: 5.5rem;
}

.insight-card-placeholder::before {
    content: "";
    position: absolute;
    width: 145px;
    height: 145px;
    border: 1px solid rgba(4, 56, 59, .15);
    border-radius: 50%;
}

.insight-card-index {
    position: absolute;
    top: 16px;
    right: 16px;
    display: grid;
    width: 43px;
    height: 43px;
    place-items: center;
    border-radius: 50%;
    color: #052f32;
    background: #e4ae47;
    font-size: .82rem;
    font-weight: 900;
}

.insight-featured-label {
    position: absolute;
    bottom: 15px;
    left: 15px;
    padding: 7px 11px;
    border-radius: 999px;
    color: #062f32;
    background: #f0c366;
    font-size: .7rem;
    font-weight: 900;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.insight-card-body {
    display: flex;
    min-height: 350px;
    flex-direction: column;
    padding: 27px;
}

.insight-card-meta,
.related-insight-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 7px 15px;
    color: #7a8e90;
    font-size: .75rem;
    font-weight: 750;
    text-transform: uppercase;
}

.insight-card-body h3 {
    margin: 17px 0 12px;
    color: #07383b;
    font-size: 1.43rem;
    line-height: 1.28;
}

.insight-card-body h3 a,
.related-insight-card h3 a {
    color: inherit;
    text-decoration: none;
}

.insight-card-body > p {
    margin: 0 0 18px;
    color: #667b7d;
    line-height: 1.72;
}

.insight-card-author {
    margin-bottom: 22px;
    color: #456b6e;
    font-size: .82rem;
    font-weight: 800;
}

.insight-card-body .insight-read-link {
    margin-top: auto;
}

.insight-empty {
    padding: 65px 25px;
    border: 1px dashed #b6ccca;
    border-radius: 16px;
    text-align: center;
    background: #fff;
}

.insight-empty h3 {
    margin: 0 0 8px;
    color: #07383b;
}

.insight-empty p {
    margin: 0;
    color: #697f81;
}

.insight-editorial-note {
    padding: 90px 0;
    color: #fff;
    background: #07383b;
}

.insight-editorial-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(45px, 9vw, 120px);
    align-items: center;
}

.insight-editorial-note h2 {
    color: #fff;
    font-size: clamp(2.3rem, 4.5vw, 4.2rem);
    line-height: 1.05;
}

.insight-editorial-note p {
    margin: 0 0 25px;
    color: rgba(255, 255, 255, .76);
    line-height: 1.82;
}

/* Article detail */
.article-detail-header {
    padding: 75px 0 160px;
    text-align: center;
}

.article-detail-header-inner {
    max-width: 930px;
}

.article-breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 9px;
    margin-bottom: 55px;
    color: rgba(255, 255, 255, .56);
    font-size: .85rem;
}

.article-breadcrumbs a {
    color: rgba(255, 255, 255, .82);
    text-decoration: none;
}

.article-breadcrumbs a:hover {
    color: #e4ae47;
}

.article-detail-header h1 {
    font-size: clamp(3rem, 6.2vw, 6rem);
}

.article-detail-excerpt {
    max-width: 780px;
    margin: 0 auto;
    color: rgba(255, 255, 255, .78);
    font-size: 1.1rem;
    line-height: 1.82;
}

.article-detail-meta {
    justify-content: center;
    color: rgba(255, 255, 255, .65);
}

.article-feature-image-wrap {
    position: relative;
    z-index: 2;
    margin-top: -95px;
}

.article-feature-image {
    min-height: 520px;
    overflow: hidden;
    border: 8px solid #fff;
    border-radius: 20px;
    background: #d7e6e4;
    box-shadow: 0 24px 60px rgba(4, 56, 59, .16);
}

.article-feature-image img {
    display: block;
    width: 100%;
    height: 520px;
    object-fit: cover;
}

.article-feature-placeholder {
    position: relative;
    display: grid;
    min-height: 520px;
    place-items: center;
    overflow: hidden;
    background:
        radial-gradient(circle at 24% 24%, rgba(228, 174, 71, .34), transparent 21%),
        linear-gradient(140deg, #c8dcda, #86adaa);
}

.article-feature-placeholder::before,
.article-feature-placeholder::after {
    content: "";
    position: absolute;
    width: 390px;
    height: 390px;
    border: 1px solid rgba(7, 56, 59, .15);
    border-radius: 50%;
}

.article-feature-placeholder::after {
    width: 270px;
    height: 270px;
}

.article-feature-placeholder span {
    position: relative;
    z-index: 1;
    color: rgba(7, 56, 59, .72);
    font-family: Georgia, serif;
    font-size: 11rem;
}

.article-detail-body {
    padding: 95px 0 110px;
}

.article-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: clamp(55px, 8vw, 110px);
    align-items: start;
}

.article-content {
    color: #516b6e;
    font-size: 1.07rem;
    line-height: 1.92;
}

.article-content > p:first-child::first-letter {
    float: left;
    margin: 9px 10px 0 0;
    color: #0b6065;
    font-family: Georgia, serif;
    font-size: 4.2rem;
    line-height: .72;
}

.article-content h2 {
    margin: 55px 0 18px;
    color: #07383b;
    font-family: Georgia, serif;
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    font-weight: 400;
    letter-spacing: -.03em;
    line-height: 1.15;
}

.article-content h3 {
    margin: 38px 0 15px;
    color: #07383b;
    font-size: 1.45rem;
}

.article-content p {
    margin: 0 0 25px;
}

.article-content ul {
    display: grid;
    gap: 13px;
    padding: 0;
    margin: 25px 0 35px;
    list-style: none;
}

.article-content li {
    position: relative;
    padding: 13px 17px 13px 46px;
    border-radius: 9px;
    background: #f3f7f6;
}

.article-content li::before {
    content: "";
    position: absolute;
    top: 22px;
    left: 19px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #e4ae47;
    box-shadow: 0 0 0 5px rgba(228, 174, 71, .18);
}

.article-medical-notice {
    margin-top: 55px;
    padding: 26px 29px;
    border-left: 4px solid #e4ae47;
    border-radius: 0 10px 10px 0;
    background: #f8f4e9;
}

.article-medical-notice strong {
    color: #07383b;
}

.article-medical-notice p {
    margin: 7px 0 0;
    font-size: .96rem;
}

.article-sidebar {
    position: sticky;
    top: 120px;
    display: grid;
    gap: 20px;
}

.article-sidebar-card,
.article-reference-card {
    padding: 28px;
    border-radius: 14px;
}

.article-sidebar-card {
    border: 1px solid #d8e3e2;
    background: #f5f8f7;
}

.article-sidebar-card dl {
    margin: 18px 0 0;
}

.article-sidebar-card dl > div {
    padding: 14px 0;
    border-bottom: 1px solid #dce6e5;
}

.article-sidebar-card dl > div:last-child {
    border-bottom: 0;
}

.article-sidebar-card dt {
    margin-bottom: 4px;
    color: #789092;
    font-size: .73rem;
    font-weight: 900;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.article-sidebar-card dd {
    margin: 0;
    color: #153f42;
    font-weight: 800;
}

.article-reference-card {
    color: #fff;
    background: #07383b;
}

.article-reference-card h2 {
    margin: 0 0 10px;
    color: #fff;
    font-size: 1.5rem;
}

.article-reference-card p {
    margin: 0 0 18px;
    color: rgba(255, 255, 255, .72);
    line-height: 1.7;
}

.article-reference-card a {
    display: block;
    padding: 10px 0;
    border-top: 1px solid rgba(255, 255, 255, .13);
    color: #e4ae47;
    font-size: .88rem;
    font-weight: 800;
    text-decoration: none;
}

.related-insights {
    padding: 90px 0;
    background: #f5f8f7;
}

.related-insights-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 35px;
}

.related-insights-heading h2 {
    font-size: clamp(2.1rem, 4vw, 3.4rem);
}

.related-insights-heading > a {
    color: #0a6065;
    font-weight: 900;
    text-decoration: none;
}

.related-insight-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.related-insight-card {
    display: flex;
    min-height: 285px;
    flex-direction: column;
    padding: 28px;
    border: 1px solid #d7e2e1;
    border-radius: 14px;
    background: #fff;
}

.related-insight-card h3 {
    margin: 17px 0 11px;
    color: #07383b;
    font-size: 1.35rem;
}

.related-insight-card p {
    margin: 0 0 20px;
    color: #687d7f;
    line-height: 1.7;
}

.related-insight-card .insight-read-link {
    margin-top: auto;
}

.article-back-link {
    padding: 24px 0;
    border-top: 1px solid #dce6e5;
    background: #fff;
}

.article-back-link a {
    color: #0a6065;
    font-weight: 900;
    text-decoration: none;
}

.article-not-found {
    min-height: 60vh;
    display: grid;
    place-items: center;
    padding: 100px 0;
    text-align: center;
    background: #f5f8f7;
}

.article-not-found h1 {
    margin: 10px 0;
    color: #07383b;
    font-family: Georgia, serif;
    font-size: clamp(2.6rem, 6vw, 5rem);
    font-weight: 400;
}

.article-not-found p {
    margin: 0 0 25px;
    color: #657a7c;
}

@media (max-width: 980px) {
    .insights-hero-grid,
    .featured-insight-grid,
    .article-detail-layout {
        grid-template-columns: 1fr;
    }

    .insights-hero-note {
        max-width: 630px;
    }

    .insight-grid,
    .related-insight-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .article-sidebar {
        position: static;
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 700px) {
    .insights-hero {
        min-height: auto;
        padding: 75px 0;
    }

    .insights-hero.has-image::before {
        background-image:
            linear-gradient(rgba(2, 47, 50, .91), rgba(2, 47, 50, .96)),
            var(--insights-hero-image);
    }

    .insights-hero-copy h1 {
        font-size: clamp(2.65rem, 12vw, 4.1rem);
    }

    .insights-hero-grid {
        gap: 38px;
    }

    .insights-hero-note {
        padding: 26px;
    }

    .featured-insight,
    .insight-library,
    .article-detail-body,
    .related-insights {
        padding: 70px 0;
    }

    .featured-insight-media,
    .featured-insight-media img {
        min-height: 330px;
        height: 330px;
    }

    .insight-library-heading,
    .insight-editorial-grid,
    .article-sidebar,
    .related-insight-grid {
        grid-template-columns: 1fr;
    }

    .insight-library-heading {
        gap: 25px;
    }

    .insight-grid {
        grid-template-columns: 1fr;
    }

    .insight-card-body {
        min-height: auto;
    }

    .insight-editorial-note {
        padding: 70px 0;
    }

    .article-detail-header {
        padding: 55px 0 125px;
    }

    .article-detail-header h1 {
        font-size: clamp(2.6rem, 12vw, 4.25rem);
    }

    .article-breadcrumbs {
        margin-bottom: 38px;
    }

    .article-feature-image-wrap {
        margin-top: -70px;
    }

    .article-feature-image,
    .article-feature-image img,
    .article-feature-placeholder {
        min-height: 320px;
        height: 320px;
    }

    .article-feature-placeholder span {
        font-size: 7rem;
    }

    .related-insights-heading {
        align-items: start;
        flex-direction: column;
    }

    .insight-meta span + span::before,
    .article-detail-meta span + span::before {
        display: none;
    }
}

/* ========================================
   YOUNGDERMIS CUSTOM HEADER LOGO
======================================== */

.site-header .site-brand--custom-logo {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    width: 235px;
    max-width: 235px;
    text-decoration: none;
}

.site-header .site-brand--custom-logo img {
    display: block;
    width: 100% !important;
    height: auto !important;
    max-width: 100% !important;
    max-height: 68px;
    object-fit: contain;
}

/* Tablet */
@media (max-width: 1100px) {
    .site-header .site-brand--custom-logo {
        width: 205px;
        max-width: 205px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .site-header .site-brand--custom-logo {
        width: 180px;
        max-width: calc(100% - 70px);
    }

    .site-header .site-brand--custom-logo img {
        max-height: 54px;
    }
}

/* Small mobile */
@media (max-width: 390px) {
    .site-header .site-brand--custom-logo {
        width: 155px;
    }
}

/* =====================================================
   YOUNGDERMIS HEADER LOGO
===================================================== */

.site-header .site-brand--custom-logo {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    flex: 0 0 auto;
    width: 235px;
    max-width: 235px;
    text-decoration: none;
}

.site-header .site-brand--custom-logo img {
    display: block;
    width: 100% !important;
    height: auto !important;
    max-width: 100% !important;
    max-height: 68px;
    object-fit: contain;
    object-position: left center;
}

/* Medium desktop and tablet */

@media (max-width: 1100px) {

    .site-header .site-brand--custom-logo {
        width: 205px;
        max-width: 205px;
    }

    .site-header .site-brand--custom-logo img {
        max-height: 60px;
    }
}

/* Mobile devices */

@media (max-width: 767px) {

    .site-header .site-brand--custom-logo {
        width: 180px;
        max-width: calc(100% - 70px);
    }

    .site-header .site-brand--custom-logo img {
        max-height: 54px;
    }
}

/* Small mobile devices */

@media (max-width: 390px) {

    .site-header .site-brand--custom-logo {
        width: 155px;
    }

    .site-header .site-brand--custom-logo img {
        max-height: 48px;
    }
}

/* =====================================================
   YOUNGDERMIS CONTACT PAGE
   Add this section at the bottom of assets/css/style.css
===================================================== */

.contact-page-content {
    overflow: hidden;
    background: #ffffff;
    color: #143f43;
}

.contact-hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background:
        radial-gradient(circle at 78% 18%, rgba(229, 179, 74, 0.2), transparent 24rem),
        linear-gradient(118deg, #073a3f 0%, #0a4b50 62%, #0b5559 100%);
    color: #ffffff;
}

.contact-hero::before {
    position: absolute;
    inset: 0;
    z-index: -2;
    content: "";
    opacity: 0.13;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
    background-size: 72px 72px;
}

.contact-hero-shape {
    position: absolute;
    right: -13rem;
    bottom: -22rem;
    z-index: -1;
    width: 46rem;
    height: 46rem;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 50%;
}

.contact-hero-shape::before,
.contact-hero-shape::after {
    position: absolute;
    content: "";
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 50%;
}

.contact-hero-shape::before {
    inset: 5rem;
}

.contact-hero-shape::after {
    inset: 10rem;
}

.contact-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.7fr);
    gap: clamp(2.5rem, 7vw, 7rem);
    align-items: end;
    min-height: 540px;
    padding-top: clamp(5rem, 9vw, 8rem);
    padding-bottom: clamp(5rem, 9vw, 8rem);
}

.contact-eyebrow {
    display: block;
    margin-bottom: 1rem;
    color: #e8b84f;
    font-size: 0.75rem;
    font-weight: 800;
    line-height: 1.4;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.contact-hero-copy h1 {
    max-width: 850px;
    margin: 0;
    color: #ffffff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(3rem, 6vw, 5.7rem);
    font-weight: 400;
    line-height: 0.99;
    letter-spacing: -0.045em;
}

.contact-hero-copy p {
    max-width: 690px;
    margin: 2rem 0 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: clamp(1rem, 1.4vw, 1.16rem);
    line-height: 1.8;
}

.contact-hero-link {
    display: inline-flex;
    gap: 0.75rem;
    align-items: center;
    margin-top: 2rem;
    color: #efc565;
    font-size: 0.9rem;
    font-weight: 800;
    text-decoration: none;
}

.contact-hero-link:hover {
    color: #ffffff;
}

.contact-hero-note {
    position: relative;
    padding: 2.2rem;
    border: 1px solid rgba(255, 255, 255, 0.21);
    background: rgba(5, 48, 52, 0.66);
    backdrop-filter: blur(12px);
}

.contact-note-number {
    position: absolute;
    top: 1.2rem;
    right: 1.35rem;
    color: rgba(255, 255, 255, 0.42);
    font-size: 0.86rem;
    font-weight: 800;
}

.contact-note-label {
    display: block;
    padding-right: 2.6rem;
    color: #e8b84f;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.contact-hero-note h2 {
    margin: 1.35rem 0 0.85rem;
    color: #ffffff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.7rem, 2.6vw, 2.35rem);
    font-weight: 400;
    line-height: 1.18;
}

.contact-hero-note p {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.75;
}

.contact-main-section {
    padding: clamp(5rem, 9vw, 8.5rem) 0;
    background: #f3f8f7;
}

.contact-main-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(300px, 0.7fr);
    gap: clamp(2rem, 5vw, 5rem);
    align-items: start;
}

.contact-form-panel,
.contact-information {
    border: 1px solid #d8e5e3;
    background: #ffffff;
}

.contact-form-panel {
    padding: clamp(1.5rem, 4vw, 3.5rem);
    box-shadow: 0 24px 70px rgba(7, 57, 62, 0.08);
}

.contact-section-heading {
    margin-bottom: 2rem;
}

.contact-section-heading h2,
.contact-information-heading h2 {
    margin: 0;
    color: #0a4247;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.25rem, 4vw, 3.5rem);
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: -0.035em;
}

.contact-section-heading p {
    margin: 1rem 0 0;
    color: #657d7e;
    line-height: 1.75;
}

.contact-alert {
    display: grid;
    gap: 0.4rem;
    margin-bottom: 1.5rem;
    padding: 1rem 1.15rem;
    border-left: 4px solid;
    font-size: 0.94rem;
    line-height: 1.55;
}

.contact-alert strong,
.contact-alert span {
    display: block;
}

.contact-alert ul {
    margin: 0.35rem 0 0;
    padding-left: 1.25rem;
}

.contact-alert-success {
    border-color: #168368;
    background: #eaf8f3;
    color: #0c624f;
}

.contact-alert-error {
    border-color: #b84a4a;
    background: #fff0f0;
    color: #8f3030;
}

.contact-form {
    display: grid;
    gap: 1.25rem;
}

.contact-form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
}

.contact-field {
    display: grid;
    gap: 0.55rem;
}

.contact-field label {
    color: #174c50;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.035em;
}

.contact-field label span {
    color: #bb7b0e;
}

.contact-field input,
.contact-field textarea {
    width: 100%;
    min-width: 0;
    border: 1px solid #ccdcda;
    border-radius: 0;
    outline: none;
    background: #fafdFC;
    color: #153f43;
    font: inherit;
    transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.contact-field input {
    min-height: 54px;
    padding: 0 1rem;
}

.contact-field textarea {
    min-height: 180px;
    padding: 0.9rem 1rem;
    line-height: 1.65;
    resize: vertical;
}

.contact-field input:focus,
.contact-field textarea:focus {
    border-color: #15747a;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(21, 116, 122, 0.1);
}

.contact-consent {
    display: flex;
    gap: 0.8rem;
    align-items: flex-start;
    color: #607879;
    font-size: 0.84rem;
    line-height: 1.6;
    cursor: pointer;
}

.contact-consent input {
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
    margin-top: 0.18rem;
    accent-color: #0d666c;
}

.contact-submit {
    display: inline-flex;
    justify-content: center;
    gap: 0.75rem;
    align-items: center;
    width: max-content;
    min-height: 54px;
    padding: 0 1.7rem;
    border: 1px solid #0c646a;
    background: #0c646a;
    color: #ffffff;
    font: inherit;
    font-size: 0.86rem;
    font-weight: 800;
    cursor: pointer;
    transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.contact-submit:hover {
    transform: translateY(-2px);
    border-color: #e1ad3f;
    background: #e1ad3f;
    color: #073b40;
}

.contact-honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.contact-information {
    position: sticky;
    top: 120px;
    padding: clamp(1.5rem, 3vw, 2.5rem);
    background: #073b40;
    color: #ffffff;
}

.contact-information-heading {
    margin-bottom: 2rem;
}

.contact-information-heading h2 {
    color: #ffffff;
    font-size: clamp(1.9rem, 3vw, 2.7rem);
}

.contact-information-list {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.contact-info-item {
    display: grid;
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 1rem;
    padding: 1.45rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.contact-info-number {
    color: #e8b84f;
    font-size: 0.74rem;
    font-weight: 800;
}

.contact-info-label {
    display: block;
    margin-bottom: 0.45rem;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.contact-info-item address,
.contact-info-item p {
    margin: 0;
    color: rgba(255, 255, 255, 0.86);
    font-style: normal;
    line-height: 1.65;
}

.contact-info-item a {
    display: inline-block;
    margin-top: 0.45rem;
    color: #efc665;
    font-size: 0.84rem;
    font-weight: 700;
    overflow-wrap: anywhere;
    text-decoration: none;
}

.contact-info-item a:hover {
    color: #ffffff;
}

.contact-info-item .contact-primary-value {
    margin-top: 0;
    color: #ffffff;
    font-size: 1.05rem;
}

.contact-safety-note {
    margin-top: 1.75rem;
    padding: 1.15rem;
    border: 1px solid rgba(232, 184, 79, 0.34);
    background: rgba(232, 184, 79, 0.08);
}

.contact-safety-note strong {
    color: #efc665;
    font-size: 0.77rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.contact-safety-note p {
    margin: 0.65rem 0 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    line-height: 1.65;
}

@media (max-width: 980px) {
    .contact-hero-grid,
    .contact-main-grid {
        grid-template-columns: 1fr;
    }

    .contact-hero-grid {
        align-items: start;
        min-height: auto;
    }

    .contact-hero-note {
        max-width: 600px;
    }

    .contact-information {
        position: static;
    }
}

@media (max-width: 640px) {
    .contact-hero-grid {
        gap: 2.5rem;
        padding-top: 4.5rem;
        padding-bottom: 4.5rem;
    }

    .contact-hero-copy h1 {
        font-size: clamp(2.65rem, 13vw, 4rem);
    }

    .contact-hero-note,
    .contact-form-panel,
    .contact-information {
        padding: 1.35rem;
    }

    .contact-main-section {
        padding: 4rem 0;
    }

    .contact-form-row {
        grid-template-columns: 1fr;
    }

    .contact-submit {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .contact-submit,
    .contact-field input,
    .contact-field textarea {
        transition: none;
    }
}
/* =====================================================
   YOUNGDERMIS MOBILE MENU FIX
   Paste this at the very bottom of assets/css/style.css
===================================================== */

.site-header {
    position: relative;
    z-index: 1200;
    overflow: visible;
}

.site-header .header-inner {
    position: relative;
    overflow: visible;
}

.site-header .site-brand {
    position: relative;
    z-index: 1201;
}

.site-header .mobile-menu-toggle {
    position: relative;
    z-index: 1205;
    flex: 0 0 auto;
    pointer-events: auto !important;
    touch-action: manipulation;
    cursor: pointer;
}

.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 1198;
    display: block;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    background: rgba(2, 28, 31, 0.68);
    transition: opacity 220ms ease, visibility 220ms ease;
}

.mobile-menu-overlay.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

body.mobile-menu-open {
    overflow: hidden;
}

@media (min-width: 981px) {
    .site-header .mobile-menu-toggle {
        display: none !important;
    }

    .site-header .main-navigation {
        visibility: visible !important;
        opacity: 1 !important;
        pointer-events: auto !important;
        transform: none !important;
    }

    .mobile-menu-overlay {
        display: none !important;
    }
}

@media (max-width: 980px) {
    .site-header .header-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .site-header .mobile-menu-toggle {
        display: inline-flex !important;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
        width: 46px;
        height: 46px;
        margin-left: auto;
        padding: 0 11px;
        border: 1px solid rgba(10, 78, 84, 0.2);
        border-radius: 8px;
        background: #ffffff;
        color: #0a4e54;
        box-shadow: none;
    }

    .site-header .mobile-menu-toggle span {
        display: block;
        width: 100%;
        height: 2px;
        margin: 0;
        border: 0;
        border-radius: 10px;
        background: currentColor;
        transform-origin: center;
        transition: transform 200ms ease, opacity 200ms ease;
    }

    .site-header .mobile-menu-toggle.is-open span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .site-header .mobile-menu-toggle.is-open span:nth-child(2) {
        opacity: 0;
    }

    .site-header .mobile-menu-toggle.is-open span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .site-header .main-navigation {
        position: fixed !important;
        top: 0;
        right: 0;
        bottom: 0;
        z-index: 1202;
        display: flex !important;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        width: min(86vw, 370px);
        max-width: 100%;
        height: 100dvh;
        margin: 0;
        padding: 105px 24px 32px;
        overflow-y: auto;
        visibility: hidden;
        opacity: 0;
        pointer-events: none;
        background: #ffffff;
        box-shadow: -18px 0 55px rgba(4, 43, 47, 0.2);
        transform: translateX(104%);
        transition: transform 240ms ease, opacity 200ms ease, visibility 240ms ease;
    }

    .site-header .main-navigation.is-open {
        visibility: visible;
        opacity: 1;
        pointer-events: auto;
        transform: translateX(0);
    }

    .site-header .main-navigation > a {
        display: flex;
        align-items: center;
        min-height: 54px;
        margin: 0;
        padding: 0 4px;
        border-bottom: 1px solid #dfe9e8;
        color: #173f43;
        font-size: 1rem;
        font-weight: 700;
        text-decoration: none;
    }

    .site-header .main-navigation > a.active,
    .site-header .main-navigation > a:hover {
        color: #0a7379;
    }

    .site-header .main-navigation .navigation-cta {
        justify-content: center;
        min-height: 52px;
        margin-top: 22px;
        padding: 0 20px;
        border: 1px solid #0b676d;
        border-radius: 6px;
        background: #0b676d;
        color: #ffffff;
    }

    .site-header .main-navigation .navigation-cta:hover {
        border-color: #dca83f;
        background: #dca83f;
        color: #073b40;
    }
}

@media (max-width: 480px) {
    .site-header .main-navigation {
        width: min(90vw, 350px);
        padding-top: 96px;
    }

    .site-header .mobile-menu-toggle {
        width: 44px;
        height: 44px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .site-header .main-navigation,
    .mobile-menu-overlay,
    .site-header .mobile-menu-toggle span {
        transition: none;
    }
}